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

# Delete Pathway

> Delete your conversational pathway.

### Headers

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

### Path Parameters

<ParamField path="pathway_id" type="string" required={true}>
  The unique identifier of the conversational pathway you want to delete.
</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
  {
    "status": "success",
    "message": "Pathway deleted successfully"
  }

  ```
</ResponseExample>
