Monego
list_customers
List or search the account's customers (invoice recipients). Pass `search` for a case-insensitive name match, or `email` for an exact email lookup — always search before creating a customer to avoid duplicates. Response: { customers[] { id, name, email, phone, vatId, leitwegId, buyerReference, street, city, postalCode, country, language, preferredInvoiceFormat, notes }, count }. An empty customers[] is a valid result, not an error. Errors: { error: { code: 'bad_input', field, message } }.
Remote Account required revuo:monego
Remote (network-hosted) · Requires an account with the vendor · OAuth
Other tools also called list_customers?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"search": {
"description": "Case-insensitive substring match on the customer name. Omit to list all.",
"type": [
"string",
"null"
],
"default": null
},
"email": {
"description": "Exact email address lookup. Takes precedence over `search` when both are given.",
"type": [
"string",
"null"
],
"default": null
},
"limit": {
"description": "Maximum number of customers to return (1-100, default 50). Name search is capped at 20 by the underlying index.",
"type": "integer",
"default": 50
}
}
}