Skip to main content
GET
/
api
/
external
/
customer
/
{id}
Get a customer
curl --request GET \
  --url https://api-prod.blaaiz.com/api/external/customer/{id} \
  --header 'Authorization: Bearer <token>'
{
  "message": "Customer retrieved successfully",
  "data": {
    "id": "9d4c4ec5-59ea-4130-bf8a-6a5edec401ee",
    "business_id": "9d4c4ec5-572d-49de-a362-f01ed09f2b1b",
    "type": "individual",
    "first_name": "John",
    "last_name": "Doe",
    "business_name": null,
    "email": "john.doe@example.com",
    "phone": "+2348012345678",
    "country": "NG",
    "id_type": "passport",
    "id_number": "A12345678",
    "tin": null,
    "verification_status": "VERIFIED",
    "enhanced_due_diligence": false,
    "kyc_data": {
      "id": "9d4c4ec5-59ea-4130-bf8a-6a5edec40200",
      "dob": "1990-01-15",
      "street": "123 Main Street",
      "city": "Lagos",
      "state": "Lagos",
      "zip_code": "100001",
      "operating_street": null,
      "operating_city": null,
      "operating_state": null,
      "operating_zip_code": null,
      "id_expiry_date": "2030-01-15",
      "id_issue_date": "2020-01-15"
    },
    "created_at": "2024-01-15T10:30:00.000000Z",
    "updated_at": "2024-01-15T10:40:00.000000Z"
  }
}

Authorizations

Authorization
string
header
required

Use your OAuth client credentials to obtain a short-lived Bearer token from POST /oauth/token.

Path Parameters

id
string
required

Customer ID

Response

Customer retrieved successfully

message
string
required
data
object
required