Get a Blueprint Step
Headers
-
Content-Type string
-
Accept string
GET
/api/v1/automation-blueprints/{automationBlueprint_uuid}/blueprint-steps/{blueprintStep_uuid}
curl \
--request GET https://api.plannrcrm.com/api/v1/automation-blueprints/automationBlueprint_uuid/blueprint-steps/blueprintStep_uuid \
--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": "11d2a97d-cc13-44aa-bba8-7a05fea2abd6",
"updated": "2025-02-20T10:13:05+00:00",
"created_at": "2025-02-20T10:13:05+00:00",
"configuration": {
"params": {
"account_uuid": {
"type": "ref",
"value": "trigger.account.uuid"
}
}
},
"condition_state": false,
"parent_step_uuid": "60cd37b5-38f6-4798-a949-249c572a7d0b"
}
]
}