List subscription addons
Pre-release Endpoint This endpoint is currently in beta and is subject to change.
List the add-ons of a subscription.
Path parameters
ULID (Universally Unique Lexicographically Sortable Identifier).
Query parameters
Determines which page of the collection to retrieve.
The asc suffix is optional as the default sort order is ascending. The desc suffix is used to specify a descending order. Multiple sort attributes may be provided via a comma separated list. JSONPath notation may be used to specify a sub-attribute (eg: 'foo.bar desc').
Sort subscription addons returned in the response. Supported sort attributes are:
- id
- created_at (default)
- updated_at
The asc suffix is optional as the default sort order is ascending. The desc suffix is used to specify a descending order.
Response
Page paginated response.
Example response
{
"data": [
{
"id": "01G65Z755AFWAKHE12NY0CQ9FH",
"labels": {
"env": "test"
},
"created_at": "2023-01-01T01:01:01.001Z",
"updated_at": "2023-01-01T01:01:01.001Z",
"deleted_at": "2023-01-01T01:01:01.001Z",
"addon": {
"id": "01G65Z755AFWAKHE12NY0CQ9FH"
},
"quantity_at": "2023-01-01T01:01:01.001Z",
"active_from": "2023-01-01T01:01:01.001Z",
"active_to": "2023-01-01T01:01:01.001Z",
"timeline": [
{
"quantity": 1,
"active_from": "2025-01-01T00:00:00Z",
"active_to": "2025-01-02T00:00:00Z"
},
{
"quantity": 0,
"active_from": "2025-01-02T00:00:00Z",
"active_to": "2025-01-03T00:00:00Z"
},
{
"quantity": 1,
"active_from": "2025-01-03T00:00:00Z"
}
],
"rate_cards": [
{
"rate_card": {
"labels": {
"env": "test"
},
"key": "resource_key",
"feature": {
"id": "01G65Z755AFWAKHE12NY0CQ9FH"
},
"billing_cadence": "P1Y",
"tax_config": {
"code": {
"id": "01G65Z755AFWAKHE12NY0CQ9FH"
}
},
"entitlement": {
"usage_period": "P1Y"
}
},
"affected_subscription_item_ids": [
"01G65Z755AFWAKHE12NY0CQ9FH"
]
}
]
}
],
"meta": {
"page": {
"number": 1,
"size": 10,
"total": 100
}
}
}Changes
Changed in 2 of the 75 revisions of this API.5
- ○
the response optional property
data/items/descriptionbecame read-only for the status200response-optional-property-became-read-only
- ○
added the required property
data/items/rate_cardsto the response with the200statusresponse-required-property-added
- ○
added the required property
data/items/timelineto the response with the200statusresponse-required-property-added
- ○
the response required property
data/items/namebecame read-only for the status200response-required-property-became-read-only
This revision also has 23 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○
- ○
endpoint added
endpoint-added
- ○