Get all Blueprint Steps on an automation blueprint
Headers
-
Content-Type
string -
Accept
string
Path parameters
-
automationBlueprint_uuid
string Required
Query parameters
-
include
string included relations
-
filter[uuid]
string Filter by a comma separated list of UUIDs.
-
sort
string Field to sort by. Valid fields are [created_at, name]. Negative sign to denote DESC. Defaults to 'created_at'.
-
per_page
integer the amount of audits per page (Default 15. Max 500).
GET
/api/v1/automation-blueprints/{automationBlueprint_uuid}/blueprint-steps
curl \
--request GET 'https://api.plannrcrm.com/api/v1/automation-blueprints/automationBlueprint_uuid/blueprint-steps' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
Response examples (200)
{
"data": [
{
"name": "create a new client",
"type": "client.create",
"uuid": "596f62ef-f1c7-46fe-a430-e307560c3e96",
"updated": "2025-04-22T13:44:20+01:00",
"created_at": "2025-04-22T13:44:20+01:00",
"configuration": {
"params": {
"account_uuid": {
"type": "ref",
"value": "trigger.account.uuid"
}
}
},
"condition_state": false,
"parent_step_uuid": "b382c7cf-ecb7-4fd2-86a5-5ddd355d1630"
}
]
}