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": [ "ff5953c7-57de-4d84-adac-5e9690904268", "516b525d-b9cc-4e07-bb3b-0a231fdc667a" ], "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>ff5953c7-57de-4d84-adac-5e9690904268</d2p1:guid> <d2p1:guid>516b525d-b9cc-4e07-bb3b-0a231fdc667a</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>