Workflow Events API
GET/api/workflow/registry/actions
Product availabilityAlgaPSA

List workflow registry actions

Lists every action registered in the workflow runtime — the building blocks workflow definitions can invoke — including JSON Schemas for each action's input and output. Returns a bare array (no envelope).

RBAC · workflow

Response body

Success response 200

itemsobject
idstringRequired
Stable action identifier (e.g. "ticket.create").
versionintegerRequired
Action version.
sideEffectfulbooleanRequired
Whether executing the action mutates external state.
retryHintobjectRequiredNullable
Suggested retry policy, or null.
idempotencyobjectRequired
Idempotency configuration for the action.
uiobjectRequired
Designer UI metadata (label, group, icon, etc.).
inputSchemaobjectRequired
outputSchemaobjectRequired
examplesarray of objectRequiredNullable
Example invocations, or null.
itemsobject

Response codes

200
Registered actions.
400
Invalid request.
401
API key missing/invalid.
403
Caller lacks the required permission.
500
Unexpected error.