PUT api/User/UnsubscribeClient
Request Information
URI Parameters
None.
Body Parameters
UserClientModelName | Description | Type | Additional information |
---|---|---|---|
UserID | integer |
None. |
|
ClientID | integer |
None. |
|
LockStatus | boolean |
None. |
|
OTP | string |
None. |
|
EmailID | string |
None. |
|
IsActive | boolean |
None. |
|
Unsubscribe | boolean |
None. |
|
WaiveClient | boolean |
None. |
|
IPAddress | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "UserID": 1, "ClientID": 2, "LockStatus": true, "OTP": "sample string 4", "EmailID": "sample string 5", "IsActive": true, "Unsubscribe": true, "WaiveClient": true, "IPAddress": "sample string 9" }
application/xml, text/xml
Sample:
<UserClientModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAWebAPI.Models"> <ClientID>2</ClientID> <EmailID>sample string 5</EmailID> <IPAddress>sample string 9</IPAddress> <IsActive>true</IsActive> <LockStatus>true</LockStatus> <OTP>sample string 4</OTP> <Unsubscribe>true</Unsubscribe> <UserID>1</UserID> <WaiveClient>true</WaiveClient> </UserClientModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>