Remove Login Details
- DarkLight
Remove Login Details
- DarkLight
Article summary
Did you find this summary helpful?
Thank you for your feedback
Overview
This API allows the user to delete the CTI credentials saved in Salesforce.
Pre-requisite
The application registration must be completed.
Sequence Diagram
Message Structure
Request Parameters | Value |
|---|---|
channel | Salesforce |
topic | User |
subtopic | RemoveCredentials |
source | «Source Application Name» |
data | «JSON Object» |
Response Parameters | Value |
|---|---|
channel | Salesforce |
topic | User |
subtopic | RemoveCredentials |
message | «JSON Object» |
Response Data Parameters
Parameter | Data Type | Description | Sample Value |
|---|---|---|---|
Success | Boolean | The request status - whether response removed successfully. | True |
ErrorMessage | String | The reason for a response error, if any. | Null |
Sample Request
{
"channel": "Salesforce",
"topic": "User",
"subtopic": "RemoveCredentials",
"source": "myapp"
}Sample Response
{
"channel": "Salesforce",
"topic": "User",
"subtopic": "RemoveCredentials",
"data":
{
"Success": true,
"ErrorMessage": null
}
} Was this article helpful?