Find Customer
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Method | Endpoint | Description |
|---|---|---|
| GET | /v1/customer/banks | Find banks associated with customer email |
| POST | /v1/customer/device/lookup | Identify customer through device fingerprinting |
| Parameter | Type | Required | Description |
|---|---|---|---|
email | string | Yes | Customer email address |
{
"statusCode": 200,
"success": true,
"message": "Customer banks retrieved successfully",
"data": {
"banks": [
{
"bankId": "string",
"bankName": "string",
"accountName": "string",
"phrase": "string",
"customerName": "string"
}
]
}
}
| Field | Type | Description |
|---|---|---|
bankId | string | Unique bank identifier |
bankName | string | Bank name |
accountName | string | Masked account identifier |
phrase | string | Lookup ID for transactions |
customerName | string | Obfuscated customer name |
{
"deviceId": "string"
}
| Field | Type | Required | Description |
|---|---|---|---|
deviceId | string | Yes | Device identifier for lookup |
{
"statusCode": 200,
"success": true,
"message": "Device lookup successful",
"data": {
"bankId": "string",
"bankName": "string",
"accountName": "string",
"phrase": "string",
"customerName": "string"
}
}
| Field | Type | Description |
|---|---|---|
bankId | string | Associated bank identifier |
bankName | string | Bank name |
accountName | string | Masked account information |
phrase | string | Lookup ID for billing |
customerName | string | Privacy protected customer name |
{
"statusCode": 400,
"success": false,
"message": "Invalid email format"
}
{
"statusCode": 404,
"success": false,
"message": "Device not found in system"
}