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
| Parameter | Type | Required | Description |
|---|---|---|---|
environment | String | Yes | The logical environments ( live or staging ) |
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
page | number | No | Page number (1-based, default: 1) |
size | number | No | Number of items per page (default: 20, max: 100) |
Request
No request body is required for this endpoint.
Headers
| Header | Type | Required | Description |
|---|---|---|---|
Authorization | string | Yes | Bearer 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": "live"
}
],
"page": {
"size": 20,
"number": 1,
"totalElements": 25,
"totalPages": 2
}
}
Response parameters
| Parameter | Type | Description |
|---|---|---|
content | array | Array of flow objects |
content[].id | string | Unique identifier for the flow |
content[].name | string | Configurable display name of the flow |
content[].description | string | Configurable description of the flow's purpose |
content[].version | number | Active flow version (optional, may be absent if no active deployment) |
content[].environment | string | The environment in which the flow is deployed (e.g. live, staging) |
page | object | Pagination metadata |
page.size | number | Number of items per page |
page.number | number | Current page number (1-based) |
page.totalElements | number | Total number of flows across all pages |
page.totalPages | number | Total number of pages |
Notes
- Results are paginated. Use
pageandsizequery parameters to navigate through results