Skip to main content

List Workflow Library Triggers

GET 

/workflow-library/triggers

This lists the workflow triggers available to you

Request

Query Parameters

    limit int32

    Possible values: <= 250

    Default value: 250

    Max number of results to return. See V3 API Standard Collection Parameters for more information.

    Example: 250
    offset int32

    Default value: 0

    Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.

    Example: 0
    filters string

    Filter results using the standard syntax described in V3 API Standard Collection Parameters

    Filtering is supported for the following fields and operators:

    id: eq

    Example: id eq "idn:identity-attributes-changed"

Responses

List of workflow triggers

Schema

  • Array [

  • id string

    Trigger ID. This is a static namespaced ID for the trigger.

    type string

    Possible values: [EVENT, SCHEDULED, EXTERNAL]

    Trigger type

    deprecated boolean
    deprecatedBy date-time
    isSimulationEnabled boolean
    outputSchema object

    Example output schema

    name string

    Trigger Name

    description string

    Trigger Description

    isDynamicSchema boolean

    Determines whether the dynamic output schema is returned in place of the action's output schema. The dynamic schema lists non-static properties, like properties of a workflow form where each form has different fields. These will be provided dynamically based on available form fields.

    inputExample objectnullable

    Example trigger payload if applicable

    formFields

    object[]

    nullable

    One or more inputs that the trigger accepts

  • Array [

  • description string

    Description of the form field

    helpText string

    Describes the form field in the UI

    label string

    A human readable name for this form field in the UI

    name string

    The name of the input attribute

    required boolean

    Denotes if this field is a required attribute

    type stringnullable

    Possible values: [text, textarea, boolean, email, url, number, json, checkbox, jsonpath, select, multiType, duration, toggle, formPicker, identityPicker, governanceGroupPicker, string, object, array, secret, keyValuePairs, emailPicker, advancedToggle, variableCreator, htmlEditor]

    The type of the form field

  • ]

  • ]

Loading...