Manual Dial Copy Contact
- DarkLight
Manual Dial Copy Contact
- DarkLight
Article summary
Did you find this summary helpful?
Thank you for your feedback
Overview
The ManualDialCopyContact API enables users to copy manual dial contacts and send them to a softphone.
Pre-requisite
The Agent must be logged in to the application.
Sequence Diagram

Message Structure
Request Parameters | Value |
|---|---|
channel | LCM |
topic | Webservice |
subtopic | ManualDialCopyContact |
source | «app-name-broadcasting-this-message» |
data | «JSON Object» |
Data Parameters
Parameter | Mandatory | Data Type | Description |
|---|---|---|---|
PhoneNumber | Yes | String | The phone number that the agent has to dial. |
Response Parameters | Value |
|---|---|
channel | LCM |
topic | InboundCall |
subtopic | ManualDialCopyContact |
message | «JSON Object» |
Message Parameters
Parameter | Mandatory | Data Type | Description |
|---|---|---|---|
Subtopic | Yes | String | The subtopic name. |
Topic | Yes | String | The topic name. |
Channel | Yes | String | The channel name. |
data | Yes | JSON Object | The details of the phone number. |
Sample Request
{
"channel": "Amazon",
"topic": "InboundCall",
"subtopic": "ManualDialCopyContact",
"data": {
"PhoneNumber": "+11234567890"
}
}Sample Response
{
"channel":"UI",
"topic":"InboundCall",
"subtopic":"ManualDialCopyContact",
"message":{
"subtopic":"ManualDialCopyContact",
"topic":"InboundCall",
"channel":"Amazon",
"data":{
"PhoneNumber":"+11234567890"
}
}
}Was this article helpful?