API Documentation
  1. Payin 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
    • Payin Method
      • Get All Payin Method
        GET
      • Get Required Fields by Payin method
        GET
    • 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. Payin Method

Get All Payin Method

GET
/api/v1/payin-method
This API is used to retrieve a list of all payin methods by country and currency.
The output of this API can support your need to view specific data through the limit and page parameters. In addition, it can also get refund data using the payin_id filter and the refund status.

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/payin-method?country=TH&currency=THB' \
--header 'X-token: snd_eyJpdiI6IjMrekV2NG40eHEyUkc4RVdrVHlRbmc9PSIsInZhbHVlIjoiZjg4eXdJY1VDRjBrV09EVjFOVWNWZG9vcGtKN2tOQklrSnFlQytycDFPakN1TEVtQ04vUGJTKzZUWmxsSjFaSyIsIm1hYyI6IjM5MDBlYmJhNmMxMGJmMTNiNjcwMTFlMjk3MjA5YjI4MjdhODI1MmU0Y2NlOGMxZTUxYjdmNGMyOTU5YzgyMzQiLCJ0YWciOiIifQ=='

Responses

🟢200Success
application/json
Body

Examples
{
  "status": true,
  "message": "string",
  "data": [
    {
      "payin_method_id": "string",
      "payin_method_name": "string",
      "payin_method_description": "string",
      "payin_method_logo": "string",
      "payin_method_category": "string",
      "payin_method_class": "string",
      "payin_method_group": "string",
      "country": "string",
      "currency": "string",
      "is_va_allowed": true,
      "is_payin_allowed": true,
      "is_enabled": true
    }
  ]
}
🟠400Bad Request
Modified at 2025-06-25 02:29:51
Previous
Get All Payout Method
Next
Get Required Fields by Payin method