POST
/wallet/transferTransferência Interna
Transfere saldo para outra conta Vye instantaneamente.
Request Body
| Parâmetro | Tipo |
|---|---|
amount* | number |
toEmail* | string |
description | string |
Exemplo de Request
curlbash
curl -X POST "https://api.vyepay.com/wallet/transfer" \
-H "X-API-Key: vye_sua_api_key" \
-H "Content-Type: application/json" \
-d '{
"amount": 50.00,
"toEmail": "[email protected]",
"description": "Pagamento de serviço"
}'Resposta de Sucesso
200 OKjson
{
"success": true,
"data": {
"id": "trf_abc123xyz",
"amount": 50.00,
"toEmail": "[email protected]",
"status": "COMPLETED",
"createdAt": "2024-01-15T14:00:00.000Z"
}
}