API Documentation
  1. Customer
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
      • Get All Wallet
      • Get by Wallet Id
    • Customer
      • Create Customer
        POST
      • Update Customer
        PATCH
      • Get All Customer
        GET
      • Get Detail Customer by Id
        GET
      • Check Is Customer Wallet Ready
        GET
      • Enable Customer
        PATCH
      • Disable Customer
        PATCH
      • Delete Customer
        DELETE
    • 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. Customer

Get Detail Customer by Id

GET
/api/v1/customer/customer/{customer_id}
This API is use to retrieve the details of a customer by using their customer_id

Request

Path Params
customer_id
string 
required
Example:
customer_67d84b19d50b490a8fa75ab20bbf275a
Header Params
X-token
string 
required

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/api/v1/customer/customer/customer_67d84b19d50b490a8fa75ab20bbf275a' \
--header 'X-token;'

Responses

🟢200Success
application/json
Body
status
boolean 
required
message
string 
required
data
object 
required
customer_id
string 
required
org_id
string 
required
type
string 
required
description
string 
required
webhook_url
null 
required
metadata
null 
required
is_active
boolean 
required
is_wallet_ready
boolean 
required
organization_reference_id
null 
required
is_gca_enabled
boolean 
required
gca_activation_status
string 
required
gca_activated_at
null 
required
is_sender_validation_enabled
boolean 
required
payin_sender_id_list
null 
required
company_domain
null 
required
individual
object 
required
created_by
string 
required
created_at
string 
required
updated_at
string 
required
Example
{
    "status": true,
    "message": "OK",
    "data": {
        "customer_id": "customer_67d84b19d50b490a8fa75ab20bbf275a",
        "org_id": "org_59b8fb2f52254f95ac54d0e140f4e429",
        "type": "individual",
        "description": "Test New Customer 2",
        "webhook_url": null,
        "metadata": null,
        "is_active": false,
        "is_wallet_ready": false,
        "organization_reference_id": null,
        "is_gca_enabled": false,
        "gca_activation_status": "NOT_STARTED",
        "gca_activated_at": null,
        "is_sender_validation_enabled": false,
        "payin_sender_id_list": null,
        "company_domain": null,
        "individual": {
            "first_name": "kim",
            "last_name": "jennie",
            "dob": "1997-08-04",
            "email": "fatur4@paycombat.com",
            "nationality": "ID",
            "address_country": "ID",
            "address_state": "CENTRAL JAVA",
            "address_city": "SEMARANG",
            "address_line1": "GRAND RUDENSIA BLOK C1",
            "address_line2": "RT 013, RW 01",
            "address_zip_code": "50272",
            "country_of_residence": "ID",
            "phone_number": "85156781124",
            "phone_country_code": "+62",
            "phone_number_e164": "+6285156781124",
            "identification_type": "NATIONAL_ID",
            "identification_custom_type": null,
            "identification_value": "33777777"
        },
        "created_by": "api_access_key:AK_FINMO_SBX_07C5090*******************CCBC7F",
        "created_at": "2024-12-06T03:53:52.779Z",
        "updated_at": "2024-12-19T10:55:31.771Z"
    }
}
🟠400Bad Request
Modified at 2025-05-08 08:12:33
Previous
Get All Customer
Next
Check Is Customer Wallet Ready