GET api/loyalty2/member/shop/{shopId}/customernumber/{customerNumber}/levelengine/pointlogs
Provides all point log(s) of a member, given a shop and customer number.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| shopId |
The shop id. |
integer |
Required |
| customerNumber |
The member customer number(long). |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of PointLog| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Id of this log |
integer |
None. |
| MemberId |
Id of member |
integer |
None. |
| CalculationTime |
Datetime of calculation |
date |
None. |
| Type |
Type of point log |
string |
None. |
| Points |
Amount of points |
decimal number |
None. |
| IsActive |
(Not)Active identifier |
boolean |
None. |
| Money |
Amount of money |
decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"MemberId": 2,
"CalculationTime": "2025-11-01T20:32:24.5460686+01:00",
"Type": "sample string 4",
"Points": 5.0,
"IsActive": true,
"Money": 7.0
},
{
"Id": 1,
"MemberId": 2,
"CalculationTime": "2025-11-01T20:32:24.5460686+01:00",
"Type": "sample string 4",
"Points": 5.0,
"IsActive": true,
"Money": 7.0
}
]
application/xml, text/xml
Sample:
<ArrayOfPointLogViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PublicAPI.Models">
<PointLogViewModel>
<CalculationTime>2025-11-01T20:32:24.5460686+01:00</CalculationTime>
<Id>1</Id>
<IsActive>true</IsActive>
<MemberId>2</MemberId>
<Money>7</Money>
<Points>5</Points>
<Type>sample string 4</Type>
</PointLogViewModel>
<PointLogViewModel>
<CalculationTime>2025-11-01T20:32:24.5460686+01:00</CalculationTime>
<Id>1</Id>
<IsActive>true</IsActive>
<MemberId>2</MemberId>
<Money>7</Money>
<Points>5</Points>
<Type>sample string 4</Type>
</PointLogViewModel>
</ArrayOfPointLogViewModel>