Skip to main content

Get flows

Retrieve a list of available flows configured for your environment

Use this endpoint to retrieve all flows available in your environment. The response provides essential metadata for each flow.

Endpoint

GET v1/flows/{environment}

Path parameters

ParameterTypeRequiredDescription
environmentStringYesThe logical environments ( live or staging )

Request

No request body is required for this endpoint.

Headers

HeaderTypeRequiredDescription
AuthorizationstringYesBearer token for authentication

Response

Returns an array of flow objects with minimal metadata.

{
"content": [
{
"id": "0197c55f-5af6-7e3d-af9b-f2359b104be8",
"name": "Document-based IDV - Capture",
"description": "Verifies identity by capturing and checking official ID documents",
"version": 1,
"environment": "live"
},
{
"id": "0197c55f-5af6-7e6g-af9b-f2359b104be8",
"name": "Biometric authentication",
"description": "Identity verification using unique body features instead of passwords",
"version": 2,
"environment": "staging"
}
]
}

Response parameters

ParameterTypeDescription
contentarrayArray of flow objects
idstringUnique identifier for the flow
namestringConfigurable display name of the flow
descriptionstringConfigurable description of the flow's purpose
versionstringActive flow version
environmentstringActive flow environment

Notes

  • All flows published are returned in a single response