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": "8c7d675c-a150-49d2-b33a-86f33341b0ee",
"SignupDate": "2026-03-22T22:07:36.0767171+01: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>8c7d675c-a150-49d2-b33a-86f33341b0ee</MembershipId> <SignupDate>2026-03-22T22:07:36.0767171+01: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": "891048cf-619f-4d38-8135-7f6dff5ff766",
"Name": "sample string 2",
"MemberTypeId": "19552910-39b2-4677-8d90-3d2fad1733c1",
"SignupDate": "2026-03-22T22:07:36.0767171+01:00",
"ResignedDate": "2026-03-22T22:07:36.0767171+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>19552910-39b2-4677-8d90-3d2fad1733c1</MemberTypeId> <MembershipId>891048cf-619f-4d38-8135-7f6dff5ff766</MembershipId> <Name>sample string 2</Name> <ResignedDate>2026-03-22T22:07:36.0767171+01:00</ResignedDate> <SignupDate>2026-03-22T22:07:36.0767171+01:00</SignupDate> </MembershipDto>
