Get ABM Account Lists
get_abm_account_listsGet account lists from the Metadata ABM Lists library. Retrieves uploaded CSV account lists, website retargeting lists, and their metadata.
WHEN TO USE:
- List all available account lists with pagination and filtering
- Search for specific account lists by filename
- Review account list details including status, type, and account counts
- Find lists by type (CSV, WEBSITE_RETARGETING, etc.)
- Check list readiness and report status
PARAMETERS:
- filename: Filter by filename (partial matching)
- page: Page number (default: 0)
- size: Results per page (default: 100, max: 100)
- sort: Sort criteria (default: "createdDate,desc")
- status: Filter by status (READY, PROCESSING, etc.)
- type: Filter by type (CSV, WEBSITE_RETARGETING, etc.)
RESPONSE INCLUDES:
- List metadata (id, name, filename, status, type)
- Account counts and audience associations
- Creation dates and file hashes
- Native targeting status
- Account report status
EXAMPLES:
- get_abm_account_lists() - Get all account lists
- get_abm_account_lists(filename="test_acl.csv") - Find specific list
- get_abm_account_lists(type="CSV") - Get only CSV lists
- get_abm_account_lists(status="READY") - Get ready listsInput Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for pagination (0-based) | |
| size | No | Number of results per page | |
| sort | No | Sort criteria (e.g., 'createdDate,desc', 'name,asc', 'accountsCount,desc') | createdDate,desc |
| type | No | Filter by list type (e.g., CSV, WEBSITE_RETARGETING) | |
| status | No | Filter by status (e.g., READY, PROCESSING, ERROR) | |
| filename | No | Filter by account list filename (supports partial matching) |