PUT api/Memberships
Update membership
Request Information
URI Parameters
None.
Body Parameters
MembershipUpdateDtoName | 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": "c3e93113-8ed7-43af-9fe7-ea84535ddf13", "SignupDate": "2025-04-07T02:16:34.1273174+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>c3e93113-8ed7-43af-9fe7-ea84535ddf13</MembershipId> <SignupDate>2025-04-07T02:16:34.1273174+02:00</SignupDate> </MembershipUpdateDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
MembershipDtoName | 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": "60657b59-9bf2-4504-9d75-fb098fe33283", "Name": "sample string 2", "MemberTypeId": "3410f4e0-37db-4587-a4d8-c241a56a7b5c", "SignupDate": "2025-04-07T02:16:34.1273174+02:00", "ResignedDate": "2025-04-07T02:16:34.1273174+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>3410f4e0-37db-4587-a4d8-c241a56a7b5c</MemberTypeId> <MembershipId>60657b59-9bf2-4504-9d75-fb098fe33283</MembershipId> <Name>sample string 2</Name> <ResignedDate>2025-04-07T02:16:34.1273174+02:00</ResignedDate> <SignupDate>2025-04-07T02:16:34.1273174+02:00</SignupDate> </MembershipDto>