Skip to main content
GET
/
customers
/
{uuid}
/
subscriptions
List customer subscriptions
curl --request GET \
  --url https://api.truust.io/2.0/customers/{uuid}/subscriptions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "self": "<string>",
      "reference_id": "<string>",
      "name": "<string>",
      "amount": 123,
      "currency": "EUR",
      "type": "<string>",
      "status": "CREATED",
      "metadata": {},
      "published_at": "2023-11-07T05:31:56Z",
      "cancelled_at": "2023-11-07T05:31:56Z",
      "connections": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Use your account's Secret Key as the Bearer token.

Path Parameters

uuid
string
required

Customer UUID.

Response

200 - application/json

List of subscriptions

data
object[]