Ugrás a fő tartalomhoz

Ügynökök listája

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 példa

curl -X GET \
  'http://localhost:8000/api/v1/workflow/fetch' \
  -H 'Authorization: Bearer <API_KEY>'

Paraméterek

NévHelyTípusLeírás
statusqueryobjectFilter by status - can be single value (active/archived) or comma-separated (active,archived)
authorizationheaderobject
X-API-Keyheaderobject

Válaszok

200Successful Response
application/json
Séma megtekintése
{
  "type": "array",
  "items": {
    "$ref": "#/components/schemas/WorkflowListResponse"
  },
  "title": "Response Get Workflows Api V1 Workflow Fetch Get"
}
404Not found
422Validation Error
application/json
Séma megtekintése
{
  "$ref": "#/components/schemas/HTTPValidationError"
}