Duplicate Rows¶
/api/repositories/{repository}/entities/{entity}/duplicatesindicator/{duplicateId}/duplicates
| Parameter | Type | Purpose |
|---|---|---|
| repository | string | the name of the Repository |
| entity | int | The ID of the entity to view |
| duplicateId | int | The value of the duplicate indicator row |
-
GET/api/repositories/(string: repository)/entities/(int: entityID)/duplicatesindicator/{duplicateId}/duplicates¶ Lists the sets of duplicate rows with a given value in the Entity
GET /api/repositories/jupiter/entities/1/duplicatesindicator/{duplicateId}/duplicates HTTP/1.1
Accept: application/json
| Response Code | Reason |
|---|---|
| 200 | No error |
| 500 | Server error |
The response will be a Standard Response, with a list of rows in the Entity.
The columns array will contain the list of columns for each data row.
If there are no duplicate rows with a given value in the Entity, rows will be an empty string.
Commands¶
-
POST/api/repositories/(string: repository)/entities/{entity}/duplicatesindicator/{duplicateId}/duplicates¶ Executes commands for the duplicate rows in the repositories.
The request requires a Standard Request packet. Available commands are:
| Command | Description |
|---|---|
| get | Get a filtered list of duplicate rows from an entity from the repository |
The response is a Standard Response; the datarows array will have an element for each row that matches the criteria.
Get¶
POST /api/repositories/jupiter/entities/1/duplicatesindicator/{duplicateId}/duplicates HTTP/1.1
Content-Type: application/json
{
"command": "get"
}
| Response Code | Reason |
|---|---|
| 200 | Success |
| 500 | Server error |
The request packet must contain the command and options elements. The data element is not required.
All fields are required.