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 global callback parameters to send to your servers. The Adjust SDK appends all global callback parameters 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 callback parameters globally by calling the Adjust2dx::addGlobalCallbackParameter
method with std::string
key-value arguments. You can add multiple parameters by calling this method multiple times.
Remove global callback parameters
You can remove specific global callback parameters if they're no longer required. To do this, pass the parameter key
to the Adjust2dx::removeGlobalCallbackParameter
method.
Reset global callback parameters
You can remove all global parameters if they're no longer required. To do this, call the Adjust2dx::removeGlobalCallbackParameters
method.
Global partner parameters
You can send extra information to your network partners by adding global partner parameters.
Adjust sends global 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 Adjust2dx::addGlobalPartnerParameter
method with std::string
key-value arguments. You can add multiple parameters by calling this method multiple times.
Remove global partner parameters
You can remove specific global partner parameters if they're no longer required. To do this, pass the parameter key
to the Adjust2dx::removeGlobalPartnerParameter
method.
Reset global partner parameters
You can remove all global partner parameters if they're no longer required. To do this, call the Adjust2dx::removeGlobalPartnerParameters
method.