Reach: Automations
List automation steps
Get the workflow of an automation as a flat list of steps.
The steps form a tree rather than a straight line: follow parent_uuid to reconstruct the branches, and use step_order to order the steps that share a parent. An automation with no steps yet returns an empty list.
get/api/reach/v1/profiles/{profileUuid}/automations/{automationUuid}/steps
Path parameters
profileUuidstring required
Example:550e8400-e09b-41d4-a716-400055000000
Profile uuid parameter
automationUuidstring required
Example:550e8400-e09b-41d4-a716-400055000000
Automation uuid parameter
Response
Success response
Example response
[
{
"uuid": "550e8400-e29b-41d4-a716-446655440000",
"parent_uuid": "2080cc86-e026-4f7b-9598-d4132f8c7c2f",
"step_order": 1,
"type": "action",
"value": "send_email"
}
]