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": "4d54f5bc-648d-42fc-a068-a3edaaa09be3",
"MemberTypeId": "8e883564-6aef-44ee-87d1-f0e4a420616c",
"SignupDate": "2026-08-05T23:23:20.5296538+02: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>4d54f5bc-648d-42fc-a068-a3edaaa09be3</MemberId> <MemberTypeId>8e883564-6aef-44ee-87d1-f0e4a420616c</MemberTypeId> <SignupDate>2026-08-05T23:23:20.5296538+02: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": "f596976c-05cf-4307-bdf5-89d762fc4dcd",
"Name": "sample string 2",
"MemberTypeId": "580a8b73-b322-4ab2-beb1-e7bbc819ba58",
"SignupDate": "2026-08-05T23:23:20.5296538+02:00",
"ResignedDate": "2026-08-05T23:23:20.5296538+02: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>580a8b73-b322-4ab2-beb1-e7bbc819ba58</MemberTypeId> <MembershipId>f596976c-05cf-4307-bdf5-89d762fc4dcd</MembershipId> <Name>sample string 2</Name> <ResignedDate>2026-08-05T23:23:20.5296538+02:00</ResignedDate> <SignupDate>2026-08-05T23:23:20.5296538+02:00</SignupDate> </MembershipDto>
