Flows

Gets all flows for the specified playbook.

get

Retrieves a paginated list of all flows for the specified playbook, with optional search and sorting.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
playbookIdentifierstringRequired
Query parameters
flattenbooleanOptional

Whether to flatten the flow tree.

parentObjectIdentifierstring · uuidOptional

Optional parent object identifier.

pageNumberinteger · int32Optional

The page number for paginated results.

pageSizeinteger · int32Optional

The number of items per page.

searchTextstringOptional

Optional search text to filter results.

sortinginteger · enumOptional

The sorting option for the results.

Possible values:
descbooleanOptional

Whether to sort in descending order.

Default: true
Responses
get
/playbooks/{playbookIdentifier}/flows

Creates a new flow for the specified playbook.

post

Creates a new flow for the specified playbook.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
playbookIdentifierstring · uuidRequired

The object identifier of the playbook.

Body
namestring · nullableRequired
descriptionstring · nullableRequired
allDocumentsbooleanRequired
documentObjectIdentifiersstring · uuid[] · nullableOptional
parentObjectIdentifierstring · uuid · nullableOptional
Responses
chevron-right
201

Created

post
/playbooks/{playbookIdentifier}/flows

Creates a new folder for flows.

post

Creates a new folder for flows.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
playbookIdentifierstringRequired
Body
namestring · nullableRequired
parentObjectIdentifierstring · uuid · nullableOptional
Responses
chevron-right
201

Created

post
/playbooks/{playbookIdentifier}/flows/folder

Stops a flow that is in progress.

patch

Stop a flow that is in progress.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
flowObjectIdentifierstring · uuidRequired

The object identifier of the flow to stop.

playbookIdentifierstringRequired
Responses
patch
/playbooks/{playbookIdentifier}/flows/{flowObjectIdentifier}/stop

No content

Gets the details of a specific flow by its object identifier.

get

Retrieves the details of a flow using its object identifier.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
objectIdentifierstring · uuidRequired

The object identifier of the flow.

playbookIdentifierstringRequired
Responses
get
/playbooks/{playbookIdentifier}/flows/{objectIdentifier}

Updates an existing flow by its object identifier.

put

Updates the details of an existing flow using its object identifier.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
objectIdentifierstring · uuidRequired

The object identifier of the flow to update.

playbookIdentifierstringRequired
Body
namestring · nullableRequired
descriptionstring · nullableRequired
allDocumentsbooleanRequired
documentObjectIdentifiersstring · uuid[] · nullableOptional
parentObjectIdentifierstring · uuid · nullableOptional
playbookIdentifierstring · uuid · nullableOptional
Responses
put
/playbooks/{playbookIdentifier}/flows/{objectIdentifier}

Deletes a flow by its object identifier.

delete

Deletes a flow using its object identifier.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
objectIdentifierstring · uuidRequired

The object identifier of the flow to delete.

playbookIdentifierstringRequired
Responses
delete
/playbooks/{playbookIdentifier}/flows/{objectIdentifier}

No content

Gets the progress of a flow by its object identifier.

get

Retrieves the progress of a flow using its object identifier.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
objectIdentifierstring · uuidRequired

The object identifier of the flow.

playbookIdentifierstringRequired
Responses
get
/playbooks/{playbookIdentifier}/flows/{objectIdentifier}/progress

Last updated