Vye

Vye

Pay

POST/wallet/transfer

Transferência Interna

Transfere saldo para outra conta Vye instantaneamente.

Request Body

ParâmetroTipo
amount*number
toEmail*string
descriptionstring

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"
  }
}