TransferSwap
  1. R4
TransferSwap
  • Transferswap External API
    • Fuse
      • Create Fuse Payout
      • Get Fuse Transaction
      • Get Fuse Customer
      • Create Fuse Internal Transfer
      • Simulate Fuse Inbound Payment
      • Create Fuse Customer Account
      • Add Fuse Business Customer
      • Add Fuse Individual Customer
    • R4
      • Generate OTP for R4 Immediate Debit
        POST
      • R4 Immediate Debit Payment
        POST
      • Query R4 Operation Status
        POST
      • R4 Immediate Credit Payment (Unified)
        POST
    • Cryptomate
      • Create Virtual Wallet
      • Get All Virtual Wallets
      • Get Virtual Wallet by ID
      • Get Virtual Wallet Balance
      • Get Virtual Wallet Movements
      • Create Virtual Card
      • List All Virtual Cards
      • Search Card Transactions
      • Delete Virtual Card
      • Get Top-up Wallets for Card
      • Get Card PAN (Primary Account Number)
      • Update Card Limits
      • Update Card Email
      • Update Card Phone
      • Get Card Balance
      • Override Card Balance
      • Unblock Card
      • Configure 3D Secure
      • Authenticate 3D Secure
      • Freeze/Unfreeze Card
      • Update Card PIN
    • Minteo
      • Create Minteo Payout for Colombia
      • Get Minteo Wallets for Colombia
      • Get Minteo Wallet Balance
      • Get Minteo Bank Accounts for Colombia
      • Get Minteo Payout Status
    • ClearJunction
      • Create ClearJunction Pay-in
      • Create ClearJunction Pay-out
      • Get ClearJunction Payout Status
      • Create ClearJunction SEPA Credit Transfer
      • Create ClearJunction SEPA Instant Transfer
  1. R4

R4 Immediate Credit Payment (Unified)

POST
/r4/vzla/credit-immediate
Last modified:2026-01-28 13:56:26
Ejecuta crédito inmediato interbancario usando teléfono o cuenta de 20 dígitos.
Lógica de decisión:
Si Telefono está vacío o null → usa método de cuentas (CICuentas)
Si Telefono tiene valor y Cuenta está vacío → usa método de teléfono (CreditoInmediato)
Si ambos están presentes → prioriza método de teléfono
Método con teléfono:
Requiere: Banco, Cedula, Telefono, Monto, Concepto
Endpoint: /CreditoInmediato
Token: HMAC-SHA256 de 'Banco + Cedula + Telefono + Monto'
Método con cuenta:
Requiere: Cedula, Cuenta, Monto, Concepto
Endpoint: /CICuentas
Token: HMAC-SHA256 de 'Cedula + Cuenta + Monto'
Códigos de respuesta exitosos:
'ACCP' (Operación Aceptada)
Autenticación:
El token de autorización se genera usando HMAC-SHA256 según el método seleccionado
usando como llave el token Commerce (R4_API_KEY).

Request

Header Params

Body Params application/json

Examples

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/r4/vzla/credit-immediate' \
--header 'X-API-Key: {{apiKey}}' \
--header 'Content-Type: application/json' \
--data-raw '{
  "payload": {
    "Banco": "0163",
    "Cedula": "V12345678",
    "Telefono": "04145555555",
    "Monto": "1.00",
    "Concepto": "Prueba 854"
  }
}'
Response Response Example
{}
Modified at 2026-01-28 13:56:26
Previous
Query R4 Operation Status
Next
Cryptomate
Built with