> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bland.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Pathway

> Create a new conversational pathway

### Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

### Body

<ParamField body="name" type="string" required>
  The name of the conversational pathway you want to create
</ParamField>

<ParamField body="description" type="string">
  A description of the conversational pathway you want to create
</ParamField>

### Response

<ResponseField name="status" type="string">
  Can be `success` or `error`.
</ResponseField>

<ResponseField name="pathway_id" type="string">
  A unique identifier for the pathway (present only if status is `success`).
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "status": "success",
    "pathway_id": "9d404c1b-6a23-4426-953a-a52c392ff8f1"
  }
  ```
</ResponseExample>

***

Docs for agents: [llms.txt](/llms.txt)
