Stuck on a recurring 409 Conflict error when attempting to initiate a bulk export job for screen recording metadata. The issue appears specifically when the filter query includes interactions that are currently under an active legal hold.
The environment is Genesys Cloud v11.3. We are using the standard Recording API v2 endpoints. The goal is to export all screen recording metadata for digital channel interactions from the last 30 days for a routine audit. However, the job fails immediately upon creation.
The API response payload indicates:
{
"message": "The requested resource is currently locked due to an active legal hold. Please contact support or wait for the hold to be released.",
"status": 409,
"code": "CONFLICT"
}
We have verified that the legal hold status is correct and expected. The problem is that the bulk export job does not seem to have a parameter to exclude held records or to request an exception for export purposes. The documentation for /api/v2/bulkexports/jobs does not mention handling legal holds in the filter object.
Our current filter configuration is:
filter:
recordingType: screen
dateFrom: 2023-10-01T00:00:00.000Z
dateTo: 2023-10-31T23:59:59.000Z
excludeLegalHold: true # This parameter is ignored or unrecognized
We have tried removing the excludeLegalHold field, but the 409 error persists. It seems the API is locking the entire dataset if any single record is under hold, rather than just excluding those records from the export.
This is blocking our compliance audit. We need to export the non-held records immediately. Is there a way to bypass this lock for export purposes, or should we be using a different endpoint for legal hold exceptions? The chain of custody requirements are strict, so we cannot simply delete the hold.
Any insights on how to handle this conflict without disrupting the legal hold status would be appreciated. We are in the Europe/London timezone, so time zone conversions for the date filters are correct.