Retrieve paginated person merge tasks for the organization.
Returns all merge tasks initiated by users in your organization, including their current status, the persons involved, and task details.
You can filter tasks using the filter query parameter. The filter parameter is a string that you can specify conditions based on the following properties:
| Property | Type | Operators | Values | Examples |
|---|---|---|---|---|
status | enum | = | in-progress, success, failed | status=failed |
Tasks are returned in reverse chronological order (most recent first).
Requires the “Manage duplicates” permission and organization admin role.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Cursor for the next or previous page
"ICAgICAgYmVmb3JlOjo6Nw"
Number of items to include in the page
1 <= x <= 10025
Filter tasks using Affinity Filtering Language
OK
Paginated person merge tasks
Array of person merge tasks
100[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"status": "success",
"resultsSummary": {
"total": 1,
"inProgress": 0,
"success": 1,
"failed": 0
}
},
{
"id": "456e7890-e12b-34c5-d678-901234567890",
"status": "failed",
"resultsSummary": {
"total": 1,
"inProgress": 0,
"success": 0,
"failed": 1
}
}
]{
"prevUrl": "https://api.affinity.co/v2/foo?cursor=ICAgICAgYmVmb3JlOjo6Nw",
"nextUrl": "https://api.affinity.co/v2/foo?cursor=ICAgICAgIGFmdGVyOjo6NA"
}