API Documentation
  1. Wallet
API Documentation
  • API Reference Guide
    • Checkout Page
    • Payin - KRW (Server to Server)
    • Purpose Code
    • Payout Payload Example
    • List of Payin Methods
  • API Documentation
    • Master Data
      • Get All Country & Currency Code
    • Payout Method
      • Get Required Fields by Payout method
      • Get All Payout Method
    • Payin Method
      • Get All Payin Method
      • Get Required Fields by Payin method
    • Payout Beneficiary
      • Create Payout Beneficiary
      • Update Payout Beneficiary
      • Get All Payout Beneficiary
      • Get Payout Beneficiary by Id
      • Validation by Id
      • Validation by Body
    • Payin
      • Create Payin
      • Retrieve Payin
      • Retrieve Payin Memo (PDF)
      • Create Virtual Account
    • Payout
      • Create Payout
      • Simulate Payout
      • Retrieve Payout Memo (PDF)
      • Retrieve Payout
      • Get All Payout
    • Checkout
      • Create Payment Request
      • Get All Checkout
      • Cancel Checkout
      • Get Detail Checkout
      • Create Virtual Account [KRW]
      • Get VA Bank Information [KRW]
      • Create New Checkout
    • Transaction
      • Find Transaction by Id
      • Get All Transaction
    • Wallet
      • Create Wallet
        POST
      • Get All Wallet
        GET
      • Get by Wallet Id
        GET
    • 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
    • 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. Wallet

Get All Wallet

GET
/wallet/all-wallet
This API is used to retrieve a list of all wallets.
The output of this API can support your need to view specific data through the limit and page parameters.

Request

Query Params
category
enum<string> 
required
Allowed values:
PAYINPAYOUTFEESGENERALGCA
Example:
PAYIN
created_at
string 
optional
limit
number 
optional
Example:
10
page
number 
optional
Example:
1
customer_id
string 
optional
Example:
string
Header Params
X-token
string 
optional

Request 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/wallet/all-wallet?category=PAYIN&created_at=&limit=10&page=1&customer_id=string' \
--header 'X-token;'

Responses

🟢200Success
application/json
Body
status
boolean 
required
message
string 
required
data
array [object {14}] 
required
wallet_id
string 
optional
wallet_alias
string 
optional
org_id
string 
optional
category
string 
optional
scope
string 
optional
customer_id
null 
optional
description
string 
optional
metadata
null 
optional
is_active
boolean 
optional
is_deleted
boolean 
optional
webhook_url
null 
optional
created_at
string 
optional
updated_at
string 
optional
deleted_at
null 
optional
Example
{
  "status": true,
  "message": "OK",
  "data": [
    {
      "wallet_id": "wallet_c51434feaf024e6bbebc71d4093b6f85",
      "wallet_alias": "w_alias_f206a02fb9544618a2a4a21b4158e2f8",
      "org_id": "org_59b8fb2f52254f95ac54d0e140f4e429",
      "category": "PAYIN",
      "scope": "MASTER",
      "customer_id": null,
      "description": "paycombat.com's master payin wallet",
      "metadata": null,
      "is_active": true,
      "is_deleted": false,
      "webhook_url": null,
      "created_at": "2024-04-14T12:27:54.684Z",
      "updated_at": "2024-04-14T12:27:54.684Z",
      "deleted_at": null
    }
  ]
}
🟠400Bad Request
Modified at 2025-05-08 08:12:20
Previous
Create Wallet
Next
Get by Wallet Id