The deferred deep link object

Success Attributes


If no errors are found or warnings are issued when traffic is deferred to their respective app store, the following attributes can appear.

landingPage string

Url of the web page a consumer was being redirected to before they were deferred to the app store. Will only appear if impact.com can match the click event to the app install event.


clickId string

Unique identifier that was generated by impact.com when the consumer clicked on the tracking link. Will only appear if impact.com can match the click event to the app install event.


clickIpAddress string

IP Address captured prior to the consumer being redirected to install the app. Will only appear if impact.com can match the click event to the app install event.


connectionIpAddress string

IP Address captured when a connection to the deferred deep link endpoint is made. Will always return, even if no match could be found.

Error and Warning Attributes


If any errors are found or warnings are issued when traffic is deferred to their respective app store, the following attributes can appear.

errors array

An array of errors (listed as objects) found in the request.

View child attributes

field string

Which call parameter the error is found in.


level string

What kind of issue is found in the field parameter.


message string

More information about the error found in the field parameter.


warnings array

An array of warnings (listed as objects) that can become errors in the request.

View child attributes

field string

Which call parameter the warning is found in.


level string

What kind of issue is found in the field parameter.


message string

More information about the warning found in the field parameter.

{
  "landingPage": "https://lp.co/path?cl=123",
  "clickId": "VMAS3wUS2xyMRNbVlp3DGxCjUknSRm32PwZbQM0",
  "clickIpAddress":"70.185.123.456",
  "connectionIpAddress":"70.185.123.456"
}
{
  "errors": [
    {
      "field": "CampaignId",
      "level": "ERROR",
      "message": "Invalid campaign ID (1000)"
      }
  ],
  "warnings": [
    {
      "field": "IpAddress",
      "level": "WARNING",
      "message": "Not a public ip address (1234:ab56:78cd:9e01::2f3g)"
      }
   ]   
}