Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Path Parameters
Unique identifier of a customer represented by an internal customer ID or customer source ID.
"cust_nk0N1uNQ1YnupAoJGOgvsODC"
Query Parameters
Limits the number of objects to be returned. The limit can range between 1 and 100 items. If no limit is set, it returns 10 items.
1 <= x <= 100
Sorts the results using one of the filtering options, where the dash - preceding a sorting option means sorting in a descending order.
id
, -id
A cursor for pagination. It retrieves the events starting after an event with the given ID.
Filters for listing customer redeemables.
Response
The method returns redeemable(s) to which the given customer is assigned.
Response body schema for GET v1/customers/{customerId}/redeemables
.
List of customer's redeemables
The type of the object represented by JSON. This object stores information about customer redeemables.
Identifies the name of the JSON property that contains the array of redeemables.
A dictionary that contains an array of redeemables.
Total number of results returned.
As query results are always limited (by the limit parameter), the has_more
flag indicates if there are more records for given filter parameters. This lets you know if you can run another request with a starting_after_id
query or a different limit to get more records returned in the results.
Returns an ID that can be used to return another page of results. Use the ID in the starting_after_id
query parameter to display another page of the results occuring after the field with that ID.