> ## 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.

# Move Pathway

> Moves a pathway to a different folder or to the root level.

### Headers

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

### Body Parameters

<ParamField body="pathway_id" type="string" required>
  The ID of the pathway to move.
</ParamField>

<ParamField body="folder_id" type="string">
  The ID of the destination folder. If null, the pathway will be moved to the root level.
</ParamField>

### Response

<ResponseField name="pathway_id" type="string">
  The ID of the moved pathway.
</ResponseField>

<ResponseField name="old_folder_id" type="string">
  The ID of the original folder.
</ResponseField>

<ResponseField name="new_folder_id" type="string">
  The ID of the new folder, or null if moved to root level.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "pathway_id": "pathway_123",
    "old_folder_id": "old_folder_456",
    "new_folder_id": "new_folder_789"
  }
  ```
</ResponseExample>

```
---

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