GET
/
v0
/
workflows
List workflows
curl --request GET \
  --url https://api.pixxel.space/v0/workflows \
  --header 'Authorization: <api-key>'
{
  "workflows": [
    {
      "id": "<string>",
      "project_id": "<string>",
      "legacy_project_id": "<string>",
      "name": "<string>",
      "created_by": "<string>",
      "description": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Query Parameters

project_id
string
required

Unique identifier for the project containing the workflows

id
string

Filter by specific workflow ID

name
string

Filter workflows by display name

created_by
string

Filter workflows by creator's user id

created_on
string

Filter workflows by creation date

updated_at
string

Filter workflows by last modification timestamp

Response

200
application/json

OK

The response is of type object.