Flows

Retrieves a paginated list of flows for the specified project.

get

Retrieves a paginated list of flows for the specified project, optionally filtered and sorted.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
projectIdentifierstringRequired
Query parameters
flattenbooleanOptional

Whether to flatten the flow structure.

parentObjectIdentifierstring · uuidOptional

Optional parent object identifier.

pageNumberinteger · int32Optional

The page number to retrieve.

pageSizeinteger · int32Optional

The number of items per page.

searchTextstringOptional

Optional search text to filter flows.

sortinginteger · enumOptional

The sorting option for the results.

Possible values:
descbooleanOptional

Whether to sort in descending order.

Default: true
Responses
chevron-right
200

OK

get
/projects/{projectIdentifier}/flows

Creates a new flow for the specified project.

post

Creates a new flow for the specified project.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
projectIdentifierstringRequired
Body
namestring · nullableRequired
descriptionstring · nullableRequired
allDocumentsbooleanRequired
documentObjectIdentifiersstring · uuid[] · nullableOptional
parentObjectIdentifierstring · uuid · nullableOptional
playbookIdentifierstring · uuid · nullableOptional
Responses
chevron-right
200

OK

post
/projects/{projectIdentifier}/flows

Creates a new folder in the flow directory.

post

Creates a new folder in the flow directory.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
projectIdentifierstringRequired
Body
namestring · nullableRequired
parentObjectIdentifierstring · uuid · nullableOptional
Responses
chevron-right
200

OK

post
/projects/{projectIdentifier}/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 unique identifier of the flow to stop.

projectIdentifierstringRequired
Responses
patch
/projects/{projectIdentifier}/flows/{flowObjectIdentifier}/stop

No content

Retrieves a flow by its object identifier.

get

Retrieves a flow by its object identifier.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
objectIdentifierstring · uuidRequired

The unique identifier of the flow.

projectIdentifierstringRequired
Responses
chevron-right
200

OK

get
/projects/{projectIdentifier}/flows/{objectIdentifier}

Updates a flow by its object identifier.

put

Updates a flow by its object identifier.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
objectIdentifierstring · uuidRequired

The unique identifier of the flow to update.

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

OK

put
/projects/{projectIdentifier}/flows/{objectIdentifier}

Deletes a flow by its object identifier.

delete

Deletes a flow by its object identifier.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
objectIdentifierstring · uuidRequired

The unique identifier of the flow to delete.

projectIdentifierstringRequired
Responses
delete
/projects/{projectIdentifier}/flows/{objectIdentifier}

No content

Retrieves the progress of a flow.

get

Get the progress of a flow, calculated by number of filter answers in relation to filters and documents.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
objectIdentifierstring · uuidRequired

The unique identifier of the flow.

projectIdentifierstringRequired
Responses
chevron-right
200

OK

get
/projects/{projectIdentifier}/flows/{objectIdentifier}/progress

Last updated