POST api/Customer/CancelMembershipList
Request Information
URI Parameters
None.
Body Parameters
CancelMembershipListRequestName | Description | Type | Additional information |
---|---|---|---|
UserIdList | Collection of globally unique identifier |
None. |
|
User | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "UserIdList": [ "a1fdaf7c-5796-4038-bb54-12242728a6d7", "38e6f798-30b7-456a-a1c5-3f1d422ad5ff" ], "User": "sample string 1" }
application/xml, text/xml
Sample:
<CancelMembershipListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <User>sample string 1</User> <UserIdList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>a1fdaf7c-5796-4038-bb54-12242728a6d7</d2p1:guid> <d2p1:guid>38e6f798-30b7-456a-a1c5-3f1d422ad5ff</d2p1:guid> </UserIdList> </CancelMembershipListRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CancelMembershipListResponseName | Description | Type | Additional information |
---|---|---|---|
Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "Success": true }
application/xml, text/xml
Sample:
<CancelMembershipListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response"> <Success>true</Success> </CancelMembershipListResponse>