delete_campaign
Remove an Uber advertising campaign by providing the ad account ID and campaign ID to permanently delete it from the Uber External Ads API.
Instructions
Delete a campaign
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ad_account_id | Yes | The ad account UUID | |
auth_token | No | Bearer token for authentication | |
campaign_id | Yes | The campaign UUID |
Input Schema (JSON Schema)
{
"properties": {
"ad_account_id": {
"description": "The ad account UUID",
"type": "string"
},
"auth_token": {
"description": "Bearer token for authentication",
"type": "string"
},
"campaign_id": {
"description": "The campaign UUID",
"type": "string"
}
},
"required": [
"ad_account_id",
"campaign_id"
],
"type": "object"
}