IFS Cloud
This page will describe the nuances of configuring different parts of IFS Cloud to execute Automations within your Flow Connect environment. This guide will provide an example for:
Custom Event Actions (REST)
Work Flows
IFS Custom Event Action
To execute an automation, you must adhere to some specific requirements within IFS's Event Action screen.
The REST Endpoint must contain the Automation HTTP endpoint provided within the Automation configuration screen.
The Method should be "POST"
The Sender must be a configured REST Sender in IFS. (Default shown)
The Body must contain a JSON structure of any values you wish to send to your Automation. (Example provided below)
The Authentication must be "None".
Additional headers must be provided and are mandatory for Automations to execute:
x-api-key:
<AutomationAccessKey>
Accept:
*/*
The IFS Additional Header parameter field accepts multiple headers separated by a comma.
You can now successfully trigger an automation directly from IFS Custom Events.
IFS Workflow Designer
To Execute an automation from an IFS Workflow you can simply define the required headers as follows:
Define the Authentication Type as "None"
Set The URL to an Automation webhook
Set the desired Method (POST)
Add the required headers:
x-api-key: Automation access key
Accept: Default is
*/*
orapplication/json
Content-Type:
application/json
orapplication/xml
depending on body format
Define any required Body, in this example, JSON format.
You can now successfully trigger an automation directly from IFS workflows.
Last updated
Was this helpful?