GET api/Loyalty/GetCustomerPointBalances?companyKey={companyKey}
Returns the point balances of all customers.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| companyKey | string |
Default value is |
Body Parameters
N/A
Response Information
Resource Description
A list of customer point balances.
Collection of CustomerPointBalance| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerCode | string |
N/A |
|
| CustomerName | string |
N/A |
|
| Points | integer |
N/A |
Response Formats
application/json, text/json
Sample:
[
{
"CustomerCode": "sample string 1",
"CustomerName": "sample string 2",
"Points": 3
},
{
"CustomerCode": "sample string 1",
"CustomerName": "sample string 2",
"Points": 3
}
]