GET api/MemberSummary?companycode={companycode}&memberId={memberId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| companycode | string |
Required |
|
| memberId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
MemberSummary| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalBills | integer |
None. |
|
| TotalPurchased | decimal number |
None. |
|
| ValidPoints | decimal number |
None. |
|
| PonitsRedeemed | decimal number |
None. |
|
| TotalPoints | decimal number |
None. |
|
| LastVisit | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalBills": 1,
"TotalPurchased": 2.0,
"ValidPoints": 3.0,
"PonitsRedeemed": 4.0,
"TotalPoints": 5.0,
"LastVisit": "2025-11-17T08:08:53.0138184+08:00"
}
text/xml
Sample:
<MemberSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CloudSysPOSWeb.Models"> <LastVisit>2025-11-17T08:08:53.0138184+08:00</LastVisit> <PonitsRedeemed>4</PonitsRedeemed> <TotalBills>1</TotalBills> <TotalPoints>5</TotalPoints> <TotalPurchased>2</TotalPurchased> <ValidPoints>3</ValidPoints> </MemberSummary>