Payment

Overview

Rumbapay provides two options for processing payment requests: redirection to the Rumbapay payment page (HPP) and direct server-to-server communication (H2H). When creating a payment using the method https://api.rumbapay.online/v1/payment you must inspect the challenge.challenge_type field to determine the appropriate flow.

Base URLs: https://api.rumbapay.online/v1/

Data Format: JSON

HTTP Methods: POST, PUT, GET


Create payment API

Initialize Payment

When creating a payment using the method https://api.rumbapay.online/v1/payment you must inspect the challenge.challenge_type field to determine the appropriate flow.

For this type of payment, you must set widget.method = bank_transfer_chile and use the currency CLP.

Otherwise, you may receive the following error: 273:Invalid adapter route configuration

Method: HTTP POST

URL: https://api.rumbapay.online/v1/payment

Request Body Type HPP:

{
    "widget": { // required
        "method": "bank_transfer_chile", // required
        "locale": "es" // optional
    },
    "reference": "334545", // required, unique
    "currency": "CLP", // required
    "amount": 5000, // required
    "description": "My order h2h", // optional
    "customer": { // required
        "identifier": "user-1747983656", // required, any unique value from the merchant's system may be used.
        "email": "user@example.com", // optional
        "phone": "+522299377223", // optional
        "first_name": "Darth", // required
        "last_name": "Vader", // required
        "middle_name": "Skywalker", // optional
        "country": "CL", // required
        "state_code": "VS", // optional
        "city": "Santiago", // optional
        "address": "Av. Providencia 1234, Providencia", // optional
        "zip_code": "7500000", // optional
        "itn": "12345678910", // required 11 digits value
        "birthday": "2006-01-02", // optional
        "ip": "192.168.0.1", // optional
        "gender": "male" // optional
    },
    "redirect_url": "redirect_url", // optional
    "cancel_url": "cancel_url", // optional
    "callback_url": "callback_url",// conditional
    "extra":  // conditional, any field which may be needed for transaction routing and integration
    [{"key_1":"value"},{"key_2":"value"},{"key_3":"value"},{"key_4":"value"}]
}

Request Body Type H2H:

{
    "method": "bank_transfer_chile", // required
    "reference": "334545", // required, unique
    "currency": "CLP", // required
    "amount": 5000, // required
    "description": "My order h2h", // optional
    "customer": { // required
        "identifier": "user-1747983656", // required, any unique value from the merchant's system may be used.
        "email": "user@example.com", // optional
        "phone": "+522299377223", // optional
        "first_name": "Darth", // required
        "last_name": "Vader", // required
        "middle_name": "Skywalker", // optional
        "country": "CL", // required
        "state_code": "VS", // optional
        "city": "Santiago", // optional
        "address": "Av. Providencia 1234, Providencia", // optional
        "zip_code": "7500000", // optional
        "itn": "12345678910", // required 11 digits value
        "birthday": "2006-01-02", // optional
        "ip": "192.168.0.1", // optional
        "gender": "male" // optional
    },
    "redirect_url": "redirect_url", // optional
    "cancel_url": "cancel_url", // optional
    "callback_url": "callback_url",// conditional
    "extra":  // conditional, any field which may be needed for transaction routing and integration
    [{"key_1":"value"},{"key_2":"value"},{"key_3":"value"},{"key_4":"value"}]
}

💡The payment process depends on challenge_type parameter received

REQUISITES Payment Flow:

  1. Merchant sends a payment request to https://api.rumbapay.online/v1/payment

  2. Rumbapay validates the request and returns payment details including:

    • Bank account information for the customer to make the payment

    • Required form fields the merchant must collect from the customer

  3. Customer makes the payment using the provided bank information

  4. Merchant collects payment confirmation details from the customer (transaction ID, etc.)

  5. Merchant sends confirmation data to https://api.rumbapay.online/v1/payment/{request_id}

  6. Rumbapay processes the payment confirmation and updates the status to "pending"

  7. Rumbapay verifies the payment with the banking provider

  8. Rumbapay sends a callback to the merchant's callback URL when the payment reaches a terminal state (success, error, etc.)


REDIRECT Payment Flow:

  1. Merchant sends a payment registration request to https://api.rumbapay.online/v1/payment

  2. Rumbapay validates the request and returns a redirect_url for the customer

  3. Merchant redirects the customer to the provided redirect_url, where a payment form will be displayed

  4. Customer fills out the payment form with the required details

  5. Customer submits the form directly to Rumbapay or Payment provider

  6. Rumbapay or provider processes the submission and updates the payment status to "pending"

  7. If a redirect_url was specified in the initial registration request, Rumbapay redirects the customer to that URL; otherwise, Rumbapay displays its own status page to the customer

  8. Rumbapay verifies the payment with the banking provider

  9. Rumbapay sends a callback to the merchant's callback URL when the payment reaches a terminal state (success, error, etc.)

  10. Additionally, the merchant can check the payment status at any time by sending a request to https://api.rumbapay.online/v1/transaction/{request_id} as described in the "Check Payment Status" section


Response (Success):

Response - 200 OK

  1. First, you should check error_code field of response.

    If error_code field is not equals to 0 - transaction is Failed.

  2. Second, you should check status field.

    The status field will always be set to created if there are no errors.

    Make check request or wait for a callback to get final transaction status.

Challenge type: redirect

{
    "error_code": 0,
    "error_message": "",
    "identifier": "BTA000000000001",
    "request_id": "f4d30fac-7da9-4fa0-8918-46d56f7d38b0",
    "reference": "334545",
    "description": "My order h2h",
    "status": {
        "name": "created",
        "date": "2025-04-11T16:58:58.74"
    },
    "created_date": "2025-04-11T16:58:57.11",
    "amount": 5000,
    "billing_amount": 5000,
    "currency": "CLP",
    "challenge": {
        "challenge_type": "redirect",
        "challenge_redirect": {
            "url": "https://bb2eaeabbde8.transactica.net/p/f4d30fac-7da9-4fa0-8918-46d56f7d38b0/confirm"
        }
    },
    "timestamp": "2025-04-11T16:58:57.11Z"
}

💡 If the challenge.challenge_type is set to redirect, you must send your Customer to the URL specified in challenge.challenge_redirect.url.


Response - 400 Bad request

{
    "error_code": 30,
    "error_reason": "Invalid params",
    "request_id": "f4d30fac-7da9-4fa0-8918-46d56f7d38b0",
    "error_fields": [
        {
            "field": "reference",
            "message": "reference is a required field"
        }
    ],
    "timestamp": "2025-04-11T16:58:57.11Z"
}

Callback

On every completed Payout we send a callback notification to the URL you passed in the request in the callback_url field.

Callback flow

The callback flow follows these steps:

  1. Rumbapay processes the payment request

  2. When the payment status changes to a terminal state, Rumbapay sends an HTTP POST request to your callback URL

  3. Your server should process the callback, validate the signature, and update your system

  4. Your server should respond with HTTP 200 OK to acknowledge receipt

Example

{
  "error_code": 0,
  "error_message": "",
  "identifier": "BAN000096257",
  "request_id": "861bc24d-468a-41ae-b8fd-53945301c738",
  "reference": "334545",
  "description": "My order h2h",
  "status": {
    "name": "success",
    "date": "2025-04-24T10:53:50.873"
  },
  "created_date": "2025-04-24T10:53:41.78",
  "amount": 33333,
  "billing_amount": 33333.74,
  "currency": "CLP",
  "extra": [
    {
      "key": "key_4",
      "value": "value"
    },
    {
      "key": "key_3",
      "value": "value"
    },
    {
      "key": "key_2",
      "value": "value"
    },
    {
      "key": "key_1",
      "value": "value"
    }
  ],
  "timestamp": "2025-04-24T07:53:55.0041761Z"
}

Check Payment Status

Method: HTTP GET

URL: https://api.rumbapay.online/v1/transaction/{request_id}

Response (Success):

{
    "error_code": 0,
    "error_message": "",
    "identifier": "BAN000096257",
    "request_id": "861bc24d-468a-41ae-b8fd-53945301c738",
    "reference": "334545",
    "description": "My order h2h",
    "status": {
        "name": "pending",
        "date": "2025-04-24T10:53:50.873"
    },
    "created_date": "2025-04-24T10:53:41.78",
    "amount": 33333,
    "billing_amount": 33333.74,
    "currency": "CLP",
    "extra": [
        {
            "key": "key_4",
            "value": "value"
        },
        {
            "key": "key_3",
            "value": "value"
        },
        {
            "key": "key_2",
            "value": "value"
        },
        {
            "key": "key_1",
            "value": "value"
        }
    ],
    "timestamp": "2025-04-24T07:56:56.4542318Z"
}

Response (Not Found):

Transaction not found

{
    "error_code": 101,
    "error_reason": "Transaction not found",
    "request_id": "b6ed6ffe-0a62-480c-92fb-a84558a2da53",
    "timestamp": "2025-04-11T16:58:57.11Z"
}

Last updated