The tracking API allows you to track conversions for any affiliate.
cURL
curl --request POST \ --url https://api.getreditus.com/api/v1/tracking/conversion \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "email": "<string>", "gr_id": "<string>", "pk": "<string>", "uid": "<string>" }'
{ "data": { "id": "<string>", "type": "<string>", "attributes": { "email": "<string>", "state": "<string>", "state_set_at": 123, "created_at": 123, "updated_at": 123 } } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful conversion
The response is of type object.
object