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": ""
        }
    }
]

Last updated