GET api/Loyalty/GetCustomerRate?customerCode={customerCode}&companyKey={companyKey}
Gets the specified customer's point rates.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerCode | string |
Required |
|
| companyKey | string |
Default value is |
Body Parameters
N/A
Response Information
Resource Description
Collection of CustomerRate| Name | Description | Type | Additional information |
|---|---|---|---|
| CustRef | string |
N/A |
|
| CompNo | integer |
N/A |
|
| RpAmt | decimal number |
N/A |
|
| ApAmt | decimal number |
N/A |
|
| Rounding | string |
N/A |
|
| Uid | string |
N/A |
Response Formats
application/json, text/json
Sample:
[
{
"CustRef": "sample string 1",
"CompNo": 2,
"RpAmt": 3.0,
"ApAmt": 4.0,
"Rounding": "sample string 5",
"Uid": "sample string 6"
},
{
"CustRef": "sample string 1",
"CompNo": 2,
"RpAmt": 3.0,
"ApAmt": 4.0,
"Rounding": "sample string 5",
"Uid": "sample string 6"
}
]