List workflows
List workflows with pagination. Returns paginated results with limit (default: 50) and offset (default: 0) parameters. The response always includes pagination metadata with total count.
GET/v0/workflows
Authorisations
AuthorizationString
Query Parameters
project_idstring
Unique identifier for the project containing the workflowsidstring
Filter by specific workflow IDnamestring
Filter workflows by display namecreated_bystring
Filter workflows by creator's user idcreated_onstring
Filter workflows by creation dateupdated_atstring
Filter workflows by last modification timestampoffsetinteger
Offset for paginationlimitinteger
Limit for paginationResponse
OKapplication/json
workflowsobject[]
paginationobject
List workflows
1curl -X GET 'https://api.pixxel.space/v0/workflows' \2 -H 'Authorization: YOUR_API_KEY'
Response:
{"workflows": [{"id": "string","project_id": "string","legacy_project_id": "string","name": "string","created_by": "string","description": "string","created_at": "string","updated_at": "string"}],"pagination": null}