adjust-icon

Campaign endpoint

Use the Campaign endpoint to create links for your application.

Endpoint
POST https://settings.adjust.com/api/campaign

Use this endpoint to create new links for your app. If you are working with partners that require setup, you need to include this information.

Parameters

Response parameters

Response format
{
"click_url": "String",
"impression_url": "String"
}

Example

cURL
$ curl \
--header "AdjustAuthorization: Token <adjust api token>" \
--header "Content-Type: application/json" \
--data '{"store_id": "test.bundle.app", "platform": "ios", "channel": "unityads"}' \
-X POST https://settings.adjust.com/api/campaign
Success response
{
"click_url": "https://app.adjust.com/1lwd85",
"impression_url": "https://view.adjust.com/impression/1lwd85"
}