create_crypto_beneficiary
Create a crypto wallet beneficiary for TropiPay payments by providing recipient name, wallet address, network, and currency.
Instructions
Create a new crypto wallet beneficiary using TropiPay API.
Required: firstName, lastName, accountNumber (wallet address), currency, network
Example:
{
"firstName": "John",
"lastName": "Doe",
"accountNumber": "5Hw3k2c4Z5oLWxfTMT8nBnhqWF4SWcAFQLnJTJPzNe2y",
"currency": "USDC",
"network": "SOLANA"
}Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Auto-set to 12 (Crypto wallet). | |
| alias | No | Friendly name. Optional. | |
| state | No | Status (0=Active, 1=Inactive, 2=Deleted). Default: 0. | |
| network | Yes | Blockchain network (SOLANA, ETH). REQUIRED. | |
| currency | Yes | Currency code (USDC, BTC). REQUIRED. | |
| lastName | Yes | Last name. REQUIRED. | |
| firstName | Yes | First name. REQUIRED. | |
| paymentType | No | Auto-set to 3 (Crypto). | |
| accountNumber | Yes | Crypto wallet address. REQUIRED. | |
| beneficiaryType | No | Auto-set to 3 (Crypto). | |
| userRelationTypeId | No | Relation type (0=myself, 3=commercial). Default: 3. |