Skip to main content
DELETE
/
api
/
v1
/
campaigns
/
{uuid}
Delete a campaign
curl --request DELETE \
  --url https://{subdomain}.mindhunters.ai/api/v1/campaigns/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Campaign deleted successfully",
  "data": [
    "<any>"
  ]
}

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uuid
string<uuid>
required

UUID of the campaign to delete

Response

Success

success
boolean
Example:

true

message
string
Example:

"Campaign deleted successfully"

data
any[]