GET
/
v1
/
advocates
/
{id}
Get Advocate
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
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200 - application/json

Advocate found

The response is of type object.