PUT api/Memberships
Update membership
Request Information
URI Parameters
None.
Body Parameters
MembershipUpdateDto| Name | Description | Type | Additional information |
|---|---|---|---|
| MembershipId |
ID of the membership (Guid) |
globally unique identifier |
Required |
| SignupDate |
The date the member signed up to the membership |
date |
Required |
Request Formats
application/json, text/json
Sample:
{
"MembershipId": "1176b37c-b5a1-4880-a7bb-979b2b90c7ff",
"SignupDate": "2026-08-05T23:24:04.1419275+02:00"
}
application/xml, text/xml
Sample:
<MembershipUpdateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models"> <MembershipId>1176b37c-b5a1-4880-a7bb-979b2b90c7ff</MembershipId> <SignupDate>2026-08-05T23:24:04.1419275+02:00</SignupDate> </MembershipUpdateDto>
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": "8327b560-8e9e-4e00-9865-cde22dad11f0",
"Name": "sample string 2",
"MemberTypeId": "d6e4e71f-9f02-419d-9e86-cd13fc85dc43",
"SignupDate": "2026-08-05T23:24:04.1419275+02:00",
"ResignedDate": "2026-08-05T23:24:04.1419275+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>d6e4e71f-9f02-419d-9e86-cd13fc85dc43</MemberTypeId> <MembershipId>8327b560-8e9e-4e00-9865-cde22dad11f0</MembershipId> <Name>sample string 2</Name> <ResignedDate>2026-08-05T23:24:04.1419275+02:00</ResignedDate> <SignupDate>2026-08-05T23:24:04.1419275+02:00</SignupDate> </MembershipDto>
