Notification

The AppSheet Help Center documentation can now be viewed in Japanese - AppSheet ヘルプセンターのドキュメントが日本語で表示できるようになりました。. Learn more

הדף שביקשתם לא זמין בשלב זה בשפה שלכם. אפשר לבחור בשפה אחרת בחלק התחתון של הדף. לחלופין, באמצעות תכונת התרגום המובנית של Google Chrome תוכלו לתרגם מיד כל דף אינטרנט אל שפה לבחירתכם.

Bots: The Essentials

Understand and manage bots as described in the following sections:

See also Monitor automation.

What is a bot?

A bot defines the automation you want AppSheet to run: 
when something happens (an eventperform a set of activities (each activity is a task and a set of tasks is a process).

bot that contains an event that calls a process, that consists of three tasks

Bots can perform a wide variety of functions. For example:

  • Create and send an email, SMS message, or notification regarding the modified record.
  • Further update the modified record.
  • Update the parent record of the modified record.
  • Add, update, or delete child records belonging to the modified record.
  • Call a webhook to invoke an external web service.
A subset of features, such as sending emails or triggering bots with schedule events using AppSheet automation, are not fully supported with a free plan. That is, you can configure these features, but they won't execute as expected. See Subscribe to a paid plan.

You can perform a wide variety of other functions because once the bot is triggered, it is capable of working on any table and doing almost anything. Once enabled, bots run in the background to listen for events or trigger processes on a schedule even when you are not directly using an app. To terminate the process automation, you can disable the bot.

For example, the Confirmed appointment bot is configured to trigger the User notification of confirmed appointment process anytime an Appointments record is updated to notify the user that their requested appointment has been confirmed. The bot continues to listen for the appointment update events and fire the associated process when the event occurs until it is disabled.

Confirmed appointment bot triggers user notification of confirmed appointment when an appointment is updated

Learn more about how bots are triggered and not triggered, and the relationship between the application version and bots.

How bots are triggered

Bots can be configured to trigger a process based on a data change event, according to a predetermined schedule, or based on a Google Workspace interaction.

Bots with data change events

Bots can be configured to trigger a process based on a data change event, such as:

  • Data is added, updated, or deleted through the app. For example, you can trigger a bot when:

    • A new row is added through the app.

    • An existing row is updated through the app. For example, the update may occur as the result of editing a row in a form view, or performing a quick edit, or invoking a client action through a user button click.

    • An existing row is deleted through the app.

  • A data change action is invoked on the AppSheet client.

  • An add, update, or delete operation is performed using the AppSheet API.

The data change event that triggers a bot can be any type of data change made through the app that arrives at the server. For example, you can add an extra table column whose only purpose is to trigger a bot. Then, you can create a client action button that updates the extra column's value. Clicking the action button triggers your bot.

After the app changes are synced to the server, AppSheet:

  1. Makes the appropriate changes to the spreadsheet or database.

  2. Ensures that any formulas in the spreadsheet are re-computed to use the latest data values.

  3. Determines whether your bot should be triggered.

To further restrict when a bot is triggered, you can specify the following:

  • Type of data changes that trigger the bot when configuring the event. For example, you could trigger a bot for the following data changes: 

    • All changes

    • Adds only

    • Adds and updates

    • Adds and deletes

    • Deletes only

    • Updates and deletes

    • Updates only

  • Condition that triggers the bot when configuring the event. For example, you could trigger a bot when:

    • A new row is added to the Inspections table, and the value in the InspectionPassed column is FALSE.

    • A row is updated in the Orders table, the value in the OrderAmount column is over $500, and the value in the DeliveryDate column is within 10 days of the current date.

  • Whether a bot can trigger other bots and, if so, whether to sync data changes only after this bot and all bots that it triggers complete their execution when creating a bot.

Note: In some cases, user access to table data is limited for security reasons as governed by security filters on the table. AppSheet provides the ability to enable a security bypass to allow access to the table data strictly for purposes of evaluating the condition to determine whether the bot should be run.

Bots with scheduled events

Bots can be configured to trigger a process based on a schedule. Just like a data change-triggered bot, a scheduled-triggered bot is capable of working on any table and performing a wide variety of functions. See also Events: The Essentials and  Understanding bot scheduling and retry.

Bots with events based Workspace interactions

Bots can be configured to trigger based on Workspace interactions, including:

  • Google Chat app interaction.
  • When a form from Google Forms is submitted. 

See also Events: The Essentials

How bots are not triggered

Bots are not triggered by:

  • Changes made directly to the spreadsheet or database
    Changes you make directly to the spreadsheet or database do not go through the AppSheet server, so they do not trigger AppSheet bots. For example, if you update a Google Sheet directly, Google Sheets does not notify the AppSheet server about the change. Since the AppSheet server is unaware of this change, it does not trigger any AppSheet bots.
     

    For Google Sheets only, you can enable external eventing to set up a bot that triggers a process when a data change happens in Google Sheets. For more information, see External eventing with Google Sheets.
  • Data change actions invoked by a bot unless the bot that makes the data changes has been explicitly configured to trigger other bots.
    Data change actions that are invoked by bots do not trigger other AppSheet bots. For example, if a client device performs an add, update, or delete that triggers a bot, and that bot invokes a data-change action, that data change action will not invoke any bots.

  • Changes made through another AppSheet application, even if that application is using the same underlying spreadsheet or database table
    This is true even if the two AppSheet apps share the same underlying spreadsheet or database table. For example, you might have a Payroll app and a separate Personnel app that share an Employees table. Bots defined in the Payroll app will only be triggered by adds, updates, or deletes to the Employees table that are performed through the Payroll app. Adds, updates, or deletes to the Employees table that are performed through the Personnel app will not trigger bots defined in the Payroll app. In short, bots only work within a single AppSheet app; they do not work across two or more apps, even if those apps share common underlying spreadsheet or database tables.

Application version and bots

Each time you change your application, AppSheet creates a new version of your application. These changes may include changes to your bots.

AppSheet includes the application version each time a user submits their adds, updates, or deletes to the server. This is essential because the user may be submitting changes based on an older version of your application.

When invoking bots, AppSheet invokes the version of the bots that match the user's version. This may result in invoking an older version of your bot. You can detect when this occurs by examining the audit history. The audit history includes the application version number.

After the user has submitted their changes, the AppSheet client performs a sync that retrieves the latest data and application version. Any future changes will be submitted using that application version.

Explore bot management

We've made some improvements to the app editor.
You are opted in to the new editor by default, but you can switch back to the legacy editor at any time.

This section explores how to manage bots using the new editor (preview) only. 

Go to Automation Automation icon  > Bots.

The Bots panel is displayed and the first bot in the list is opened in the editor.

Bot management

As highlighted in the previous figure, you manage bots by performing the following tasks:

Add a bot

To add a bot:

  1. Open the app in the app editor.

  2. Go to Automation Automation icon > Bots and click + in the top header of the Bots panel.

     We've made some improvements to the app editor.
    You are opted in to the new editor by default, but you can switch back to the legacy editor at any time.

    If you are using the legacy editor

    Go to Automation > Bots and click + New Bot.  

  3. Perform one of the following tasks:

    • Choose from the list of suggestions. AppSheet Automation is an intent-aware platform. The platform understands user intent and recommends configuration options that align with what you are trying to achieve. For example, selecting the following bot suggestion would create a fully configured bot:
      When employees record is updated, send an email

    • Create a custom bot. Click Create a new bot.

  4. Add and configure an event.
  5. Configure the process, including the steps and tasks.
  6. Optionally, do one or more of the following:
  7. Save the bot by selecting one of the following:
    • Save - Save the app.
    • Save & verify data - Save the app and verify that it is runnable based on external dependencies.

 Configure a bot

 To configure the bot to trigger other bots:

  1. Go to Automation Automation icon > Bots and select the bot you want to configure in the Bots panel.
    We've made some improvements to the app editor.
    You are opted in to the new editor by default, but you can switch back to the legacy editor at any time.
     

    If you are using the legacy editor

    Go to Automation > Bots and expand the bot for which you want to set an icon.

  2.  Expand the Options section.
  3. Configure the following advanced settings to control the behavior of your bot:

    Option Description
    Trigger other bots
    Enable this option to allow data change steps in this bot to execute other bots that are listening for the same data change events. Disable this option to prevent data change events triggered by the current bot from triggering other bots.
     
    For scheduled events, this setting is valid in the following scenarios:
    • If ForEachRowInTable is enabled and a data change step is included in the process.
    • If ForEachRowInTable is disabled and a Call a process step that includes a data change event is included in the process.

    If enabled, the following policies are enforced to avoid infinite event-trigger loops: 

    • An event that is a result of a data change made by the bot cannot subsequently trigger the same bot.

    • If two or more bots trigger one another continuously in succession, the maximum number of triggers that can be initiated between them is 5. For example:

      • Bot A triggers Bot B

      • Bot B triggers Bot A

      • Bot A triggers Bot B

      • Bot B triggers Bot A

      • Bot A triggers Bot B

    Wait for execution to complete
    Note: This option is available only if the Trigger other bots option is enabled.

    Enable this option to instruct the app to sync data changes only after this bot and all bots that it triggers complete their execution. Disable this option to instruct the app to sync data after this bot completes its execution, even if there are triggered bots still executing in the background.

  4.  Save the bot by selecting one of the following:

    • Save - Save the app.
    • Save & verify data - Save the app and verify that it is runnable based on external dependencies.

Set the icon for a bot

The bot icon can provide easy identification.

To set the icon for a bot:

  1. Go to Automation Automation icon > Bots and select the bot you want to configure in the Bots panel.
    We've made some improvements to the app editor.
    You are opted in to the new editor by default, but you can switch back to the legacy editor at any time.
     

    If you are using the legacy editor

    Go to Automation > Bots and expand the bot for which you want to set an icon.

  2.  Expand the Options section.
  3. Search for and select the desired icon in the Bot icon field.
  4.  Save the bot by selecting one of the following:

    • Save - Save the app.
    • Save & verify data - Save the app and verify that it is runnable based on external dependencies.

  

Rename a bot

To rename a bot:

  1. Go to Automation Automation icon > Bots and double-click the bot you want to rename in the Bots panel.
    We've made some improvements to the app editor.
    You are opted in to the new editor by default, but you can switch back to the legacy editor at any time.
     

    If you are using the legacy editor

    Go to Automation > Bots and expand the bot that you want to rename.

  2. Position your cursor over the bot you want to rename in the Bots navigation panel.
  3. Select More Three-dot menu vertical  > Rename in the bot header.
  4. Rename the bot.

Alternatively, you can double-click the name of the bot in the Bots panel and edit the name.

Add a comment to a bot

To add a comment to a bot:

  1. Go to Automation Automation icon > Bots and select the bot you want to rename in the Bots panel.
    We've made some improvements to the app editor.
    You are opted in to the new editor by default, but you can switch back to the legacy editor at any time.
     

    If you are using the legacy editor

    Go to Automation > Bots and expand the bot for which you want to set an icon.

  2. Expand the Documentation section.
  3. Enter a descriptive comment for the bot that will enable collaborators to easily understand its purpose.

Copy a bot

Copy the contents of a bot. A numeric value (such as 2) is appended to the bot and event names to ensure they are unique.

To copy a bot:

  1. Go to Automation  Automation icon > Bots.
  2. Select the bot you want to copy in the list.
  3. Select More Three-dot menu vertical  > Duplicate in the bot header.
 We've made some improvements to the app editor.
You are opted in to the new editor by default, but you can switch back to the legacy editor at any time.

If you are using the legacy editor

To copy a bot:

  1. Go to Automation > Bots.
  2. Expand the bot you want to copy.
  3. Click Copy in the bot heading.
 

 Monitor a bot

Use the AppSheet automation monitor to monitor automation in your apps and keep a track of the bot executions that were successful, encountered errors, and are still pending

To monitor a bot:

To copy a bot:

  1. Go to Automation  Automation icon > Bots.
  2. Select the bot you want to monitor in the list.
  3. Click Monitor in the bot header.
 We've made some improvements to the app editor.
You are opted in to the new editor by default, but you can switch back to the legacy editor at any time.

If you are using the legacy editor

To monitor a bot:

  1. Go to Automation > Bots.
  2. Expand the bot you want to monitor.
  3. Click Monitor in the bot heading.

Test a bot

Copy the contents of a bot. A numeric value (such as 2) is appended to the bot and event names to ensure they are unique.

To copy a bot:

  1. To add a comment to a bot:

  2. Go to Automation Automation icon > Bots and select the bot you want to test in the Bots panel.
    We've made some improvements to the app editor.
    You are opted in to the new editor by default, but you can switch back to the legacy editor at any time.
     

    If you are using the legacy editor

    Go to Automation > Bots and expand the bot you want to test.

  3. Select More Three-dot menu vertical  > Test in the bot header.

 Enable or disable a bot

You can disable the bot to temporarily stop the automation. Then, re-enable it. 

To enable or disable a bot:

  1. Go to Automation  Automation icon > Bots.
  2. Select the bot you want to enable or disable in the list.
  3. Select Enable or Disable in the bot header.
 We've made some improvements to the app editor.
You are opted in to the new editor by default, but you can switch back to the legacy editor at any time.

If you are using the legacy editor

To disable a bot:

  1. Go to Automation > Bots.
  2. Expand the bot you want to delete.
  3. Click Disable in the bot heading.

Delete a bot

Delete a bot to permanently remove it.

To delete a bot:

  1. Go to Automation  Automation icon > Bots.
  2. Select the bot you want to delete in the list.
  3. Select More Three-dot menu vertical  > Delete in the bot header.
 We've made some improvements to the app editor.
You are opted in to the new editor by default, but you can switch back to the legacy editor at any time.

If you are using the legacy editor

To delete a bot:

  1. Go to Automation > Bots.
  2. Expand the bot you want to delete.
  3. Click Delete in the bot heading.

Was this helpful?

How can we improve it?

Need more help?

Try these next steps:

Search
Clear search
Close search
Main menu
11676184878540601170
true
Search Help Center
true
true
true
false
false