Skip to main content
POST
/
campaign
/
outbound
/
stop
Python
import requests

url = "https://voip-middlware.superu.ai/campaign/outbound/stop"

payload = { "campaign_id": "f1e2d3c4-b5a6-7890-abcd-ef1234567890" }
headers = {
    "superU-Api-Key": "<api-key>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
{
  "name": "My Outbound Campaign",
  "active": true,
  "campaign": {
    "message": "Campaign stopped successfully"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.superu.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

superU-Api-Key
string
header
required

Your SuperU API key.

Body

application/json

Request body for stopping an outbound campaign.

campaign_id
string
required

UUID of the campaign to stop

Example:

"f1e2d3c4-b5a6-7890-abcd-ef1234567890"

Response

Campaign stopped successfully

name
string

Name of the campaign

active
boolean

Whether the campaign is active

campaign
object