get_campaigns
Retrieve advertising campaigns for a specific Uber ad account, with options to filter by status, limit results, and paginate through large datasets.
Instructions
Get campaigns for an ad account
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ad_account_id | Yes | The ad account UUID | |
auth_token | No | Bearer token for authentication | |
filters | No |
Input Schema (JSON Schema)
{
"properties": {
"ad_account_id": {
"description": "The ad account UUID",
"type": "string"
},
"auth_token": {
"description": "Bearer token for authentication",
"type": "string"
},
"filters": {
"additionalProperties": false,
"properties": {
"limit": {
"default": 20,
"description": "Number of campaigns to return",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"offset": {
"default": 0,
"description": "Number of campaigns to skip",
"minimum": 0,
"type": "number"
},
"status": {
"description": "Filter campaigns by status",
"enum": [
"ACTIVE",
"PAUSED",
"DELETED"
],
"type": "string"
}
},
"type": "object"
}
},
"required": [
"ad_account_id"
],
"type": "object"
}