POST api/Memberships/Resign
When a member leaves the club, you need call this method with the date the member resigns and an optional message/reason. It is not possible to delete memberships because the duration of the membership is used in other parts of the system.
Request Information
URI Parameters
None.
Body Parameters
MembershipResignDto| Name | Description | Type | Additional information |
|---|---|---|---|
| MembershipId |
ID of the membership (Guid) |
globally unique identifier |
Required |
| ResignedDate |
The date the member resigned from the membership |
date |
Required |
| ResignReason |
Optional field for information about why a membership is ending. |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"MembershipId": "1be56e96-c1ea-48e6-99fb-aae4ca44df78",
"ResignedDate": "2026-06-21T21:18:33.1994419+02:00",
"ResignReason": "sample string 1"
}
application/xml, text/xml
Sample:
<MembershipResignDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models"> <MembershipId>1be56e96-c1ea-48e6-99fb-aae4ca44df78</MembershipId> <ResignReason>sample string 1</ResignReason> <ResignedDate>2026-06-21T21:18:33.1994419+02:00</ResignedDate> </MembershipResignDto>
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": "0ae6d214-b963-437d-a9cc-9a5d4a8f54e2",
"Name": "sample string 2",
"MemberTypeId": "89db0ce9-b224-438e-ae23-8fef9ca0d8f0",
"SignupDate": "2026-06-21T21:18:33.1994419+02:00",
"ResignedDate": "2026-06-21T21:18:33.1994419+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>89db0ce9-b224-438e-ae23-8fef9ca0d8f0</MemberTypeId> <MembershipId>0ae6d214-b963-437d-a9cc-9a5d4a8f54e2</MembershipId> <Name>sample string 2</Name> <ResignedDate>2026-06-21T21:18:33.1994419+02:00</ResignedDate> <SignupDate>2026-06-21T21:18:33.1994419+02:00</SignupDate> </MembershipDto>
