Retrieve details of a specific advocate by ID
cURL
curl --request GET \ --url https://api.getreditus.com/api/v1/advocates/{id} \ --header 'Authorization: Bearer <token>'
{ "data": { "id": "<string>", "type": "<string>", "attributes": { "id": "<string>", "uid": "<string>", "email": "<string>", "first_name": "<string>", "last_name": "<string>", "slug": "<string>", "referral_link": "<string>", "company_id": "<string>", "company": "<string>", "created_at": 123, "leads_count": 123, "paid_leads_count": 123, "total_sold": 123 } } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Advocate found
The response is of type object.
object