v1

latestOpenAPI 3.0.3MIT2026-07-26104113247.1 KB
Create a Deletion

Create a Deletion

Creates a task that specifies a list of users in a project to delete

post/data-deletions/v3.0

Query parameters

tokenstring

Your project token

Request body

distinct_idsstring[]
compliance_typestring

Select CCPA or GDPR. Default is GDPR.

Example request

{
  "distinct_ids": [
    "distinct_id_1",
    "distinct_id_2",
    "distinct_id_3"
  ]
}

Response

Success

statusstring required

The status of the response

Example response

{
  "status": "ok",
  "results": {
    "task_id": "job-tracking-id"
  }
}