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

# Stop Campaign

> Stops a campaign and all associated calls.

### Headers

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

### Path Parameters

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

### Response

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

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

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

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

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