customers

Customer Subscriptions

get/v2/customers/{id}/subscriptions

Path parameters

idstring required
Example:cust_yWYfCSzsUUhr9KwMv7vuLZHX

Query parameters

startinteger
limitinteger

Response

Successful Response

Example response

{
  "range": {
    "start": 42,
    "end": 52,
    "limit": 10,
    "count": 1337,
    "has_more": true
  },
  "subscriptions": [
    {
      "id": "sub_yWYfCSzsUUhr9KwMv7vuLZHX",
      "customer": "cust_yWYfCSzsUUhr9KwMv7vuLZHX",
      "payment_intent": "pi_yWYfCSzsUUhr9KwMv7vuLZHX",
      "card": "card_yWYfCSzsUUhr9KwMv7vuLZHX",
      "sepa": "sepa_yWYfCSzsUUhr9KwMv7vuLZHX"
    }
  ]
}

Changes