POST
/
v1
/
advocates
curl --request POST \
  --url https://api.getreditus.com/api/v1/advocates \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "uid": "<string>",
  "email": "<string>",
  "first_name": 123,
  "last_name": 123,
  "company": 123,
  "company_id": 123
}'
{
  "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
    }
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
uid
string
required

The internal ID of the user in your system

email
string

The email of the user

first_name
integer

User first name

last_name
integer

User last name

company
integer

User's company name

company_id
integer

User's company ID. This is to group users from the same company

Response

202
application/json
Accepted
data
object