Skip to main content

List Agents

GET/api/v1/workflow/fetch

Get 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

NameLocationTypeDescription
statusqueryobjectFilter by status - can be single value (active/archived) or comma-separated (active,archived)
authorizationheaderobject
X-API-Keyheaderobject

Responses

200Successful Response
application/json
View schema
{
  "type": "array",
  "items": {
    "$ref": "#/components/schemas/WorkflowListResponse"
  },
  "title": "Response Get Workflows Api V1 Workflow Fetch Get"
}
404Not found
422Validation Error
application/json
View schema
{
  "properties": {
    "detail": {
      "items": {
        "$ref": "#/components/schemas/ValidationError"
      },
      "type": "array",
      "title": "Detail"
    }
  },
  "type": "object",
  "title": "HTTPValidationError"
}