Get a Blueprint Step

GET /api/v1/automation-blueprints/{automationBlueprint_uuid}/blueprint-steps/{blueprintStep_uuid}

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
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": "e573bce0-0c23-4db2-aade-b01ba05c66d7",
      "updated": "2025-06-13T16:58:59+01:00",
      "created_at": "2025-06-13T16:58:59+01:00",
      "configuration": {
        "params": {
          "account_uuid": {
            "type": "ref",
            "value": "trigger.account.uuid"
          }
        }
      },
      "condition_state": false,
      "parent_step_uuid": "bf7e0e16-0707-4825-aa67-c69a861a5d55"
    }
  ]
}