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
MultiResultResponseOfClubMemberDtoName | 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": "d52f0e29-bae3-425c-add3-1af88ace12db", "availablePoints": 1, "totalPoints": 2, "levelIndex": 3, "customerId": "f5b30fc3-a2b7-4d02-9fca-935c97bc05c3", "clubCode": "sample string 5", "clubLevelCode": "sample string 6" }, { "id": "d52f0e29-bae3-425c-add3-1af88ace12db", "availablePoints": 1, "totalPoints": 2, "levelIndex": 3, "customerId": "f5b30fc3-a2b7-4d02-9fca-935c97bc05c3", "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>f5b30fc3-a2b7-4d02-9fca-935c97bc05c3</d2p1:CustomerId> <d2p1:Id>d52f0e29-bae3-425c-add3-1af88ace12db</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>f5b30fc3-a2b7-4d02-9fca-935c97bc05c3</d2p1:CustomerId> <d2p1:Id>d52f0e29-bae3-425c-add3-1af88ace12db</d2p1:Id> <d2p1:LevelIndex>3</d2p1:LevelIndex> <d2p1:TotalPoints>2</d2p1:TotalPoints> </d2p1:ClubMemberDto> </Results> </MultiResultResponseOfClubMemberDtoaM_S85dVU>