Permanently delete a campaign and all its associated rows. This action is irreversible. In-progress calls will not be affected, but no new calls will be placed.
Parameters
id: str
Returns
Delete a campaign
import os
from revox import Revox
client = Revox(
api_key=os.environ.get("REVOX_API_KEY"), # This is the default and can be omitted
)
campaign = client.campaigns.delete(
"id",
)
print(campaign.success){
"success": true
}Returns Examples
{
"success": true
}