Minit Money Enterprise
  • Welcome
  • Introduction
    • What is RaaS?
  • Get Started
  • Dashboard
  • RaaS API
    • API Key
    • Health Check
    • Corridors
      • List all Corridors
      • Corridor Details
      • Payout Methods
      • Payout Requirements
  • Senders
    • New Sender
    • Fetch Details
    • Update Details
    • Delete Sender
    • KYC
  • Beneficiaries
    • New Beneficiary
    • Fetch Details
    • Update Details
    • Delete Beneficiary
    • KYC
  • Quote
    • New Quotes
    • Fetch Quote
  • Transactions
    • New Transaction
    • Fetch Transaction
    • Status
  • Webhooks
    • Subscribe
    • Delete
  • Resources
    • Change log
    • FAQs
    • About
Powered by GitBook
On this page
  1. RaaS API
  2. Corridors

Payout Methods

Get Payout Methods

GET /corridor/{corridor_id}/payouts

Description

A successful response will return a list of payout methods available for the specified corridor with the associated fee.

Headers

Make sure to include the following headers in your request:

  • x-api-key: Your unique API key.

  • x-tenant-key: Your specific tenant key.

For more details, please refer to the API Key Section.

Response

[
    {
        "uid": "1eeaa665-73c3-4a3f-aba8-4278dd62a63c",
        "method_type": "BANK",
        "name": "Bank Transfer",
        "min": 5,
        "max": 10000,
        "fee": {
            "fixed_fee": 0,
            "percentage_fee": 0,
            "currency": ""
        }
    }
]
PreviousCorridor DetailsNextPayout Requirements

Last updated 1 month ago