POST api/Memberships
Create membership
Request Information
URI Parameters
None.
Body Parameters
MembershipCreateDto| Name | Description | Type | Additional information |
|---|---|---|---|
| MemberId |
ID of the member (Guid) |
globally unique identifier |
Required |
| MemberTypeId |
ID of the MemberType (Guid) |
globally unique identifier |
Required |
| SignupDate |
The date the member signed up to the membership |
date |
Required |
Request Formats
application/json, text/json
Sample:
{
"MemberId": "dac2d4cf-b30c-4cf7-87ca-35916d3ca430",
"MemberTypeId": "235b8b6b-2611-4a1d-b490-877f1e34e38e",
"SignupDate": "2025-12-06T11:48:06.1908745+01:00"
}
application/xml, text/xml
Sample:
<MembershipCreateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models"> <MemberId>dac2d4cf-b30c-4cf7-87ca-35916d3ca430</MemberId> <MemberTypeId>235b8b6b-2611-4a1d-b490-877f1e34e38e</MemberTypeId> <SignupDate>2025-12-06T11:48:06.1908745+01:00</SignupDate> </MembershipCreateDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
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": "5e6d3ca9-a3df-4440-8df1-3b2203a867c1",
"Name": "sample string 2",
"MemberTypeId": "bad791af-bb00-4374-87f9-75ff1e584688",
"SignupDate": "2025-12-06T11:48:06.1908745+01:00",
"ResignedDate": "2025-12-06T11:48:06.1908745+01:00"
}
application/xml, text/xml
Sample:
<MembershipDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models"> <MemberTypeId>bad791af-bb00-4374-87f9-75ff1e584688</MemberTypeId> <MembershipId>5e6d3ca9-a3df-4440-8df1-3b2203a867c1</MembershipId> <Name>sample string 2</Name> <ResignedDate>2025-12-06T11:48:06.1908745+01:00</ResignedDate> <SignupDate>2025-12-06T11:48:06.1908745+01:00</SignupDate> </MembershipDto>
