# 4829 Money transfers funding

Last update on June 1st 2025

IMPORTANT: This guide applies only to PULL transactions, moving funds from cardholder to merchant.

This requirement is enforced from April 2025.

All 4829 orders (for both Visa and Mastercard) are required to contain:

  • category: "funding"
  • type: "person-to-person"
  • information on the receiver:
    • first name
    • last name
    • account number
    • account type
  • for receivers in US and Canada only:
    • address of receiver
 





















POST /v1/order
{
  "number": "<your-order-number>",
  "items": 12.34,
  "currency": "EUR",
  "category": "funding", // !!!!!! NEW
  "type": "person-to-person", // !!!!!! NEW
  "payment": {
    "type": "card",
    "card": "<card token>"
  },
  "receiver": { // !!!!!! NEW
    "name": {
      "first": "Peter",
      "last": "Wilson"
    },
    "account_number": "GB33BUKB20201555555555", // Full account IBAN would be provided here
    "account_type": "iban",
    "address": // For receivers in US and Canada only
  }
}

Please refer to Order Creatable.

This transaction is automatically captured.

For Mastercard, to comply with Mastercard Data Integrity Monitoring Program, these transactions will be coded as TTI F07.

For Visa, transactions will be coded as purchases, as Visa has not yet required special requirements on this type of payment.