GET api/v1/clubmembers/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
SingleResultResponseOfClubMemberDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Meta | MetaSingleResult |
None. |
|
| Notifications |
None. |
Response Formats
application/json, text/json
Sample:
{
"meta": {},
"notifications": [
{},
{}
],
"result": {
"id": "d8812975-57eb-459a-9eea-867bf9b99f20",
"availablePoints": 1.0,
"totalPoints": 2.0,
"levelIndex": 3.0,
"customerId": "78cb5423-3ff4-4e91-9009-e6e4fea02139",
"clubCode": "sample string 5",
"clubLevelCode": "sample string 6"
}
}
application/xml, text/xml
Sample:
<SingleResultResponseOfClubMemberDtoaM_S85dVU xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Presentation.WebApi.Dtos.Response">
<Meta />
<Notifications>
<Notification />
<Notification />
</Notifications>
<Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/Domain.Dtos">
<d2p1:AvailablePoints>1</d2p1:AvailablePoints>
<d2p1:ClubCode>sample string 5</d2p1:ClubCode>
<d2p1:ClubLevelCode>sample string 6</d2p1:ClubLevelCode>
<d2p1:CustomerId>78cb5423-3ff4-4e91-9009-e6e4fea02139</d2p1:CustomerId>
<d2p1:Id>d8812975-57eb-459a-9eea-867bf9b99f20</d2p1:Id>
<d2p1:LevelIndex>3</d2p1:LevelIndex>
<d2p1:TotalPoints>2</d2p1:TotalPoints>
</Result>
</SingleResultResponseOfClubMemberDtoaM_S85dVU>