GET
/
v1
/
referrals
curl --request GET \
  --url https://api.getreditus.com/api/v1/referrals \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>",
      "attributes": {
        "email": "<string>",
        "state": "<string>",
        "state_set_at": 123,
        "created_at": 123,
        "updated_at": 123
      }
    }
  ],
  "meta": {
    "pagination": {
      "page": 123,
      "per_page": 123,
      "has_more": true
    }
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

state_eq
string
email_eq
string
created_at_lt
string
created_at_gt
string
state_set_at_lt
string
state_set_at_gt
string
page
integer
per_page
integer
Required range: x <= 50

Response

200 - application/json
Successful response
data
object[]
meta
object