list_sellers
Retrieve a filtered list of sellers from Finix payment processing services using email search or limit results for efficient account management.
Instructions
This tool will fetch a list of Sellers from Finix.
It takes two arguments:
limit (int, optional): The number of sellers to return.
email (str, optional): A case-sensitive filter on the list based on the seller'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"
}