# App Events

App Events enable genies to act proactively by responding to triggers from external systems, such as Salesforce or Zoom, instead of waiting for a user to initiate a conversation. These events help embed genies directly into existing workflows and allow genies to anticipate user needs and offer assistance without being prompted.

App Events enable you to:

  • Automate complex tasks that are difficult to define in recipes.
  • Surface relevant tasks to users at the right time.
  • Reduce user burden by helping organize, manage, and complete tasks.
  • Increase genie effectiveness by giving it context earlier in the process.
Watch a quick video guide: Create an App Event in Agent Studio

For example, ITGenie receives a notification that a new request for NetSuite access was just approved for you by the IT team. ITGenie automatically processes this app event to determine if next steps are required.

App event exampleApp event example

# App Events conversations

App Events provides two modes. Continue Conversation mode lets users resume a conversation thread with a genie and New Conversation mode lets users start a fresh conversation with a genie.

# Continue conversation

Continue conversation enables users to receive the new event information in the same thread where they originally interacted with the genie to maintain full conversational context. You must map the Conversation ID to a Data table with a skill recipe that then passes the Conversation ID back to the genie to use this mode.

Use Continue conversation when:

  • The event updates an item a user initiated through the genie, such as a ticket they created or a request they submitted.
  • A user expects to receive updates in the same conversation window or thread where they started the interaction.
  • Conversational context from the original session is relevant to how the user responds to the update.

# Continue conversation with Conversation ID mapping

1
Create a Data table to store conversation IDs.
# Create a Data table to store conversation IDs

This step creates a Data table to persist the genie's conversation ID against the third-party app identifier, such as a Jira ticket ID or a Telegram message ID. This allows the genie to retain context across multiple messages related to the event.

1

Go to the project where you plan to store your data table and click Create > Data table.

2

Enter a name for your Data table in the Name field.

3

Use the Save in drop-down menu to select a location for your Data table.

4

Click Create Data table.

5

Add a column with a label to store the external business ID. For example: telegram-id

6

Add a second column with the label genie-conversation-id to store the genie's conversation ID.

Add columns to your data tableAdd columns to your data table

7

Add a third column with the label email for the requester's email address.

8

Add a fourth column with the label Created at for the timestamp of the beginning of the conversation.

9

Click Save.

2
Add the Conversation ID to the recipe.
# Add the Conversation ID to the recipe

This step adds a Workato Data tables Search records action that allows the recipe to refer to the Data table to determine if the external business ID, such as Telegram or Jira has a corresponding Conversation ID in the data table. An existing Conversation ID indicates that there's a previous conversation which the genie can refer to.

1

Return to the recipe editor and click + Add step.

2

Select Action in app, search for Workato Data Tables, and select it as your app.

3

Select the Search records action.

Select the Search records actionSelect the Search records action

4

Use the Data table drop-down menu to select your newly created data table.

5

Go to the Filter section and click Add filter.

6

Use the Column name drop-down menu to select external business ID you configured in the preceding steps.

7

Use the Operand drop-down menu to select equals.

8

Map the ID Step 1 datapill to the Value field.

9

Click + Add step in the recipe editor.

10

Select Action in app, search for Workato Data Tables, and select it as your app.

11

Select the Upsert record action.

12

Use the Data table drop-down menu to select the data table you created in the preceding steps.

13

Use the Primary key drop-down menu to select the ID you configured in the preceding steps.

14

Go to the Record fields section and map the ID Step 1 datapill to the ID field you created in the preceding steps.

15

Map the Workato Genie Conversation ID Step 3 datapill to the genie-conversation-id field.

16

Click Save.

NO MATCHING CONVERSATION ID FOUND

Workato recommends that you design your recipe to either fall back to New Conversation mode or log and skip if no matching Conversation ID is found.

# New conversation

New conversation starts a fresh genie conversation with a user receiving a new message in their chat interface with no prior context.

Use New conversation when:

  • The event doesn't have a prior genie conversation associated with it.
  • A user needs to be informed of an event that happened entirely outside of any prior interaction.
  • The genie needs to initiate a new task with the user from scratch.

# Create an app event

Complete the following steps to create an app event for your genie:

1

Sign in to Workato.

2

Go to AI Hub and click the Genies tab. A list of your existing genies displays.

3

Select the genie where you plan to add an app event.

4

Go to App events and click + Add.

App eventsApp events

5

Click Create app event.

6

Enter a name for your app event in the Name field.

7

Click Start building. The recipe editor opens with the Send app event to genie action automatically selected.

Send app event actionSend app event to genie action in the recipe editor

8

Click the Send app event to genie action.

9

Ensure that the correct genie is selected in the Genie field.

Send app event to genie action setupSend app event to genie action setup

10

Enter the email of the user who should receive notification in the User email field.

USER ACCESS

The user you select must be active and have assigned access to this genie.

11

Go to the Notification to user field and enter the notification you plan to send before the genie starts processing the event.

12

Go to the Business event data field and enter a prompt to tell the genie what it should do. For example:


Complete the following steps to process this lead:

- Search Salesforce for leads and then create or update the lead.
- Search Salesforce for matching accounts. Create or update the account and attach the lead.
- Research the company and lead on the internet.
- Provide a summary for the SDR by adding it to the lead in Salesforce.
- Prepare an agenda for the prospective call for the SDR.

13

Optional. Enter the conversation ID in the Conversation ID field if you plan to enable the genie to continue a previous conversation with the user.

14

Configure your trigger.

15

Test your recipe to ensure workflow compatibility with your genie.

16

Click Save.

# Best practices

Workato recommends the following best practices to ensure that genie workflows are tuned to meet your goals:

# Use Event streams for high-volume processing

Synchronous App Events are appropriate for most use cases where events arrive at a manageable rate and each event triggers a recipe that runs a Send App Event action directly.

Synchronous processing can create performance and cost risks for high-volume scenarios. You can decouple event intake from event processing using Event streams to improve performance.

1
Create an Event intake recipe.

Create an Event intake recipe in your project and name it using the following convention: Agentic | [Descriptive Name]. For example, Agentic | Jira Escalations. This recipe receives events from the external system rather than calling Send App Event directly.

2
Replace the Send App Event action with a Publish to Event Stream action.

This enables the recipe to receive events from the external system and publish each event to the Event streams topic without waiting for the event to be processed.

The Event streams topic stores published events in a persistent queue until consumed. Events queue in the topic rather than being lost if the processing recipe is slow or temporarily unavailable.

3
Create an Event processing subscriber recipe.

Create a second recipe in your project. Set the trigger to New event in Event stream and select the topic. This recipe subscribes to the Event streams topic in the first recipe, reads each event from the queue, and calls Send App Event with the appropriate genie and user.


Last updated: 3/25/2026, 7:23:28 PM