This endpoint retrieves a list of flows configured in the system. A flow represents a structured process associated with a specific item type. The response includes general flow information (such as ID, name, status, start type, and icon), the related item type, the user who created the flow, and the stages that define the process structure.
curl --location --request GET 'https://api-develop.enspace.io/c-type-flows?__relations=user,item_type,stages' \
--header 'x-api-key: <api-key>' \
--header 'en-workspace: <api-key>'[
{
"id": 0,
"name": "string",
"status": "string",
"item_type": {
"name": "string",
"slug": "string",
"description": "string",
"icon": "string",
"color": "string",
"settings": {
"property1": "string",
"property2": "string"
}
},
"start_type": "always",
"icon": "string",
"user": {
"id": 0,
"created_at": "string",
"email": "string",
"meta": {
"fname": "string",
"lname": "string"
}
},
"created_at": "2019-08-24T14:15:22.123Z",
"updated_at": "2019-08-24T14:15:22.123Z"
}
]