Get a Blueprint Step
Headers
-
Content-Type string
-
Accept string
GET
/api/v1/automation-blueprints/{automationBlueprint_uuid}/blueprint-steps/{blueprintStep_uuid}
curl \
-X GET https://api.plannrcrm.com/api/v1/automation-blueprints/automationBlueprint_uuid/blueprint-steps/blueprintStep_uuid \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json"
Response examples (200)
{
"data": [
{
"name": "create a new client",
"type": "client.create",
"uuid": "8645b57d-14ec-4cf9-9fef-0718d8065aeb",
"updated": "2025-01-17T11:18:32+00:00",
"created_at": "2025-01-17T11:18:32+00:00",
"configuration": {
"params": {
"account_uuid": {
"type": "ref",
"value": "trigger.account.uuid"
}
}
},
"condition_state": false,
"parent_step_uuid": "e27ec4ad-daba-4db1-8f84-b99caf241590"
}
]
}