get_account_info
Retrieve detailed information about a Meta Ads account using an access token and account ID. Enables access to account-specific data for campaign analysis and management.
Instructions
Get detailed information about a specific ad account.
Args:
access_token: Meta API access token (optional - will use cached token if not provided)
account_id: Meta Ads account ID (format: act_XXXXXXXXX) - REQUIRED
Input Schema
Name | Required | Description | Default |
---|---|---|---|
access_token | No | ||
account_id | No |
Input Schema (JSON Schema)
{
"properties": {
"access_token": {
"default": null,
"title": "Access Token",
"type": "string"
},
"account_id": {
"default": null,
"title": "Account Id",
"type": "string"
}
},
"title": "get_account_infoArguments",
"type": "object"
}