GET
/
subscriptions
/
{id}
/
changes
curl --request GET \
  --url https://api.smokeball.com/subscriptions/{id}/changes \
  --header 'Authorization: <api-key>' \
  --header 'x-api-key: <api-key>'
[
  {
    "type": "<string>",
    "accountId": "<string>",
    "subscriptionId": "<string>",
    "tierId": "<string>",
    "addOnIds": [
      "<string>"
    ],
    "promotionId": "<string>",
    "paymentMethodId": "<string>",
    "interval": "<string>",
    "quantity": 123,
    "updated": "2023-11-07T05:31:56Z"
  }
]

Authorizations

x-api-key
string
header
required
Authorization
string
header
required

Path Parameters

id
string
required

Query Parameters

Offset
integer
Required range: 0 <= x <= 2147483647
Limit
integer
Required range: 1 <= x <= 500

Response

200
application/json

Successfully retrieved the subscription changes

The response is of type object[].