GET
/
v1
/
payments
/
{id}
curl --request GET \
  --url https://api.getreditus.com/api/v1/payments/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "type": "<string>",
    "attributes": {
      "referral_email": "<string>",
      "referral_id": "<string>",
      "amount": 123,
      "currency": "<string>",
      "idempotency_key": "<string>",
      "subscription_id": "<string>",
      "interval": "<string>",
      "interval_count": 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

Response

200 - application/json
Successful response
data
object