get_campaign
Retrieve detailed information about a specific Uber advertising campaign using its unique identifier and ad account details.
Instructions
Get details for a specific 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"
}