search-payees
Find payees by name, contact details, account info, or crypto data using partial, case-insensitive matches. Simplify payee lookup with flexible search criteria.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountNumber | No | The US Bank account number to search for | |
agentReference | No | The Payman agent reference (id or handle) to search for | |
contactEmail | No | The contact email to search for | |
contactPhoneNumber | No | The contact phone number to search for | |
contactTaxId | No | The contact tax id to search for | |
cryptoAddress | No | The crypto address to search for | |
cryptoChain | No | The crypto chain to search for | |
cryptoCurrency | No | The crypto currency to search for | |
name | No | The name of the payee to search for (partial, case-insensitive match) | |
routingNumber | No | The US Bank routing number to search for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"accountNumber": {
"description": "The US Bank account number to search for",
"type": "string"
},
"agentReference": {
"description": "The Payman agent reference (id or handle) to search for",
"type": "string"
},
"contactEmail": {
"description": "The contact email to search for",
"format": "email",
"type": "string"
},
"contactPhoneNumber": {
"description": "The contact phone number to search for",
"type": "string"
},
"contactTaxId": {
"description": "The contact tax id to search for",
"type": "string"
},
"cryptoAddress": {
"description": "The crypto address to search for",
"type": "string"
},
"cryptoChain": {
"description": "The crypto chain to search for",
"type": "string"
},
"cryptoCurrency": {
"description": "The crypto currency to search for",
"type": "string"
},
"name": {
"description": "The name of the payee to search for (partial, case-insensitive match)",
"type": "string"
},
"routingNumber": {
"description": "The US Bank routing number to search for",
"type": "string"
}
},
"type": "object"
}