GET api/Members/{id}/Memberships
Get all memberships of the member
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of MembershipDto| Name | Description | Type | Additional information |
|---|---|---|---|
| MembershipId |
ID of the membership (Guid) |
globally unique identifier |
None. |
| Name |
Name of the membership |
string |
None. |
| MemberTypeId |
ID of the membership type (Guid) |
globally unique identifier |
None. |
| SignupDate |
The date the member signed up to the membership |
date |
None. |
| ResignedDate |
The date the member resigned from the membership |
date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"MembershipId": "63bd2cca-27af-4250-ad47-a979868a9973",
"Name": "sample string 2",
"MemberTypeId": "f8c7fb45-7e2f-47e0-b41f-280cd51e9341",
"SignupDate": "2026-09-20T11:24:15.7292985+02:00",
"ResignedDate": "2026-09-20T11:24:15.7292985+02:00"
},
{
"MembershipId": "63bd2cca-27af-4250-ad47-a979868a9973",
"Name": "sample string 2",
"MemberTypeId": "f8c7fb45-7e2f-47e0-b41f-280cd51e9341",
"SignupDate": "2026-09-20T11:24:15.7292985+02:00",
"ResignedDate": "2026-09-20T11:24:15.7292985+02:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfMembershipDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">
<MembershipDto>
<MemberTypeId>f8c7fb45-7e2f-47e0-b41f-280cd51e9341</MemberTypeId>
<MembershipId>63bd2cca-27af-4250-ad47-a979868a9973</MembershipId>
<Name>sample string 2</Name>
<ResignedDate>2026-09-20T11:24:15.7292985+02:00</ResignedDate>
<SignupDate>2026-09-20T11:24:15.7292985+02:00</SignupDate>
</MembershipDto>
<MembershipDto>
<MemberTypeId>f8c7fb45-7e2f-47e0-b41f-280cd51e9341</MemberTypeId>
<MembershipId>63bd2cca-27af-4250-ad47-a979868a9973</MembershipId>
<Name>sample string 2</Name>
<ResignedDate>2026-09-20T11:24:15.7292985+02:00</ResignedDate>
<SignupDate>2026-09-20T11:24:15.7292985+02:00</SignupDate>
</MembershipDto>
</ArrayOfMembershipDto>
