POST api/Customer/CancelMembershipList
Request Information
URI Parameters
None.
Body Parameters
CancelMembershipListRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| UserIdList | Collection of globally unique identifier |
None. |
|
| User | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserIdList": [
"ba42b031-5fff-49c0-87cb-931e7bce27b6",
"383f8bcc-046e-4cd0-90e9-72390d075ecd"
],
"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>ba42b031-5fff-49c0-87cb-931e7bce27b6</d2p1:guid>
<d2p1:guid>383f8bcc-046e-4cd0-90e9-72390d075ecd</d2p1:guid>
</UserIdList>
</CancelMembershipListRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CancelMembershipListResponse| Name | 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>