GET api/v1/clubmembers?Limit={Limit}&Offset={Offset}&OrderBy={OrderBy}&clubLevelCode={clubLevelCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Limit | integer |
None. |
|
| Offset | integer |
None. |
|
| OrderBy | string |
None. |
|
| clubLevelCode | 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": "48ef1dfe-3b2c-4c01-98f7-08153dcbc052",
"availablePoints": 1.0,
"totalPoints": 2.0,
"levelIndex": 3.0,
"customerId": "7c838f78-af51-486d-a447-bee16e688dac",
"clubCode": "sample string 5",
"clubLevelCode": "sample string 6"
},
{
"id": "48ef1dfe-3b2c-4c01-98f7-08153dcbc052",
"availablePoints": 1.0,
"totalPoints": 2.0,
"levelIndex": 3.0,
"customerId": "7c838f78-af51-486d-a447-bee16e688dac",
"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>7c838f78-af51-486d-a447-bee16e688dac</d2p1:CustomerId>
<d2p1:Id>48ef1dfe-3b2c-4c01-98f7-08153dcbc052</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>7c838f78-af51-486d-a447-bee16e688dac</d2p1:CustomerId>
<d2p1:Id>48ef1dfe-3b2c-4c01-98f7-08153dcbc052</d2p1:Id>
<d2p1:LevelIndex>3</d2p1:LevelIndex>
<d2p1:TotalPoints>2</d2p1:TotalPoints>
</d2p1:ClubMemberDto>
</Results>
</MultiResultResponseOfClubMemberDtoaM_S85dVU>