Retrieves the details of a specific flow by its identifier. A flow represents a structured process associated with an item type.
The response includes the flow metadata such as name, status, start configuration, icon, associated item type, and the user who created it. It also returns the stages that compose the flow, including their configuration and related information.
curl --location --request GET 'https://api-develop.enspace.io/c-type-flows/1' \
--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"
}