send-payment
Execute payments securely by specifying the payee ID, amount, and wallet ID. Designed for precise fund transfers using the Payman AI MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amountDecimal | Yes | Amount to send (in decimal) | |
payeeId | Yes | ID of the payee to send payment to | |
walletId | No | The ID of the specific wallet from which to send the funds |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amountDecimal": {
"description": "Amount to send (in decimal)",
"exclusiveMinimum": 0,
"type": "number"
},
"payeeId": {
"description": "ID of the payee to send payment to",
"type": "string"
},
"walletId": {
"description": "The ID of the specific wallet from which to send the funds",
"type": "string"
}
},
"required": [
"payeeId",
"amountDecimal"
],
"type": "object"
}