Skip to main content

Endpoint

Authentication

This endpoint requires an OAuth access token. Send it as a bearer token:
Required scope: workflows:read

Query Parameters

Request Example

Response

Success Response

Status Code: 200 OK

Response Fields

Workflow Schema Fields

Error Responses

400 Bad Request

Returned when the access token has no user behind it. client_credentials tokens act as the admin who created the application, so this applies only to tokens issued before application creators were recorded.

401 Unauthorized

Returned when the access token is missing, unknown, revoked, or expired, or when an X-API-Key was sent instead of a bearer token. See OAuth error responses.

403 Forbidden

Returned when the token does not carry the required scope.

429 Too Many Requests

Returned when your organization exceeds its per-minute request limit.

500 Internal Server Error

Returned when the request fails due to a server error.

Notes

This endpoint returns only the workflows the access token’s user has permission on - not every workflow in the organization. Two users authorizing the same application can legitimately see different lists.
Use the workflow_id and version from this response to get the full workflow schema or initiate a workflow instance.
Set active_only=true to filter out deprecated or inactive workflows and only see workflows you can currently use.

Use Cases

This endpoint is useful for:
  • Workflow discovery - Show a user the workflows they can actually start
  • Dynamic integrations - Build applications that adapt to available workflows
  • User interfaces - Populate workflow selection dropdowns per user
  • Permission-aware automation - Avoid attempting workflows the user cannot request