GET
/
v1
/
partners
/
{id}
curl --request GET \
  --url https://api.getreditus.com/api/v1/partners/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "type": "<string>",
    "attributes": {
      "name": "<string>",
      "paypal_email": "<string>",
      "created_at": 123,
      "updated_at": 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

Partner id

Response

200 - application/json

Successful response

The response is of type object.