Tracker (Stream)

Create Tracker ๐Ÿ“ก

Create a new tracker for an application as a user

post/api/v1/tracker

Request body

namestring nullable
whitePageUrlstring nullable
cloakingType'MODERATION' | 'ACTIVE' | 'INACTIVE'
pixelsIdstring[] nullable
commentstring nullable
domainIdstring uuid nullable
geoListstring[] nullable

Geo cloaking

Example request

{
  "applications": [
    {
      "applicationId": "123e4567-e89b-12d3-a456-426614174000",
      "deviceType": "ANDROID",
      "weight": 100
    },
    {
      "applicationId": "123e4567-e89b-12d3-a456-426614174000",
      "deviceType": "IOS",
      "weight": 25
    }
  ],
  "cloakingType": "MODERATION",
  "comment": "This is an example comment.",
  "domainId": "123e4567-e89b-12d3-a456-426614174000",
  "geoList": [
    "US",
    "GB"
  ],
  "name": "Example Tracker",
  "offers": [
    {
      "offerId": "123e4567-e89b-12d3-a456-426614174000",
      "weight": 60
    },
    {
      "offerId": "223e4567-e89b-12d3-a456-426614174000",
      "weight": 40
    }
  ],
  "pixelsId": [
    "123e4567-e89b-12d3-a456-426614174000"
  ],
  "postLandings": [
    {
      "landingId": "323e4567-e89b-12d3-a456-426614174000",
      "weight": 33
    },
    {
      "landingId": "423e4567-e89b-12d3-a456-426614174000",
      "weight": 33
    },
    {
      "landingId": "523e4567-e89b-12d3-a456-426614174000",
      "weight": 34
    }
  ],
  "preLandings": [
    {
      "landingId": "123e4567-e89b-12d3-a456-426614174000",
      "weight": 50
    },
    {
      "landingId": "223e4567-e89b-12d3-a456-426614174000",
      "weight": 50
    }
  ],
  "pwas": [
    {
      "deviceType": "IOS",
      "pwaId": "123e4567-e89b-12d3-a456-426614174000",
      "weight": 50
    },
    {
      "deviceType": "IOS",
      "pwaId": "123e4567-e89b-12d3-a456-426614174000",
      "weight": 25
    }
  ],
  "whitePageUrl": "https://gaievskyi.com"
}

Response

Successful Response

idstring uuid required

ID of the created tracker

linkstring required

Example response

{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "link": "https://app.appsflyer.com/com.docs.platformergame2?pid=facebook&c=tracker_id"
}

Changes