Global Payouts

Mesta Integration Workflow

Overview

This guide outlines the step-by-step process for integrating with Mesta's cross-border payment platform. Follow these steps to set up senders, beneficiaries, fetch quotes and initiate orders seamlessly.

Table of Contents

  1. Authentication
  2. Supported Digital Assets
  3. Payment Types
  4. Validation Rules
  5. Create Sender
  6. Create Source Wallet (Web3 only)
  7. Create Beneficiary
  8. Create Quote
  9. Create Order
  10. Post-Order Creation Steps

Integration Steps

1. Authentication

Before you begin, ensure you have proper authentication credentials. Refer to the Quickstart Guide for detailed instructions on authenticating with the Mesta API.

2. Supported Digital Assets

Stablecoins and Networks (Web3)

Supported Tokens

  • USDC (on Ethereum and Polygon)
  • USDT (on Ethereum)

Supported Networks

  • ⟠ Ethereum (ETH)
  • ◈ Polygon (POL)

Support for more chains and networks coming soon! 🚀

3. Payment Types

Available Payment Methods by Region

🏦 Bank Account Transfer

Standard bank transfer available in most countries

  • Required fields: accountNumber, accountType (savings/checking)

  • Country-specific requirements:

    • US: routingNumber (Wire Routing Number), accountType not needed
    • UK: sortCode (Sort Code), accountType not needed
    • EUR: BIC (Bank Identifier Code), accountType not needed
    • Non-US: bankId (Bank Id - fetch from /v1/banks endpoint)
    • India: ifscCode (IFSC Code)
    • Canada: branchCode (Combined format of Institution Number (3 digits) and Transit Number (5 digits) - Example: 00607621)
    • Argentina: bankDocumentNumber (11 digit code)

🇧🇷 PIX (Brazil)

Instant payment system in Brazil

  • Required fields: pixKeyId, taxId

🇲🇽 SPEI (Mexico)

Mexico's electronic payment system

  • Required fields: targetName, targetBankAccountId

🇵🇭 Philippines Payment Methods

Two options based on amount:

  • InstaPay (< 50,000 PHP)

    • Required fields: channelSubject, extendInfo (recipientAccountNumber, recipientName)
  • PESONet (≥ 50,000 PHP)

    • Required fields: channelSubject, extendInfo (recipientAccountNumber, recipientName)

💡 Important Notes

  • For detailed payment type requirements, visit Payment Types Documentation
  • Use the Banks API to fetch correct bankId values
  • Validate payment type availability using the validation rules API for each country

4. Validation Rules

Before creating senders or beneficiaries, it's crucial to understand and validate the required fields based on the entity type, owner type, and country.

Validation Rules API

Use this endpoint to get required fields and validation rules.

View API Documentation →

How to Use Validation Rules

  1. For Senders:
    GET /v1/validation-rules/senders?ownerType=individual&country=PH GET /v1/validation-rules/senders?ownerType=business&country=PH
  2. For Beneficiaries:
    GET /v1/validation-rules/beneficiaries?ownerType=individual&country=MX GET /v1/validation-rules/beneficiaries?ownerType=business&country=MX

Required Parameters

  • ownerType: Type of owner (individual or business)
  • country: ISO 3166-1 alpha-2 country code

Response Structure

The API returns:

  • Required fields
  • Document requirements
  • Field formats and validations
  • Country-specific requirements

📝 Important Notes

  • Always check validation rules before creating senders or beneficiaries
  • Requirements vary by country and owner type
  • Document requirements are country-specific

5. Create Sender

To comply with regulatory requirements, Mesta needs to verify the sender of the funds.

Create Sender API

Use this endpoint to create a new sender on Mesta's platform.

View API Documentation →

Sender Types

🏢 Sender Types & Support

Mesta primarily supports senders as "Business Entities" to accommodate B2C and B2B flows. However, individual senders are permitted only when the destination countries use BRL, MXN, or PHP currencies. For destinations outside this list, Mesta currently does not support individual senders for fund transfers.

Individual SendersBusiness Senders
  • type : "individual"

  • firstName
  • lastName
  • email
  • phone
  • address
    • street
    • city
    • state
    • country
    • postalCode
  • identity
    • countryCode
    • documentType (NATIONAL_ID | PASSPORT | DRIVER_LICENSE | TAX_ID)
    • documentNumber
    • documentFront*
    • documentBack*
  • birthDate (ISO 8601: YYYY-MM-DD)

  • type: "business"

  • fullName (Legal business name)

  • email
  • phone
  • address
    • street
    • city
    • state
    • country
    • postalCode
  • identificationNumber
  • registrationDate (ISO 8601: YYYY-MM-DD)

  • businessType
    • corporation
    • sole proprietorship
    • limited liability company
    • partnership
    • other
  • requiredDocuments
    • business_registration_proof
    • address_proof
  • ubo (Ultimate Beneficial Owner)

    • firstName
    • lastName
    • email
    • senderId
    • phone
    • ownershipPercent
    • address

      • street
      • city
      • state
      • country
      • postalCode
    • identity

      • countryCode
      • documentType (NATIONAL_ID | PASSPORT | DRIVER_LICENSE | TAX_ID | VOTER_ID)
      • documentNumber
      • documentFront*
      • documentBack*
    • birthDate (ISO 8601: YYYY-MM-DD)

Important Notes

  • * Document front/back images are required only for specific countries. Please check the country-specific validation rules.
  • Identity document requirements and validations vary by country. Always verify the specific requirements for your target country.
  • The same identity document rules apply to both individual senders and UBOs of business senders.

State and Country Codes

  1. State and Country Fields: The state and country fields in the address must be provided using standardized codes.
  2. Country Codes: Use the ISO 3166-1 alpha-2 country codes listed here.
  3. State Codes: Use the appropriate state or province codes as listed here.
  4. Postal Codes:
    • Use the correct postal code format for each country
    • For countries where postal codes are not commonly used or available, use "00000" as the default value

📝 Note about Postal Codes

When creating addresses for countries without postal code systems, always use "00000" as the default value. Do not leave the postal code field empty as it is a required field in the API.

Identity Document Images

  1. The front and back fields in the identity object should contain the base64-encoded binary data of the front and back images of the identity document, respectively.
  2. This encoding ensures that the image data is correctly transmitted and received by the API.

Sender Creation Process

  1. Call the Create Sender API to initialize the sender profile.
  2. For business senders, upload verification documents using the Upload Document API.
  3. If applicable, provide UBO (Ultimate Beneficial Owner) details via the Create UBO API. UBO is mandatory for business senders.
  4. Trigger the verification process using the Verify Sender API.

💡 Multiple UBO Support

  • Multiple UBOs can be added by calling the Create UBO endpoint multiple times
  • Each UBO must specify their ownershipPercent
  • The total ownershipPercent across all UBOs cannot exceed 100%

Verification Statuses

Sender Verification Status

When creating or retrieving a sender, the kyb:status field indicates their verification status:

StatusDescription
🆕 unverifiedInitial status when sender is first created
pendingDocuments submitted and pending review
approvedSender has been verified and approved
declinedVerification was declined

🔄 Individual vs Business: Key Differences

👤 Individual Senders

Fast Track Verification

  • ⚡️ Verification Process: Automatic verification
  • 📄 UBO Requirement: No UBO information needed
  • ⏱️ Timeline: Near-instant verification
  • 🔄 Status Flow: unverifiedapproved

🏢 Business Senders

Enhanced Due Diligence

  • 👥 Verification Process: Manual verification by Mesta team
  • 📊 UBO Requirement: Must provide UBO information
  • Timeline: 1-2 business days
  • 🔄 Status Flow: unverifiedpendingapproved/declined

💡

Pro Tip: Business senders must complete both document submission AND UBO registration before their status can be reviewed.


📌 Quick Reference

  • Individual: Instant verification, no UBO needed
  • Business: Manual review, UBO required

📝 Important Notes

  • Only senders with approved status can initiate transactions
  • Status changes trigger webhook notifications
  • Declined senders can resubmit verification with updated information

📝 Note

The verification process may take some time. Monitor the status using the Get Sender Details API or set up webhooks for real-time updates.

6. Create Source Wallet

⚠️ Web3 Customers Only

This step is required only for Web3 customers. Web2 customers can proceed to the next step.

For Web3 transactions, you need to register the source of funds by creating a source wallet.

Create Source Wallet API

Use this endpoint to register multiple source addresses across different blockchain networks.

View API Documentation →

Required Input:

  • An array of objects, each containing:
    • address: The cyrpto address for fund transfers
    • chain: The associated blockchain network

🔒 Security Note

Always verify addresses before use. Securely store the source wallet ID for future transactions and fund tracking.

7. Create Beneficiary

To facilitate fund transfers, Mesta requires information about the receiver.

Create Beneficiary API

Use this endpoint to create a new beneficiary on Mesta's platform.

View API Documentation →

Beneficiary Types

Individual BeneficiariesBusiness Beneficiaries
  • type: "individual"

  • firstName
  • lastName
  • email (optional)

  • phone
  • address
    • street
    • city
    • state
    • country
    • postalCode
  • paymentInfo
  • type: "business"

  • fullName (Legal business name)

  • businessType
    • corporation
    • sole proprietorship
    • limited liability company
    • partnership
    • other
  • businessRegistrationNumber
  • email (optional)

  • phone (optional)

  • address
    • street
    • city
    • state
    • country
    • postalCode
  • paymentInfo

Important Notes

  • Payment information requirements vary by country and payment method. Some fields may be required or optional based on the destination country.
  • Business type must match one of the predefined categories.
  • For international transfers, additional payment information may be required.

State and Country Codes

  1. State and Country Fields: The state and country fields in the address must be provided using standardized codes.
  2. Country Codes: Use the ISO 3166-1 alpha-2 country codes listed here.
  3. State Codes: Use the appropriate state or province codes as listed here.

Payment Information

**Note: **The paymentType must be provided and must be one of the supported payment types as specified in the API reference.


🏦 Country-Specific Payment Types

  • 🇺🇸 United States (US):

    • Payment Type: bank_account
    • Required: accountNumber, routingNumber
  • 🇪🇺 European Union (EUR):

    • Payment Type: bank_account
    • Required: accountNumber (IBAN), BIC (Bank Identifier Code)
    • Supported in all EU member states
  • 🇬🇧 United Kingdom (GB):

    • Payment Type: bank_account
    • Required: accountNumber, sortCode
  • 🇧🇷 Brazil (BR):

    • Payment Type: pix
    • Required Fields:
      • pixKeyId
      • taxId
  • 🇲🇽 Mexico (MX):

    • Payment Type: spei
    • Required Fields:
      • targetName
      • targetBankAccountId
  • 🇵🇭 Philippines (PH):

    • Payment Types:
      • instapay (< 50,000)
      • swiftpay_pesonet (≥ 50,000)
    • Required Fields:
      • channelSubject
      • extendInfo
      • recipientAccountNumber
      • recipientName
  • 🇨🇴 Colombia (CO):

    • Payment Type: bank_account
    • Required: accountNumber, accountType, bankId
  • 🇮🇳 India (IN):

    • Payment Type: bank_account
    • Required: accountNumber, accountType, bankId, ifscCode
  • 🇨🇦 Canada (CA):

    • Payment Type: bank_account
    • Required: accountNumber, accountType, bankId, branchCode (Combined format of Institution Number (3 digits) and Transit Number (5 digits) - Example: 00607621)
  • 🇸🇬 Singapore (SG):

    • Payment Type: bank_account
    • Required: accountNumber, accountType, bankId
  • All Other Countries:

    • Payment Type: bank_account
    • Required: accountNumber, accountType, bankId
    • bankDocumentNumber is required for Argentina (AR)

Note: Always check the validation rules endpoint for the most up-to-date requirements for each country.

Important Notes:

  • bankId:
    • Fetch the bankId for a specific country using Banks end point.
    • Ensure you provide the accurate bank ID as per the Beneficiary Banks API for the respective country.
  • Supported Payment Types:
    • The paymentType must match one of the supported payment types listed in the API reference for the specific country.
    • Field Requirements:
    • All fields listed under paymentInfo are mandatory unless specified otherwise.
    • Make sure to include all required information to avoid any processing delays.

Beneficiary Creation Process

  1. Call the Create Beneficiary API to register the beneficiary.
  2. Trigger the verification process using the Verify Beneficiary API.

Beneficiary Verification Status

Similar to senders, beneficiaries also have a verification status:

Beneficiary Verification Status Values

StatusDescription
unverifiedInitial state, no verification process started
pendingVerification in progress
approvedVerification completed successfully
declinedVerification failed or rejected

💡 Best Practices

  • Monitor verification status via webhooks
  • Keep beneficiary information up to date
  • Submit clear and legible documentation
  • Respond promptly to verification requests

📝 Note

Ensure all required fields are provided to avoid transaction delays. Monitor the verification status using the Get Beneficiary Details API or set up webhooks for real-time updates.

8. Create Quote

Before creating an order, create a quote for the order.

Get Quote API

Use this endpoint to create a quote for your order.

View API Documentation →

Required Fields:

  • sourceCurrency
    • For Web2 merchants, sourceCurrency can only be USD.
    • For Web3 merchants, sourceCurrency can be any supported stablecoin (e.g., USDC, USDT on Ethereum (ETH), Polygon (POL/NPL)).
  • targetCurrency
  • targetAmount

Optional Fields:

  • developerFee - Amount in source currency to be charged as developer fee (e.g., "1.50")
    • Must be a valid decimal number
    • Will be added to the gross source amount
    • Displayed separately in quote response

9. Create Order

After setting up the sender, beneficiary, and obtaining a quote, you can create an order to initiate the fund transfer.

Create Order API

Use this endpoint to create a new order for fund transfer.

View API Documentation →

Required Fields:

  • senderId (from Create Sender API response)
  • beneficiaryId (from Create Beneficiary API response)
  • acceptedQuoteId (from Get Quote API response)

Order Status Flow

Web2 Customers (Fiat)

  1. created
  2. awaiting_funds
  3. awaiting_funds_timeout
  4. need_review
  5. funds_received
  6. in_progress
  7. sent_to_beneficiary
  8. success
  9. failed
  10. cancelled
  11. refund_in_progress
  12. refunded

Web3 Customers (Stablecoin)

  1. created
  2. awaiting_funds
  3. awaiting_funds_timeout
  4. need_review
  5. funds_received
  6. in_progress
  7. sent_to_beneficiary
  8. success
  9. failed
  10. cancelled
  11. refund_in_progress
  12. refunded

10. Post-Order Creation Steps

After creating an order, it's crucial to follow the correct process for sending funds. The order goes through several status changes, and timing is critical for successful processing.

A. Get Deposit Wallet Address

After order creation, fetch the correct deposit wallet address before sending any funds:

📡 Deposit Wallet API Endpoint

GET /v1/orders/{orderId}/deposit-wallet-address

📥 Response Format

{
  "data": {
    "id": "4e2f085a-85c0-4de8-90fc-34e1dbe97be7",
    "address": "0xd4bDFcaDDFB326a954007d675A7738da4fBC576b",
    "chain": "polygon",
    "ownerType": "sender"
  }
}

🔍 Response Fields

FieldDescription
idUnique identifier for the deposit wallet
addressBlockchain address for sending funds
chainNetwork identifier (⟠ ethereum, ◈ polygon)
ownerTypeType of wallet owner (sender/merchant)

⚠️ Critical Security Warnings

  • Only send funds to addresses obtained from this endpoint
  • Verify the chain matches your selected token
  • Double-check the address before sending

Important Notes:

  • Wallet addresses are order-specific
  • Addresses expire with the order
  • Different networks (⟠ ETH, ◈ POL) use different address formats
  • Always verify the network matches your token type

💡 Best Practices

  • Fetch the address only when ready to send funds
  • Implement address validation for the specific network

📝 Note

The deposit address is only valid for the duration of the order and specific to the selected network. Never reuse addresses from previous transactions.


B. Getting Test Tokens for Sandbox Testing

After obtaining the deposit wallet address, you'll need test tokens to simulate the payment flow in our sandbox environment.

📚 Detailed Guide Available

For step-by-step instructions on obtaining and using test tokens, see our comprehensive guide: Getting Test Tokens for Sandbox Testing

Quick Reference
  1. Enable Sepolia testnet in MetaMask
  2. Get test ETH for gas fees
  3. Obtain test USDC/USDT from faucets
  4. Send to order's deposit wallet address

⚠️ Important

Always wait for order status "awaiting_funds" before sending any test tokens. See the complete guide for detailed instructions and best practices.

C. Order Status Monitoring

Get Order Status API

Monitor order status changes using this endpoint.

View API Documentation →

Important Status Transitions

  1. Wait for "awaiting_funds" Status
    • After order creation, wait for status to change to "awaiting_funds"
    • Do not send funds before this status change
  2. Time-Sensitive Window
    • Orders have a limited time window for fund receipt
    • If status changes to "awaiting_funds_timeout", funds will not be accepted
    • New order creation required if timeout occurs

D. Fund Transfer Guidelines

For Web2 Customers (Fiat)

  • Send exact FIAT amount to designated bank account
  • Amount must match order creation value
  • Use provided bank details exactly as specified

For Web3 Customers (Stablecoin)

  • Send exact stablecoin amount specified during order creation
  • Use correct token type (USDC/USDT) as selected
  • Ensure correct blockchain network (ETH,POL/NPL) is used
  • Send to wallet address provided in order details

⚠️ Critical Warnings

  • Never send funds before "awaiting_funds" status
  • Always use exact amounts - no rounding
  • Verify blockchain network before sending (Web3)
  • Do not send funds if status is "awaiting_funds_timeout"

E. Monitoring and Updates

  • Use the Get Order Status API to monitor progress
  • Set up webhooks for real-time status updates
  • Track order status through the dashboard
  • For Web3 orders, monitor blockchain confirmations

⚠️ Important Note for Web3 Customers

After creating an order, you must wait for the order status to change to "awaiting_funds" before sending funds. Sending funds before this status change may result in transaction delays or failures.

📝 Note

Track your order status using the Get Order Status API or set up webhooks for real-time updates.

Need Help?

If you encounter any issues or have questions, please refer to our API Documentation or contact our Support Team.