This returns the list of rewards transactions for a specific customer in the Equotix One account.
Request
Body Params application/json
The domain you are assigned to authenticate your Equotix One account.
The email address assigned to the user account in your Equotix One.
The unix timestamp used to sign this API request.
The calculated signature for this API request.
The customer ID to search for specifically.
Filter the list of transactions after the specified date.
Page number of the results.
The number of results per page. Accepts 1 to 100.
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"customer_id": 0,
"filter_date_added": "string",
"page": 0,
"limit": 0
}
Responses
application/json Returns only if there is an error.
The total number of reward points available for the customer.
The total number of results available.
rewards
array [object {3}]Â
requiredThe list of transactions.
The number of points added or subtracted.
The transaction description.
The date time the transaction was created.
{
"error": [
"string"
],
"reward": 0,
"total": 0,
"rewards": [
{
"reward": 0,
"description": "string",
"date_added": "string"
}
]
}
Modified at 2024-10-20 11:28:45