Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Invites Subresource


(information)

Info

Flex Conversations requires Flex UI 2.0. If you are on Flex UI 1.x, please refer to Messaging in Flex pages.

The Interaction Channel Invite subresource allows you to add an agent as a new participant to an existing interaction channel.


_10
/Interactions/<interaction_sid>/Channels/<channel_sid>/Invites

Use this endpoint to:

  • add an agent to an ongoing interaction,
  • to find an agent that should be added by evaluating a TaskRouter workflow , or
  • to send an interaction to a queue .

The invite creates a new task for the existing interaction which will result in reservations offered to the agent(s). Note the example JSON response on this page is not representative of the actual API response. See example response on "Park an Interaction".

(warning)

Warning

Remember to handle certain terminal TaskRouter events according to your application's needs, as conversations may stay orphaned with an open state.

See Conversations Best Practices for details.


Interaction Channel Invite properties

interaction-channel-invite-properties page anchor
ParameterSub-fieldDescription
Routing [required]A JSON Object representing the routing rules for the Interaction Channel. See Outbound SMS Example for an example Routing object. The Interactions resource uses TaskRouter for all routing functionality.
properties [required]Fields needed to create a task:

workspace_sid [required] The TaskRouter Workspace SID which starts with WS.

workflow_sid [optional] The Workflow SID prefixed by WW. Optional if there's only one workflow defined otherwise it's mandatory

queue_sid [required for agent-initiated], the Task router Queue SID prefixed by WQ.

worker_sid [required for agent-initiated]

task_channel_sid [optional]

task_channel_unique_name [optional]

attributes [optional] : The task attributes.

priority [optional]: The priority of the task in the queue.

timeout [optional]: The task/reservation timeout interval in seconds.

All attributes in the Routing object on your Interaction request body are added "as is" to the task. For a list of known attributes consumed by the Flex UI and/or Flex Insights, see Known Task Attributes.
Resource properties
sidtype: SID<KG>Not PII

The unique string created by Twilio to identify an Interaction Channel Invite resource.


interaction_sidtype: SID<KD>Not PII

The Interaction SID for this Channel.


channel_sidtype: SID<UO>Not PII

The Channel SID for this Invite.


routingtype: objectNot PII

A JSON object representing the routing rules for the Interaction Channel. See Outbound SMS Example(link takes you to an external page) for an example Routing object. The Interactions resource uses TaskRouter for all routing functionality. All attributes in the Routing object on your Interaction request body are added “as is” to the task. For a list of known attributes consumed by the Flex UI and/or Flex Insights, see Known Task Attributes(link takes you to an external page).


urltype: string<URI>Not PII

Create an Interaction Channel Invite

create-an-interaction-channel-invite page anchor
POST https://flex-api.twilio.com/v1/Interactions/{InteractionSid}/Channels/{ChannelSid}/Invites

Parameters

create-parameters page anchor
URI parameters
InteractionSidtype: SID<KD>Not PII
Path Parameter

The Interaction SID for this Channel.


ChannelSidtype: SID<UO>Not PII
Path Parameter

The Channel SID for this Invite.


Request body parameters
Routingtype: objectNot PII
Required

The Interaction's routing logic.

This example request invites an agent to a channel in an interaction.

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_17
// Download the helper library from https://www.twilio.com/docs/node/install
_17
// Find your Account SID and Auth Token at twilio.com/console
_17
// and set the environment variables. See http://twil.io/secure
_17
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_17
const authToken = process.env.TWILIO_AUTH_TOKEN;
_17
const client = require('twilio')(accountSid, authToken);
_17
_17
client.flexApi.v1.interaction('KDXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')
_17
.channels('UOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')
_17
.invites
_17
.create({routing: {
_17
properties: {
_17
workspace_sid: 'WSXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
_17
workflow_sid: 'WWXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
_17
}
_17
}})
_17
.then(interaction_channel_invite => console.log(interaction_channel_invite.sid));

Output

_12
{
_12
"sid": "KGXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_12
"channel_sid": "UOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_12
"interaction_sid": "KDXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_12
"routing": {
_12
"properties": {
_12
"workspace_sid": "WSXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_12
"workflow_sid": "WWXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
_12
}
_12
},
_12
"url": "https://flex-api.twilio.com/v1/Interactions/KDXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Channels/UOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Invites/KGXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
_12
}


Rate this page: