Workflow Definition APIs
You can manage workflow definitions with the following API.
Get Workflow Definitions
Use this API to get limited information about all workflow definitions.
HTTP Request
GET /api/v3/workflow_definitions?organizationId={organizationId}
Query Parameters
Key |
Required |
Description |
---|---|---|
organizationId |
yes | Supply your organization's internal identifier. (It's the 123 in this example: https://lab.ovation.io/orgs/123/dashboard.) |
Response Body
{ "workflow_definitions": [{ "id": 1234, "name": "Some Name" }, { "id": 5678, "name": "Another Name" }] }
Field name | Description |
workflow_definitions[].id |
The internal identifier of the workflow definition (do not use) |
workflow_definitions[].name |
The workflow definition's name |