Lists the subscription ramps that match the criteria provided in the filter parameters.
Note
By default, the ramps are returned sorted in descending order (latest first) by updated_at.
Sample Request
URL Format
Input Parameters
Determines your position in the list for pagination. To ensure that the next page is retrieved correctly, always set offset
to the value of next_offset
obtained in the previous iteration of the API call.
Specifies whether to include deleted resources in the response. Deleted resources are those with the deleted attribute set to true.
Caution
status or effective_from filters must not be passed when include_deleted is set to true.
.
optional, string filter
Sorts based on the specified attribute. Supported attributes : effective_from, created_at, updated_at
Supported sort-orders : asc, desc
Example → sort_by[asc] = "effective_from"
This will sort the result based on the 'effective_from' attribute in ascending(earliest first) order.
Filter Params
optional, enumerated string filter
Filter subscription ramps based on status
.
Caution
- The
subscription_idfilter must be passed when filtering bystatus. statusfilter should not be passed wheninclude_deletedis set totrue.
Possible values are : scheduled, succeeded, failed.
Supported operators : is, in
Example → status[is] = "SCHEDULED"
optional, string filter
Filter subscription ramps based on subscription_id
.
Caution
This filter is mandatory when filtering by status or effective_from.
Supported operators : is, in
Example → subscription_id[is] = "8gsnbYfsMLds"
optional, timestamp(UTC) in seconds filter
Filter subscription ramps based on effective_from.
Caution
- The
subscription_idfilter must be passed when filtering byeffective_from. effective_fromfilter should not be passed wheninclude_deletedis set totrue.
Supported operators : after, before, on, between
Example → effective_from[after] = "1435054328"
optional, timestamp(UTC) in seconds filter
Filter subscription ramps based on updated_at
.
Tip
Specify sort_by = updated_at (whether asc oor desc) for a faster response when using this filter.
Supported operators : after, before, on, between
Example → updated_at[after] = "1435052328"
Returns
This attribute is returned only if more resources are present. To fetch the next set of resources use this value for the input parameter offset.