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 \
 -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": "aea0c364-a27a-4c8b-878c-72a7c24e08c2",
      "updated": "2024-10-16T11:10:16+01:00",
      "created_at": "2024-10-16T11:10:16+01:00",
      "configuration": {
        "params": {
          "account_uuid": {
            "type": "ref",
            "value": "trigger.account.uuid"
          }
        }
      },
      "condition_state": false,
      "parent_step_uuid": "2b18f14a-0043-4366-887e-f054b75b8348"
    }
  ]
}