---
title: "Create Tracker 📡"
method: POST
path: "/api/v1/tracker"
tags: ["Tracker (Stream)"]
---

# Create Tracker 📡

`POST /api/v1/tracker`

Create a new tracker for an application as a user

## Request body

- TrackerCreateDTO
  - `pwas` WeightedPWADTO[], nullable
    - `pwaId` string, uuid, required
    - `deviceType` 'IOS' | 'ANDROID' | 'PWA' | 'APK', required
    - `weight` integer, required — Probability weight for this pwa
  - `applications` WeightedApplicationDTO[], nullable
    - `applicationId` string, uuid, required
    - `deviceType` 'IOS' | 'ANDROID' | 'PWA' | 'APK', required
    - `weight` integer, required — Probability weight for this application
  - `name` string, nullable
  - `offers` WeightedOfferDTO[], nullable
    - `offerId` string, uuid, required — ID of the offer
    - `weight` integer, required — Probability weight for this offer
  - `whitePageUrl` string, nullable
  - `cloakingType` 'MODERATION' | 'ACTIVE' | 'INACTIVE'
  - `pixelsId` string[], nullable
  - `comment` string, nullable
  - `preLandings` WeightedLandingDTO[], nullable
    - `landingId` string, uuid, required — ID of the landing
    - `weight` integer, required — Probability weight for this landing
  - `postLandings` WeightedLandingDTO[], nullable
    - `landingId` string, uuid, required — ID of the landing
    - `weight` integer, required — Probability weight for this landing
  - `domainId` string, uuid, nullable
  - `geoList` string[], nullable — Geo cloaking

## Response `201`

Successful Response

- TrackerCreateResponse
  - `id` string, uuid, required — ID of the created tracker
  - `link` string, required

## Other responses

- `401` — Authentication required.
- `403` — Access denied.
- `409` — The resource already exists or conflicts with an existing one.
- `422` — Validation Error

---

[API](https://skmtc.dev/pwapps/apis/curie-api.md) · [All operations](https://skmtc.dev/pwapps/apis/curie-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/pwapps/curie-api/revisions/b0af9064dfef/schema)
