API Documentation
  1. Payout Method
API Documentation
  • API Documentation Change Log
  • API Reference Guide
    • Checkout Page
    • Payin - KRW (Server to Server)
    • Purpose Code
    • Payout Payload Example
    • List of Payin Methods
    • List of Bank for Payout Methods
  • API Documentation
    • Master Data
      • Get All Country & Currency Code
    • Payout Method
      • Get All Payout Method
        GET
    • Payin Method
      • Get All Payin Method
      • Get Required Fields by Payin method
    • Payin
      • Create Payin
      • Simulate Payin
      • Retrieve Payin
      • Create Virtual Account
    • Payout
      • Create Payout
      • Simulate Payout
      • Retrieve Payout
      • Get All Payout
    • Checkout
      • Create Payment Request
      • Get All Checkout
      • Get Detail Checkout
      • Create Virtual Account [KRW]
      • Get VA Bank Information [KRW]
      • Create New Checkout
    • Customer
      • Create Customer
      • Update Customer
      • Get All Customer
      • Get Detail Customer by Id
      • Check Is Customer Wallet Ready
      • Enable Customer
      • Disable Customer
      • Delete Customer
    • Webhook
      • Webhook PAYIN SUCCESS
      • Webhook PAYOUT SUCCESS
      • Webhook PAYOUT FAILED
      • VA Register Callback
      • Webhook PAYIN EXPIRED
    • Merchant
      • Get Balance Payout
    • Get List Payment Method by Currency
      GET
  • Features Documentation
    • Dashboard
    • Transaction
      • Payin
      • Payout
      • Rolling Reserve
      • Refund Request
    • Finance
      • Settlement Report APM
      • Settlement Report CARD
      • History Balance APM
      • History Balance CARD
    • Account
      • Profile Account
      • Manage Users
    • Setting
      • Integration Details
  1. Payout Method

Get All Payout Method

GET
/api/v1/payout-method
This API is used to retrieve a list of Payout-Methods available. The parameters will be SENDER and BENEFICIARY objects and other required fields to be provided for both parties. You can filter the results by specifying the currency and country query parameters.

Request

Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.paycombat.com/api/v1/payout-method?sender_country=KR&sender_currency=KRW&beneficiary_country=KR&beneficiary_currency=KRW&payout_method_class=' \
--header 'X-token: snd_eyJpdiI6Ik41YjZiWXFPQnR4RkxEN2xaQmgybkE9PSIsInZhbHVlIjoiMEErazkwaDlicjFFWHlzd0lkTi9VQjRJOGFOZjgrSzhVQllvamhTaUFVMVU4SVJhM1EzdzdVdlpCK2dZMXhOSyIsIm1hYyI6IjI0OWE5NzUxYjE0MDMyNTY0YWVmOTlkYzdmOGIyOGVkMzg1YWYzNDk2YTdjYjMwODRiY2NlM2UxMjM5NTJmZmUiLCJ0YWciOiIifQ=='

Responses

🟢200Success
application/json
Body

Examples
{
    "status": true,
    "message": "string",
    "data": [
        {
            "payout_method_id": "string",
            "payout_method_name": "string",
            "payout_method_description": "string",
            "payout_method_logo": "string",
            "sender_country": "string",
            "sender_currency": "string",
            "beneficiary_country": "string",
            "beneficiary_currency": "string",
            "payout_method_category": "string",
            "payout_method_class": "string",
            "payout_method_group": "string",
            "min_amount": 0,
            "max_amount": 0,
            "is_returnable": true,
            "is_enabled": true,
            "limit": 0,
            "page": 0,
            "status": "string"
        }
    ]
}
🟠400Bad Request
Modified at 2025-05-06 02:20:52
Previous
Get All Country & Currency Code
Next
Get All Payin Method