Skip to main content
GET
/
v2
/
workflows
List Workflows
curl --request GET \
  --url https://public.api.serval.com/v2/workflows \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "teamId": "<string>",
      "name": "<string>",
      "description": "<string>",
      "type": "WORKFLOW_TYPE_UNSPECIFIED",
      "executionScope": "WORKFLOW_EXECUTION_SCOPE_UNSPECIFIED",
      "requireFormConfirmation": true,
      "isTemporary": true,
      "content": "<string>",
      "parameters": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

teamId
string

The ID of the team.

includeTemporary
boolean

Whether to include temporary workflows (optional, defaults to false).

Response

Success

data
Workflow · object[]

The list of workflows.

I