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 global callback parameters to send additional information to your servers. Once configured, the SDK appends these parameters to your callback URL. You can use this information to analyze user behavior in your BI system.

Add global callback parameters

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

local adjust = require "plugin.adjust"
adjust.addGlobalCallbackParameter("foo", "bar")

Remove global callback parameters

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

local adjust = require "plugin.adjust"
adjust.removeGlobalCallbackParameter("foo")

Remove all global callback parameters

You can remove all global callback parameters at once by calling the removeGlobalCallbackParameters method.

local adjust = require "plugin.adjust"
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. Adjust’s servers forward these parameters to partners once you’ve set them up and enabled them.

Add global partner parameters

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

local adjust = require "plugin.adjust"
adjust.addGlobalPartnerParameter("foo", "bar")

Remove global partner parameters

You can remove specific global partner parameters if they’re no longer required. Pass the key of the parameter you want to remove to the removeGlobalPartnerParameter method.

local adjust = require "plugin.adjust"
adjust.removeGlobalPartnerParameter("foo")

Remove all global partner parameters

You can remove all global partner parameters at once by calling the removeGlobalPartnerParameters method.

local adjust = require "plugin.adjust"
adjust.removeGlobalPartnerParameters()