Get One Customer

The Get One Customer API allows authorized users retrieves detailed information about a specific customer based on their unique identifier.

API Method

GET

Endpoint

https://cebuana-apiuat.veryfyglobal.com/customers/{id}

Headers

Key
Value

Accept

application/json

Authorization

Bearer <YOUR_TOKEN>

Path Parameters

Parameter
Type
Required
Description

id

int

Yes

The unique identifier of the customer to retrieve. Customer ID

Example Request

Request URL

GET /customers/1

Response Sample

{
    "message": "Ok",
    "data": {
        "id": 1,
        "first_name": "JOHN",
        "middle_name": "DOE",
        "last_name": "1",
        "email": "[email protected]",
        "current_address": null,
        "permanent_address": null,
        "tin": null,
        "sss": null,
        "document_type": null,
        "id_no": null,
        "id_photo": null,
        "date_of_birth": "1969-12-24T16:00:00.000000Z",
        "place_of_birth": null,
        "nationality": null,
        "contact_number": null,
        "assessment_score": 0,
        "assessment_risk": {
            "value": 0,
            "description": "Low Risk"
        },
        "customer_risk_assessments": [
            {
                "id": 1,
                "customer_id": 1,
                "type": {
                    "value": 1,
                    "description": "Complete Name"
                },
                "value": "JOHN DOE 1",
                "grade": 0
            }
        ],
        "last_transaction_datetime": "2024-05-07 07:36:59"
    }
}

Last updated