v1

latestOpenAPI 3.1.0Apache 2.02026-07-245981,1853.0 MB
Deduplicate Data Subjects

Get List of Scheduled Exports

Use this API to retrieve a list of all scheduled exports of duplicate data subjects. The response will include the merge request ID along with the associated merge request name, export frequency, and export status.

get/api/consentmanager/v1/scheduled-jobs/merge-request

Query parameters

pageinteger required

Page number (0-based)

sizeinteger required
Example:20

Number of records per page

Response

OK - Successfully retrieved list of scheduled exports

emptyboolean

The flag to check if the entity is empty or not.

firstboolean

The flag to check if the entity is first entity or not.

lastboolean

The flag to check if the entity is last entity or not.

numberinteger

The number associated with the result.

numberOfElementsinteger

Total number of elements in the result.

totalPagesinteger

Total number of pages in the result list.

totalElementsinteger

Total number of elements in the result.

sizeinteger

Size of the result list.

Example response

{
  "content": [
    {
      "mergeRequestId": "8e453d7c-eb4f-4139-913a-3d1f93977665",
      "mergeRequestName": "Monthly Duplicate Data Subjects Export",
      "triggerTime": "2025-10-01T00:00:00Z",
      "jobStatus": "PENDING",
      "mergeCondition": "ANY",
      "totalDataSubjectCount": 150,
      "duplicateDataSubjectCount": 25,
      "customDataElementNames": [
        "email",
        "phone"
      ]
    }
  ],
  "first": true,
  "numberOfElements": 20,
  "totalPages": 5,
  "totalElements": 50,
  "size": 20
}