Get a workflow

GET /api/v1/workflow/{uuid}

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • uuid string

      UUID of the account

    • The timestamp of when the resource was created.

    • The timestamp of when the resource was updated.

    • name string

      Name of the workflow

    • type string

      The type of workflow.

    • The number of tasks on the workflow.

GET /api/v1/workflow/{uuid}
curl \
 -X GET https://api.plannrcrm.com/api/v1/workflow/uuid \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json"
Response examples (200)
{
  "name": "Pension Transfer",
  "type": "simple",
  "uuid": "41f99541-a5a5-42de-9022-053a32c85ee9",
  "created_at": "2024-11-20T13:24:01+00:00",
  "updated_at": "2024-11-20T13:24:01+00:00",
  "tasks_count": 5
}