GET api/v1/clubmembers?Limit={Limit}&Offset={Offset}&OrderBy={OrderBy}&clubCode={clubCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Limit | integer |
None. |
|
| Offset | integer |
None. |
|
| OrderBy | string |
None. |
|
| clubCode | string |
Required |
Body Parameters
None.
Response Information
Resource Description
MultiResultResponseOfClubMemberDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Meta | MetaMultiResult |
None. |
|
| Notifications |
None. |
Response Formats
application/json, text/json
Sample:
{
"meta": {
"limit": 1,
"offset": 2,
"totalResults": 3
},
"notifications": [
{},
{}
],
"results": [
{
"id": "757c8412-0f19-4c11-9d95-916c26fbdf2b",
"availablePoints": 1.0,
"totalPoints": 2.0,
"levelIndex": 3.0,
"customerId": "4a2c55d5-c1f1-4fb5-9f9e-da181ef6ccc3",
"clubCode": "sample string 5",
"clubLevelCode": "sample string 6"
},
{
"id": "757c8412-0f19-4c11-9d95-916c26fbdf2b",
"availablePoints": 1.0,
"totalPoints": 2.0,
"levelIndex": 3.0,
"customerId": "4a2c55d5-c1f1-4fb5-9f9e-da181ef6ccc3",
"clubCode": "sample string 5",
"clubLevelCode": "sample string 6"
}
]
}
application/xml, text/xml
Sample:
<MultiResultResponseOfClubMemberDtoaM_S85dVU xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Presentation.WebApi.Dtos.Response">
<Meta>
<Limit>1</Limit>
<Offset>2</Offset>
<TotalResults>3</TotalResults>
</Meta>
<Notifications>
<Notification />
<Notification />
</Notifications>
<Results xmlns:d2p1="http://schemas.datacontract.org/2004/07/Domain.Dtos">
<d2p1:ClubMemberDto>
<d2p1:AvailablePoints>1</d2p1:AvailablePoints>
<d2p1:ClubCode>sample string 5</d2p1:ClubCode>
<d2p1:ClubLevelCode>sample string 6</d2p1:ClubLevelCode>
<d2p1:CustomerId>4a2c55d5-c1f1-4fb5-9f9e-da181ef6ccc3</d2p1:CustomerId>
<d2p1:Id>757c8412-0f19-4c11-9d95-916c26fbdf2b</d2p1:Id>
<d2p1:LevelIndex>3</d2p1:LevelIndex>
<d2p1:TotalPoints>2</d2p1:TotalPoints>
</d2p1:ClubMemberDto>
<d2p1:ClubMemberDto>
<d2p1:AvailablePoints>1</d2p1:AvailablePoints>
<d2p1:ClubCode>sample string 5</d2p1:ClubCode>
<d2p1:ClubLevelCode>sample string 6</d2p1:ClubLevelCode>
<d2p1:CustomerId>4a2c55d5-c1f1-4fb5-9f9e-da181ef6ccc3</d2p1:CustomerId>
<d2p1:Id>757c8412-0f19-4c11-9d95-916c26fbdf2b</d2p1:Id>
<d2p1:LevelIndex>3</d2p1:LevelIndex>
<d2p1:TotalPoints>2</d2p1:TotalPoints>
</d2p1:ClubMemberDto>
</Results>
</MultiResultResponseOfClubMemberDtoaM_S85dVU>