- DarkLight
Set Dialer Outcome For MCD Request
- DarkLight
Overview
The SetDialerOutcomeForMCDRequest API helps an Agent search for Open Contacts across campaigns based on Phone Number (AND / OR) Business Field. Using this, an agent can set the business / telephony disposition without dialing the contact via other campaigns.
Pre-requisite
The agent must be logged in to the application.
Sequence Diagram

Message Structure
Request Parameters | Value |
|---|---|
channel | LCM |
topic | Webservice |
subtopic | SetDialerOutcomeForMCDRequest |
source | «app-name-broadcasting-this-message» |
data | «JSON Object» |
Data Parameters
Parameter | Mandatory | Data Type | Description |
|---|---|---|---|
AccountNumber | Yes | String | The LCM Key. |
AgentID | Yes | String | The agent ID. |
PhoneNumber | Yes | String | The customer’s phone number. |
CallId | Yes | String | The Call ID generated by the application. |
isOfflineTransaction | Yes | Boolean |
Response Parameters | Value |
|---|---|
channel | LCM |
topic | Webservice |
subtopic | SetDialerOutcomeForMCDResponse |
data | N/A |
Message Parameters
Parameter | Mandatory | Data Type | Description |
|---|---|---|---|
response | Yes | Boolean |
Sample Request
{
"channel": "LCM",
"topic": "WebService",
"subtopic": "SetDialerOutcomeForMCDRequest",
"data":
{
"AccountNumber": "34|3|550|0|0|44|59",
"AgentID": "test",
"PhoneNumber": "919500610256",
"callid": "",
"isOfflineTransaction": true
}
}Sample Response
{
"channel": "LCM",
"topic": "WebService",
"subtopic": "SetDialerOutcomeForMCDResponse",
"message":
{
"response": true
}
}