search_pages_by_name
Find Meta Ads pages by name within a specific account using a search term. Returns JSON with matching pages, simplifying page management and retrieval for advertising campaigns.
Instructions
Search for pages by name within an 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)
search_term: Search term to find pages by name (optional - returns all pages if not provided)
Returns:
JSON response with matching pages
Input Schema
Name | Required | Description | Default |
---|---|---|---|
access_token | No | ||
account_id | No | ||
search_term | No |
Input Schema (JSON Schema)
{
"properties": {
"access_token": {
"default": null,
"title": "Access Token",
"type": "string"
},
"account_id": {
"default": null,
"title": "Account Id",
"type": "string"
},
"search_term": {
"default": null,
"title": "Search Term",
"type": "string"
}
},
"title": "search_pages_by_nameArguments",
"type": "object"
}