Get a Blueprint Step
Headers
-
Content-Type
string -
Accept
string
Path parameters
-
automationBlueprint_uuid
string Required -
blueprintStep_uuid
string Required -
$automationBlueprint
string Required
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": "ddaee7c2-28b1-4566-adb8-21aea07328cf",
"updated": "2025-04-02T13:27:58+01:00",
"created_at": "2025-04-02T13:27:58+01:00",
"configuration": {
"params": {
"account_uuid": {
"type": "ref",
"value": "trigger.account.uuid"
}
}
},
"condition_state": false,
"parent_step_uuid": "3c9c7d2e-2ae4-42ca-ad89-7d9d06f6bb64"
}
]
}