Get all Blueprint Steps on an automation blueprint

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

Query parameters

  • include string

    included relations

  • 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).

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data array[object]

      Additional properties are allowed.

GET /api/v1/automation-blueprints/{automationBlueprint_uuid}/blueprint-steps
curl \
 -X GET https://api.plannrcrm.com/api/v1/automation-blueprints/automationBlueprint_uuid/blueprint-steps \
 -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": "bf5a94a2-d352-4060-ac8f-82323da4bc09",
      "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": "276fecef-fcc8-406c-ac28-4d68c040a8d4"
    }
  ]
}