Payment Docs
Payments by countryLatin America

Mexico

Bank transfer payments in MXN

Before you start

This payment method is not enabled for all merchants. Check availability with your manager.

Overview

CurrencyCountry codePayment methodPayer document
MXNMXBank transferRFC

The payer is redirected to paymentLink and completes the transfer on the provider page.

What is different from a regular order

The order is created through the standard POST /v1/orders endpoint. The base fields (amount, currency, successUrl, failUrl, callbackUrl, etc.) are the same as for a regular order; on top of them you pass the customer object with payer details.

FieldTypeDescription
customerobjectPayer details. The required set is listed below

The externalUserId field is required for this payment method.

Customer fields

FieldTypeRequiredDescription
countrystring✅ YesCountry code, always MX
documentstring✅ YesPayer document number
documentTypestring✅ YesDocument type, RFC
emailstring✅ YesPayer email
firstNamestring✅ YesFirst name
lastNamestring✅ YesLast name

Request example

{
  "purpose": "Payment for order #1234",
  "amount": "1000",
  "currency": "MXN",
  "externalId": "external_id",
  "externalUserId": "external_user_id",
  "successUrl": "https://example.com/success",
  "failUrl": "https://example.com/fail",
  "callbackUrl": "https://example.com/webhooks/payments",
  "isFeeOnUser": false,
  "customer": {
    "firstName": "John",
    "lastName": "Doe",
    "country": "MX",
    "email": "john.doe@example.com",
    "document": "ABCD8104019Z3",
    "documentType": "RFC"
  }
}

Response

The response is a standard order object. The order is created with the CREATED status; redirect the payer to paymentLink to complete the payment.

Order object fields

Next steps

On this page