List Agents
GET
/api/v1/workflow/fetchGet all workflows for the authenticated user's organization. Returns a lightweight response with only essential fields for listing. Use GET /workflow/fetch/{workflow_id} to get full workflow details.
cURL example
curl -X GET \
'https://app.intracord.hu/api/v1/workflow/fetch' \
-H "X-API-Key: $INTRACORD_API_KEY"Parameters
| Name | Location | Type | Description |
|---|---|---|---|
status | query | object | Filter by status - can be single value (active/archived) or comma-separated (active,archived) |
authorization | header | object | — |
X-API-Key | header | object | — |
Responses
200Successful Responseapplication/jsonView schema
{
"type": "array",
"items": {
"$ref": "#/components/schemas/WorkflowListResponse"
},
"title": "Response Get Workflows Api V1 Workflow Fetch Get"
}404Not found422Validation Errorapplication/jsonView schema
{
"properties": {
"detail": {
"items": {
"$ref": "#/components/schemas/ValidationError"
},
"type": "array",
"title": "Detail"
}
},
"type": "object",
"title": "HTTPValidationError"
}