POST /api/v2/bulkexports/jobs returns 500 Internal Server Error when filtering for digital channel interactions with bot transcripts.
The issue occurs specifically when attempting to export recording metadata for interactions where the AI bot was active. The environment is a standard Genesys Cloud instance in the EU region, and the user account has the Recording Export Specialist role with full read permissions on digital channels. The export job is initiated via the bulk export API, targeting interactions from the last 48 hours. The filter object is constructed as follows:
{
“type”: “recording”,
“filter”: {
“date_range”: {
“start”: “2023-10-25T00:00:00.000Z”,
“end”: “2023-10-27T00:00:00.000Z”
},
“metadata”: {
“channel”: “digital”,
“bot_active”: true
}
}
}
The error response body is minimal:
{
“message”: “Internal server error”,
“code”: 500
}
No further details are provided in the response. The same filter works without issue for voice interactions, and digital channel exports succeed when the bot_active flag is removed. This suggests the problem is tied to the specific metadata schema for bot transcripts in digital channels. The chain of custody requirements for legal discovery mandate that we capture the full transcript, including bot responses, and any failure here blocks our ability to produce compliant records. The audit trail shows the job fails immediately upon submission, not during the export process. We have tried varying the date range and using different user tokens with identical results. The S3 presigned URL generation is not reached, so storage permissions are not the issue. The Recording API documentation does not explicitly state that bot_active is a valid filter key for digital channels, but it is implied by the presence of bot transcript metadata in the individual recording endpoints. Is there a known limitation with bulk exports for bot interactions? Or is there a specific schema requirement for the filter object that we are missing? The urgency is high because we have a legal hold pending for these interactions.