Templates

Retrieve all flow templates

get

This will only return Flow Templates that are either directly associated with the user, or that are associated with a tenant that the user is also a member of. Requires the 'flowTemplates.read' permissions.

Query parameters
page[size]integerOptional

Number of flow templates per page returned. Default is 10.

page[number]integerOptional

Number of the page to be returned. Default is 1.

filter[status]integerOptional

Filter results by flow status. Published = 1. Draft = 0

filter[user]stringOptional

Filter by user. Works for admin or users with same tenant.

sortstringOptional

Sort the result by one property. Supported: createdAt, updatedAt and name. Prefix field name with - for reversed sort order (DESC) i.e. sort=-updatedAt. Default sorting is by id ASC

searchstringOptional

Search flows by a word or a phrase contained in the template description OR in the template name (case-insensitive). Behavior is similar to operator LIKE in SQL but case insensitive.

tagsstringOptional

Returns templates that have any of the supplied tags. Pass as comma-separated values. Untagged templates are always returned.

Example: premium,dev
Responses
chevron-right
200

A list of flow templates.

application/json
get
/templates
200

A list of flow templates.

Find Flow Template by ID

get

Returns a single Flow Template by its ID, if the user is authorized to see it. This requires the 'flowTemplates.read' permission

Path parameters
idstring · stringRequired

ID of flow template to return

Responses
chevron-right
200

Returns the flow template

application/json
get
/templates/{id}

Last updated