GET
/
v1
/
partnerships
/
{id}
curl --request GET \
  --url https://api.getreditus.com/api/v1/partnerships/{id} \
  --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>"
        }
      }
    }
  }
}

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
Successful response
data
object