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": "9206e410-ee1e-4726-bd22-6f62a447050e",
"SignupDate": "2026-06-21T21:16:53.6180184+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>9206e410-ee1e-4726-bd22-6f62a447050e</MembershipId> <SignupDate>2026-06-21T21:16:53.6180184+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": "3f035078-e847-4ebf-9499-2b6315311d78",
"Name": "sample string 2",
"MemberTypeId": "6f41827b-632e-4a8c-8d32-fdb9e04d7cdc",
"SignupDate": "2026-06-21T21:16:53.6180184+02:00",
"ResignedDate": "2026-06-21T21:16:53.6180184+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>6f41827b-632e-4a8c-8d32-fdb9e04d7cdc</MemberTypeId> <MembershipId>3f035078-e847-4ebf-9499-2b6315311d78</MembershipId> <Name>sample string 2</Name> <ResignedDate>2026-06-21T21:16:53.6180184+02:00</ResignedDate> <SignupDate>2026-06-21T21:16:53.6180184+02:00</SignupDate> </MembershipDto>
