Skip to main content
POST
/
privacy
/
{partner}
cURL
curl --request POST \
  --url https://api.01advertising.com/privacy/{partner} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reference_id": "<string>",
  "postback_url": "<string>",
  "first_name": "<string>",
  "middle_name": "<string>",
  "last_name": "<string>",
  "emails": [
    "[email protected]"
  ],
  "phone_numbers": [
    "<string>"
  ],
  "addresses": [
    "<string>"
  ]
}
'
{
  "status": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

partner
string
required

The partner identifier for which the privacy request is being submitted

Body

application/json
reference_id
string
required

A unique identifier for the privacy request generated by the partner system

postback_url
string
required

The URL to which the response will be sent once the request is processed

first_name
string
required
middle_name
string
required
last_name
string
required
emails
string<email>[]
required
phone_numbers
string[]
required
addresses
string[]
required

Response

A successful privacy request submission

status
string
required