qbo_list_customers
Retrieve customer data from QuickBooks Online with filtering options for name, status, and pagination. Returns contact details, balances, and activity status in structured formats.
Instructions
List all customers from QuickBooks Online.
Returns customer details including name, email, phone, balance, and status.
Args:
limit (number): Maximum results (default: 100, max: 1000)
offset (number): Skip results for pagination
active_only (boolean): Only active customers (default: true)
search (string): Filter by name/company
response_format: 'markdown' or 'json'
Returns: List of customers with: Id, DisplayName, PrimaryEmailAddr, PrimaryPhone, Balance, Active
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum results to return | |
| offset | No | Number of results to skip | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for structured data | markdown |
| active_only | No | Only return active customers | |
| search | No | Search term to filter by name or company |