Skip to contentSkip to navigationSkip to topbar
On this page

Actions Framework


(information)

Info

Auto-Generated Documentation for the Flex UI(link takes you to an external page) is now available. The auto-generated documentation is accurate and comprehensive, and so may differ from what you see in the official Flex UI documentation.

Flex UI constantly emits asynchronous events and event payloads that describe how the user is interacting with the platform. With the Flex UI Actions Framework, you can manually invoke certain actions such as completing tasks, transferring tasks, holding a current call, and many more. Each action fires a before and after event, which allows you to handle your own logic before and after the action occurs. You can also replace the default behavior of an Action with your own custom logic. As you develop Plugins, the Actions Framework will allow you to describe how you want to interact with Flex UI or any CRM Data.


Register and Invoke an Action

register-and-invoke-an-action page anchor

Actions.registerAction(link takes you to an external page) registers a named action and allows you to invoke the action later. The second argument is an ActionFunction(link takes you to an external page) to be executed when the action is invoked. You can implement your logic in the ActionFunction.

1
import { Actions } from "@twilio/flex-ui";
2
3
Actions.registerAction("AcceptTask", (payload) => {
4
// Custom Logic Goes Here
5
});

Actions.invokeAction(link takes you to an external page) invokes actions that come out of the box with Flex, and the ones that you register. You can pass in an optional payload as a second parameter if the action needs any data when being invoked. When the named Action is invoked, it fires a before and after event.

1
import { Actions } from "@twilio/flex-ui";
2
Actions.invokeAction("AcceptTask", { sid: "WRXXXXXXXXXXXXXXXXX" });

Actions.replaceAction(link takes you to an external page) replaces the default implementation of a named Action with your own. The replaced Action will be called with the same parameters as the original implementation, so you can add additional logic, then invoke the original action in your replacement function.

1
import { Actions } from "@twilio/flex-ui";
2
3
Actions.replaceAction("AcceptTask", (payload, original) => {
4
return new Promise((resolve, reject) => {
5
alert("I have replaced this Action");
6
resolve();
7
}).then(() => original(payload));
8
});

Add and Remove Event Listeners

add-and-remove-event-listeners page anchor

You can add and remove event listeners to events fired when an action is invoked. Every event name is the invoked Action's name prefixed with either "before" or "after".

1
import { Actions } from "@twilio/flex-ui";
2
3
Actions.addListener("beforeAcceptTask", (payload, cancelActionInvocation) => {
4
// Implement logic before the AcceptTask action has been invoked
5
if (someCondition) {
6
// use this function to prevent the actual AcceptTask action from being invoked
7
cancelActionInvocation();
8
}
9
});
10
11
Actions.addListener("afterAcceptTask", (payload) => {
12
// Implement logic after AcceptTask action has stopped executing
13
});
14

To remove a listener, you must provide the same function you used as an argument when registering the event. If you need to remove listeners, you should register your event listeners with a named function instead of an anonymous function.

Registering event listeners with named functions

registering-event-listeners-with-named-functions page anchor
1
import { Actions } from "@twilio/flex-ui";
2
const handleBeforeAcceptTask = (payload, cancelActionInvocation) => {
3
// Implement logic before the AcceptTask action has been invoked
4
};
5
6
const handleAfterAcceptTask = (payload) => {
7
// Implement logic after the AcceptTask action has stopped executing
8
};
9
10
// Register beforeAcceptTask and afterAcceptTask events
11
12
Actions.addListener("beforeAcceptTask", handleBeforeAcceptTask);
13
Actions.addListener("afterAcceptTask", handleAfterAcceptTask);

Removing event listeners with named functions

removing-event-listeners-with-named-functions page anchor

You can now remove the event listeners by passing the name of the event with the original function used to register the event.

1
Actions.removeListener("beforeAcceptTask", handleBeforeAcceptTask);
2
Actions.removeListener("afterAcceptTask", handleAfterAcceptTask);

For a list of all actions, visit the Actions(link takes you to an external page) part of the Flex UI 1.x.x docs. All event names take the name of the Action, prefixed with before or after. Every event name is also in camel case.

before[eventName] (for example "beforeAcceptTask")
Called when a named action is triggered, but before the action body is run. You can abort the action that is provided with event body.

after[eventName]
Called after the action has stopped executing.

(information)

Info

The afterLogout event is not supported. Once the Worker has logged out, they will be returned to the Flex login screen.


Common use cases and examples

common-use-cases-and-examples page anchor

Add an Action after a Task is accepted

add-an-action-after-a-task-is-accepted page anchor

Raises a JavaScript alert after an Agent has clicked to accept any task.

flex.Actions.addListener("afterAcceptTask", (payload) => alert("Triggered after event AcceptTask"));

Ask for confirmation before accepting a Task

ask-for-confirmation-before-accepting-a-task page anchor

Generates a prompt before Task Acceptance; prevent that Action from running with an abort command if the user doesn't confirm.

1
flex.Actions.addListener("beforeAcceptTask", (payload, abortFunction) => {
2
alert("Triggered before event AcceptTask");
3
if (!window.confirm("Are you sure you want to accept the task?")) {
4
abortFunction();
5
}
6
});

Customizing an Existing Action

customizing-an-existing-action page anchor

Replaces the original Action for AcceptTask. Injects custom logic to alert about the replacement, but executes the original Action.

1
flex.Actions.replaceAction("AcceptTask", (payload, original) => {
2
return new Promise<void>((resolve, reject) => {
3
alert("I have replaced this Action");
4
resolve();
5
}).then(() => original(payload));
6
});
7

Registering a Custom Action

registering-a-custom-action page anchor

Registers a custom Action called MyAction, which makes a HTTP request. We then add a listener to the action CompleteTask which then invokes this custom Action. For example this could be used to update your CRM system.

1
flex.Actions.registerAction("MyAction", (payload) => {
2
return
3
fetch("https://my.server.backend.com/test")
4
.then(response => {
5
alert("Triggered MyAction with response " + JSON.stringify(response));
6
})
7
.catch(error => {
8
console.log(error);
9
throw error;
10
});
11
});
12
13
14
flex.Actions.addListener("afterCompleteTask", (payload) => {return flex.Actions.invokeAction("MyAction")});

Sending a message after a Task is completed

sending-a-message-after-a-task-is-completed page anchor

Sends a post-conversation message once the task is in a wrap-up state. Could be used to send a survey, or notify a user that the agent closed the session.

1
flex.Actions.replaceAction("WrapupTask", (payload, original) => {
2
// Only alter chat tasks:
3
if( payload.task.taskChannelUniqueName !== "chat" ) {
4
original(payload);
5
} else {
6
return new Promise(function(resolve, reject) {
7
// Send the message:
8
flex.Actions.invokeAction("SendMessage", {
9
body: 'Thanks for chatting. Your session is now closed.',
10
channelSid: payload.task.attributes.channelSid
11
}).then(response => {
12
// Wait until the message is sent to wrap-up the task:
13
resolve(original(payload));
14
});
15
16
});
17
18
}
19
20
});

Need some help?

Terms of service

Copyright © 2024 Twilio Inc.