Unblocklist tracker

Unblocklist a tracker to re-enable engagement measurement, attribution and callbacks to it and any related subtrackers.

Before you begin

To use this endpoint, you need an Adjust API token. Follow the instructions in the authentication guide to get your token.

Endpoint

https://api.adjust.com/dashboard/api/trackers/{tracker}/unblacklist
Important:
"Blacklist" and "whitelist" have been renamed to "blocklist" and "allowlist". Currently this change applies to our UI and documentation. While we work towards updating our codebase, you'll still see the term "unblacklist" in our API endpoints.

POST request

Unblocklist the specified tracker.

Parameters

ParameterDefinition
{tracker}*Alphanumeric Adjust tracker token

Response

{
  "label": "string",
   "token": "string",
   "name": "string",
   "url": "string",
   "path": "string",
   "has_subtrackers": true,
   "archived": true,
   "visible": true,
   "attribution_partner": true,
   "creative_token": "string",
   "adgroup_token": "string",
   "campaign_token": "string",
   "network_token": "string",
   "click_url": "string",
   "impression_url": "string",
   "allow_partner_linking": true,
   "settings": {
       "partner_id": "string",
       "partner_display_name": "string",
       "tracking_parameters": "string",
       "cost_data_parameters": "string",
       "cost_data": true,
       "partner_cost_data_parameters": "string",
       "campaign_structure": "string",
       "additional_parameters": "string",
       "attribution_settings": "string",
       "blacklisted": true
  },
   "urls": {
       "descendants": "string",
       "ancestors": "string",
       "update": "string",
       "show": "string",
       "archive": "string",
       "unarchive": "string"
   }
}

Example

cURL
curl --location --request POST "https://api.adjust.com/dashboard/api/trackers/abc123/unblacklist" \
--header "Authorization: Token token={api_token}"
{
  "label": "Twitter installs",
  "token": "abc123",
  "name": "Twitter installs",
  "url": "https://app.adjust.com/abc123",
  "path": "",
  "has_subtrackers": true,
  "archived": false,
  "visible": true,
  "attribution_partner": false,
  "creative_token": null,
  "adgroup_token": null,
  "campaign_token": null,
  "network_token": "abc123",
  "click_url": "https://app.adjust.com/abc123",
  "impression_url": "https://view.adjust.com/impression/abc123",
  "allow_partner_linking": true,
  "settings": {
    "partner_id": null,
    "partner_display_name": null,
    "tracking_parameters": null,
    "cost_data_parameters": null,
    "cost_data": false,
    "partner_cost_data_parameters": null,
    "campaign_structure": null,
    "additional_parameters": null,
    "attribution_settings": null,
    "blacklisted": false
  },
  "urls": {
    "descendants": "/api/trackers/abc123/descendants.json",
    "ancestors": "/api/trackers/abc123/ancestors.json",
    "update": "/api/trackers/abc123.json",
    "show": "/api/trackers/abc123.json",
    "archive": "/api/trackers/abc123/archive.json",
    "unarchive": "/api/trackers/abc123/unarchive.json"
  }
}