POST api/Account/delete_customer_login
Request Information
URI Parameters
None.
Body Parameters
delete_customer_login_request| Name | Description | Type | Additional information |
|---|---|---|---|
| customer_id | string |
None. |
|
| token | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"customer_id": "sample string 1",
"token": "sample string 2"
}
application/xml, text/xml
Sample:
<delete_customer_login_request xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models"> <customer_id>sample string 1</customer_id> <token>sample string 2</token> </delete_customer_login_request>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
delete_customer_login_response| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"message": "sample string 2"
}
application/xml, text/xml
Sample:
<delete_customer_login_response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models"> <message>sample string 2</message> <success>true</success> </delete_customer_login_response>