Pixxel

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 workflows
idstring
Filter by specific workflow ID
namestring
Filter workflows by display name
created_bystring
Filter workflows by creator's user id
created_onstring
Filter workflows by creation date
updated_atstring
Filter workflows by last modification timestamp
offsetinteger
Offset for pagination
limitinteger
Limit for pagination
Response
application/json
OK
workflowsobject[]
Show child attributes
paginationobject
Show child attributes
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
}