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
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
}