Endpoints for managing Workflows.
This endpoint allows you to list workflows that you have access to edit.
Name | Type | Description |
---|---|---|
before |
string | A pagination cursor for entries before a specific point in the collection. |
after |
string | A pagination cursor for entries after a specific point in the collection. |
limit |
integer | The maximum number of entries to retrieve (defaults to 20, up to 100 allowed). |
When successful, returns a Paginated List of Workflow resources.
{
"entries": [
// items
],
"metadata": {
"before": null,
"after": "g3QAAAABZAACaWRiAAAbFA==",
"limit": 20
}
}
This endpoint allows you to list rules for a workflow.
None.
When successful, returns a list of Workflow Rule resources.
[
{
"id": "wrule_01ED74HMFGVZ92YVCWTD8Y8H6X",
"trigger_type": "event_started",
"trigger_offset_amount": 10,
"trigger_offset_unit": "minutes",
"trigger_offset_direction": "before",
"created_at": "2021-01-01T10:00:00Z",
"actions": [{
"id": "waction_01ED74HMFGVZ92YVCWTD8Y8H6X",
"type": "trigger_automation",
"properties": {
"provider": "zapier",
"description": "Post in Slack"
},
"created_at": "2021-01-01T10:00:00Z"
}]
}
]