An action flow is a user-defined automated workflow. Each action flow consists of an action flow trigger, which initiates the flow, and one or more actions.
You can use pre-defined action flow triggers, or admins can define custom action flow triggers. This article describes how to create a custom action flow trigger to listen for an HTTP request from a specific external system.
After creating an action flow trigger, you can use it in any action flow. See Creating action flows.
Creating a custom action flow trigger
Action flow triggers are created and managed within the action builder.
- In Admin Center, click
Apps and integrations in the sidebar, then select Actions > Action flows.
- Create or edit an action flow.
- Click + Add trigger.
- In the step sidebar, under Custom triggers, click Create trigger.
- Enter a unique and identifiable Name for the action flow trigger.
Maximum length is 255 characters.
- (Optional) Enter a Sample payload of the HTTP request you expect the
trigger to receive.
This should be a POST request with a valid JSON body. The payload can't exceed 200KB.
The sample payload must include all of the properties, with the appropriate data type, you want to use later in an action flow that begins with this trigger.
- Click Next.
- If you provide a sample payload, map the data by clicking Add next
each key-value pair you intend to capture as outputs in your action flow,
and then clicking Next.
If necessary, you can use the options menu to edit the name and type of a key-value pair or remove it from the trigger. The output names must be unique within the trigger and can't exceed 255 characters.
The following data types are supported as outputs from custom triggers:- Text
- Number
- Decimal
- True/false
- Date (
YYYY-MM-DD
) - Date and time (
YYYY-MM-DDTHH:MM:SS[.sss]Z
orYYYY-MM-DDTHH:MM:SS[.sss]+/-hh:mm
) - Arrays and objects are converted to strings.
- Use the custom Webhook URL that is generated for the trigger to
configure a webhook in an external system that will send requests to the
custom trigger to initiate an action flow.
Additionally, if you have the option, configure the external system's retry strategy to use exponential backoff with jitter for three retries at 20 seconds, 120 seconds, and 300 seconds after a rate-limited request.
Note:- Treat the custom action flow trigger's webhook URL as a secret and do not share it.
- Your account's IP restrictions are enforced for the webhook URL.
- Add the custom action flow trigger to an action flow. See Creating action flows.
Using outputs from custom action flow triggers
-
Text outputs:
- Any number, decimal, true/false, date, or datetime value is converted to text.
- If the key is missing from the request body, it is represented as null.
-
Number outputs:
- Decimal values are rounded to the nearest whole number, whith .5 values rounding up.
- For true/false values, true is converted to 1 and false to 0.
- A string representing a number is converted to an integer.
- A string representing a decimal is rounded to the nearest integer.
- All other strings are converted to nil.
- If the key is missing from the request body, it is represented as nil.
-
Decimal outputs:
- Number values are passed through without modification.
- For true/false values, true is converted to 1 and false to 0.
- A string representing a number is converted to a decimal.
- A string representing a decimal is converted to a decimal.
- All other strings are converted to nil.
- If the key is missing from the request body, it is represented as nil.
-
True/false outputs:
- Null values are converted to false.
- Number and decimal values of zero (0, -0, 0.0, -0.0) are converted to false.
- Empty strings ("", "''", and "``") are converted to false.
- All other number, decimal, string, date, and datetime values are converted to true.
- If the key is missing from the request body, it is represented as nil.