If you register a callback URL in the Adjust dashboard, Adjust sends a GET request to your callback URL when the SDK measures a session.
Global callback parameters
You can configure callback parameters to your servers. Once you configure parameters on an event, the SDK appends them to your callback URL. You can use this information to analyze your users’ in-app behavior with your BI system.
Add global callback parameters
Add global callback parameters by calling the [Adjust addGlobalCallbackParameter]
method with the following arguments:
param
(NSString
): The parameter valueforKey
(NSString
): The parameter key
You can add multiple parameters by calling this method multiple times.
Remove global callback parameter by key
You can remove specific global callback parameters if they’re no longer required. To do this, pass the parameter key
to the [Adjust removeGlobalCallbackParameterForKey]
method.
Remove all global callback parameters
You can remove all global parameters if they’re no longer required. To do this, call the [Adjust removeGlobalCallbackParameters]
method.
Global partner parameters
You can send extra information to your network partners by adding global partner parameters.
Adjust sends partner parameters to external partners you’ve set up. This information is useful for more granular analysis and retargeting purposes. Adjust’s servers forward these parameters once you’ve set them up and enabled them for a partner.
Add global partner parameters
Send global partner parameters by calling the [Adjust addGlobalPartnerParameter]
method with the following arguments:
param
(NSString
): The parameter valueforKey
(NSString
): The parameter key
You can add multiple parameters by calling this method multiple times.
Remove global partner parameter by key
You can remove specific global partner parameters if they’re no longer required. To do this, pass the parameter key to the [Adjust removeGlobalPartnerParameterForKey]
method.
Remove all global partner parameters
You can remove all global partner parameters if they’re no longer required. To do this, call the [Adjust removeGlobalPartnerParameters]
method.