adjust-icon

Configure callback parameters

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 global 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 global callback parameters

Method signature
addGlobalCallbackParameter(key: string, value: string): void

Add callback parameters to your event by calling the addGlobalCallbackParameter method with string key-value arguments. You can add multiple parameters by calling this method multiple times.

Adjust.addGlobalCallbackParameter("key", "value");

Remove global callback parameters

Method signature
removeGlobalCallbackParameter(key: string): void

You can remove specific global callback parameters if they’re no longer required. To do this, pass the parameter key to the removeGlobalCallbackParameter method.

Adjust.removeGlobalCallbackParameter("key");

Reset global callback parameters

Method signature
removeGlobalPartnerParameter(): void

You can remove all global parameters if they’re no longer required. To do this, call the removeGlobalCallbackParameters method.

Adjust.removeGlobalCallbackParameters();

Global partner parameters

You can send extra information to your network partners by adding 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

Method signature
addGlobalPartnerParameter(key: string, value: string): void

Send partner parameters with your session by calling the addGlobalPartnerParameter method with string key-value arguments. You can add multiple parameters by calling this method multiple times.

Adjust.addGlobalCallbackParameter("key", "value");

Remove global partner parameters

Method signature
removeGlobalPartnerParameter(key: string): void

You can remove specific global partner parameters if they’re no longer required. To do this, pass the parameter key to the removeGlobalPartnerParameter method.

Adjust.removeGlobalPartnerParameter("key");

Reset global partner parameters

Method signature
removeGlobalPartnerParameters(): void

You can remove all global partner parameters if they’re no longer required. To do this, call the resetGlobalPartnerParameters method.

Adjust.removeGlobalPartnerParameters();