list_buyers
Retrieve a filtered list of buyers from Finix payment processing services using email search or limit results for efficient buyer management.
Instructions
This tool will fetch a list of Buyers from Finix.
It takes two arguments:
limit (int, optional): The number of buyers to return.
email (str, optional): A case-sensitive filter on the list based on the buyer's email field.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
No | |||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"type": "string"
},
"limit": {
"maximum": 100,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
}