INPUT_OBJECT

AutomateFlowInput

Input fields used to create an automate flow. Name is required.

link GraphQL Schema definition

1input AutomateFlowInput {
4
2# Required Unique name for the new Automate Flow.
3name: String!
8
5# Optional application id for linked applications. This will be used to access
6# the default module pallete.
7linkedApplicationId: ID
16
9# Optional automate flow template id. Flow templates can be queried using the
10# flowTemplates call.
11# If left empty will be a blank flow. This must be an actual
12# template id such as '36' for 'Support Call Analytics Reporter'. An engineId will
13# not fail
14# but it will create a blank flow.
15templateId: ID
17}