- Checkout Page
- API Documentation
- Master Data
- Payin Method
- Payout Method
- Payin
- Payout
- Payout Beneficiary
- Transaction
- Wallet
- Customer
- Checkout
- Webhook
- Features Documentation
Get by Wallet Id
GET
/wallet/find/{wallet_id}
wallet_id
parameter.Request
Path Params
wallet_id
string
required
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/find/' \
--header 'X-token;'
Responses
🟢200Success
application/json
Body
status
boolean
required
message
string
required
data
object
required
category
string
required
created_at
string
required
customer_id
string
required
deleted_at
string
required
description
string
required
is_active
boolean
required
is_deleted
boolean
required
metadata
object
required
org_id
string
required
raw_data
string
required
scope
string
required
updated_at
string
required
wallet_account
array [object {12}]
required
wallet_alias
string
required
wallet_id
string
required
webhook_url
string
required
Example
{
"status": true,
"message": "string",
"data": {
"category": "string",
"created_at": "2025-02-13T02:51:34.657Z",
"customer_id": "string",
"deleted_at": "2025-02-13T02:51:34.657Z",
"description": "string",
"is_active": true,
"is_deleted": true,
"metadata": {},
"org_id": "string",
"raw_data": "string",
"scope": "string",
"updated_at": "2025-02-13T02:51:34.657Z",
"wallet_account": [
{
"actual_balance": 0,
"available_balance": 0,
"created_at": "2025-02-13T02:51:34.657Z",
"currency": "string",
"deleted_at": "2025-02-13T02:51:34.657Z",
"is_active": true,
"is_deleted": true,
"is_settlement_allowed": true,
"org_id": "string",
"updated_at": "2025-02-13T02:51:34.657Z",
"wallet_account_id": "string",
"wallet_id": "string"
}
],
"wallet_alias": "string",
"wallet_id": "string",
"webhook_url": "string"
}
}
🟠400Bad Request
Modified at 2025-03-12 01:18:30