CustomersGet Customer

Get Customer

The Get Customer endpoint allows you to retrieve details of a specific customer by their customer code.

Endpoint

GET https://mainapi.cashonrails.com/api/v1/customer/{customer_code}

Request Headers

HeaderTypeDescription
AuthorizationstringBearer token with your secret key

Sample Request

GET https://mainapi.cashonrails.com/api/v1/customer/CUS_dcoo3papxzfu3gs

Sample cURL Request

curl --location 'https://mainapi.cashonrails.com/api/v1/customer/CUS_dcoo3papxzfu3gs' \
--header 'Authorization: Bearer sk_test_0123456789abcdefghijkl'

Sample Response

{
    "status": true,
    "message": "Customer retrieved",
    "data": {
        "id": 1,
        "account_name": "Ria Madini Fashion Store",
        "first_name": "John",
        "last_name": "Doe",
        "email": "johndoe@gmail.com",
        "phone": "08023456542",
        "nin": "",
        "address": "No 23, Emeks Street",
        "dob": "",
        "customer_code": "CUS_dcoo3papxzfu3gs",
        "metadata": "{}",
        "domain": "test",
        "status": "active",
        "created_at": "2024-12-21T15:19:35.000000Z",
        "updated_at": "2024-12-20T17:51:20.000000Z"
    }
}

Response Fields

FieldTypeDescription
idintThe customer’s unique identifier
account_namestringThe name of the customer’s account
first_namestringThe first name of the customer
last_namestringThe last name of the customer
emailstringThe email address of the customer
phonestringThe phone number of the customer
ninstringThe National Identification Number
addressstringThe address of the customer
dobstringThe date of birth of the customer
customer_codestringThe customer’s unique code
metadatastringAdditional information about the customer
domainstringThe domain of the customer
statusstringThe status of the customer
created_atstringThe date and time the customer was created
updated_atstringThe date and time the customer was last updated