GET
/
v1
/
partnerships
curl --request GET \
  --url https://api.getreditus.com/api/v1/partnerships \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>",
      "attributes": {
        "state": "<string>",
        "created_by": "<string>",
        "state_set_at": 123,
        "created_at": 123,
        "updated_at": 123,
        "referral_link": "<string>"
      },
      "relationships": {
        "partner": {
          "data": {
            "id": "<string>",
            "type": "<string>"
          }
        }
      }
    }
  ],
  "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
created_at_lt
string
created_at_gt
string
page
integer
per_page
integer
Required range: x <= 50

Response

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