POST
/
v2
/
tracking
/
conversion
curl --request POST \
  --url https://api.getreditus.com/api/v2/tracking/conversion \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "affiliate_slug": "<string>",
  "email": "<string>",
  "uid": "<string>",
  "gr_id": "<string>"
}'
{
  "data": {
    "id": "<string>",
    "type": "<string>",
    "attributes": {
      "email": "<string>",
      "uid": "<string>",
      "state": "<string>",
      "state_set_at": 123,
      "created_at": 123,
      "updated_at": 123
    }
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

201
application/json

Successful conversion

The response is of type object.