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

# Delete WhatsApp campaign

> Delete a WhatsApp campaign and its template mappings

Permanently deletes a WhatsApp campaign configuration.

### Path parameters

<ParamField path="id" type="string" required>
  The unique UUID of the WhatsApp campaign to delete.
</ParamField>

<CodeGroup>
  ```bash curl theme={null}
  curl -X DELETE https://api.agentic-os.com/api/v1/whatsapp/campaigns/55555555-5555-5555-5555-555555555555 \
    -H "Authorization: Bearer $AGENTIC_OS_API_KEY"
  ```

  ```python Python theme={null}
  import requests

  response = requests.delete(
      "https://api.agentic-os.com/api/v1/whatsapp/campaigns/55555555-5555-5555-5555-555555555555",
      headers={"Authorization": f"Bearer {API_KEY}"},
  )
  print(response.status_code)
  ```

  ```javascript Node theme={null}
  const response = await fetch(
    "https://api.agentic-os.com/api/v1/whatsapp/campaigns/55555555-5555-5555-5555-555555555555",
    {
      method: "DELETE",
      headers: { Authorization: `Bearer ${API_KEY}` },
    },
  );
  console.log(response.status);
  ```
</CodeGroup>

### Response

`204 No Content` on successful deletion.
