Get customer's duplicates by customerId
GET/customers/:customerId/duplicates
Get customer's duplicates with customerId.
Request
Path Parameters
customerId uuidrequired
Responses
- 200
- default
Successful response
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
id uuidrequired
customerIdLeft uuidrequired
customerIdRight uuidrequired
description stringnullablerequired
customerInfoLeft stringnullablerequired
customerInfoRight stringnullablerequired
matchedFields stringnullablerequired
exactMatch booleannullablerequired
alertId uuidnullablerequired
createdAt date-timerequired
updatedAt date-timerequired
[
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"customerIdLeft": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"customerIdRight": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"description": "string",
"customerInfoLeft": "string",
"customerInfoRight": "string",
"matchedFields": "string",
"exactMatch": true,
"alertId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"createdAt": "2024-07-29T15:51:28.071Z",
"updatedAt": "2024-07-29T15:51:28.071Z"
}
]
Error response
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
message stringrequired
code stringrequired
issues object[]
message stringrequired
{
"message": "string",
"code": "string",
"issues": [
{
"message": "string"
}
]
}
Loading...