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

# Stop Campaign

> Stops a campaign and all associated calls.

### Headers

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

### Path Parameters

<ParamField path="campaign_id" type="string" required>
  The unique identifier for the campaign to be stopped.
</ParamField>

### Response

<ResponseField type="string" name="status">
  Status of the request.
</ResponseField>

<ResponseField type="string" name="message">
  Confirms the request was successful, or provides an error message if the request failed.
</ResponseField>

<ResponseField type="number" name="num_calls">
  Number of calls stopped in the campaign.
</ResponseField>

<ResponseField type="string" name="campaign_id">
  Confirms the ID of the campaign being stopped.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "status": "success",
    "message": "Successfully stopped campaign",
    "num_calls": 0,
    "campaign_id": "0a810190-c000-aaaa-bbbb-16a4630cc190"
  }
  ```
</ResponseExample>
