You can send additional information from the SDK with each session and event by registering global callback and partner parameters.
Global callback parameters
If you register a callback URL in the Adjust dashboard, Adjust sends a GET request to your callback URL when the SDK records a session or event.
You can configure global callback parameters to your servers. Once you configure parameters, 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 callback parameters
Add callback parameters to your sessions and events by calling the addGlobalCallbackParameters
method with an array of string
key-value pair objects. You can add as many objects to this array as you require.
For the above example, the callback URL looks like this:
Remove callback parameters
You can remove global callback parameters if they’re no longer required. To do this, pass the parameter key to the removeGlobalCallbackParameter
method.
Clear all callback parameters
You can remove all global callback parameters if they’re no longer required. To do this, call the clearGlobalCallbackParameters
method.
Global partner parameters
You can send extra information to your network partners by adding partner parameters to each session and event the Adjust SDK records.
Adjust sends partner parameters to external partners you 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 partner parameters
Add partner parameters to your sessions and events by calling the addGlobalPartnerParameters
method with an array of string
key-value pair objects. You can add as many objects to this array as you require.
Remove partner parameters
You can remove global partner parameters if they’re no longer required. To do this, pass the parameter key to the removeGlobalPartnerParameter
method.
Clear all partner parameters
You can remove all global partner parameters if they’re no longer required. To do this, call the clearGlobalPartnerParameters
method.