Create Task API
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2023 11:43 AM
I have a question on the Create Task API for webex contact center.
For the request body for the outboundType we have CALLBACK, OUTDIAL, and EXECUTE_FLOW as options. Under the entryPointId section it says CALLBACK would be an outdialEP and OUTDIAL would be an outboundEP. What is the distinction here? I am aware of Entry Points which are inbound and Outdial Entry Points so what is an outboundEP vs and outdialEP?
- Labels:
-
Webex Contact Center APIs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2024 12:58 AM
@bschear79 I checked it internally for you and actually here the documentation is incorrect. There is no such thing called outdialEP , even though the portal displays it currently. We only have outboundEP. For CALLBACK and OUTDIAL -> entrypointId should be outboundEP. We will work on the documentation to adjust it appropriately.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2024 05:12 AM
Following up on the theme of the post.
I have manage to successfully complete a create task as a Callback using the outdialEP and its showing in the reporting.
However its not routing to an agent, as the callback has no queue associated to the call.
Looking for some guidance how I can specify which queue the callback needs to be queue too.
Request Body:
{
"destination": "+61XXXXXXXX",
"entryPointId": "96d33f7a-f375-4cd4-ac5d-f17b22371fc6",
"attributes": {"id":"4e3ab52c-b9c8-48ea-8603-c9ff946a298f","name":"Brisingr Sales"},
"outboundType":"CALLBACK",
"mediaType":"telephony",
"origin":"+613XXXXXXXX",
"callback": {
"callbackOrigin": "web",
"callbackType": "immediate"
}
}
I have tried adding in the following under attributes and outside it with no luck.
"queue": {
"id":"4e3ab52c-b9c8-48ea-8603-c9ff946a298f",
"name": "Brisingr Sales",
},
