List potential duplicates
Request
Method: GET
Path: /api/potential-duplicates
Authentication: Not required
Parameters
| Name | Type | In | Required | Description |
|---|---|---|---|---|
| undefined | string | undefined | No |
Responses
200 - Potential duplicates for the tenant
Examples
cURL
curl -X GET \
-H "Content-Type: application/json" \
http://localhost:3000/api/potential-duplicates
JavaScript
const response = await fetch('http://localhost:3000/api/potential-duplicates', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);
This documentation is automatically generated from the OpenAPI specification.