get_account_pages
Retrieve Meta Ads account-associated pages using a Meta API access token and account ID. Returns a JSON response with page details for campaign management and analysis.
Instructions
Get pages associated with a Meta Ads 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)
Returns:
JSON response with pages associated with the account
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_pagesArguments",
"type": "object"
}