sale/customer/getReward
POST
/sale/customer/getRewardThis returns the list of rewards transactions for a specific customer in the Equotix One account.
Request
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
Returns only if there is an error.
The total number of reward points available for the customer.
The total number of results available.
The 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"
}
]
}