Get active single and bulk generation requests

get /text/Generate/Bulk
This method retrieves all active single and bulk generation requests, including both pending and running requests. The response includes details such as request ID, user information, status, start and end times, and the number of completed and total records.

Requirements

Authentication Required
Bearer access_token
Request Headers
Authorization: Bearer access_token
Content-Type: application/json

Response

200
401
500
//This status is returned when the active generation requests are successfully retrieved.
//This status is returned if the API key is missing or invalid.
//The server encountered an error when processing the request.
Parameter Name Type Description
id string The unique identifier for the generation request.
userName string The username of the person who initiated the generation request.
name string The name of the person who initiated the generation request.
recordType string The type of the records in the queue (e.g. "Product").
storeId string The store ID associated with the records in the queue.
status string The current status of the queue (e.g., "Pending", "Running").
startTime string, date-time The timestamp when the generation request was started.
endTime string, date-time The timestamp when the generation request was completed (if applicable).
estimatedEndTime string, date-time The estimated time of completion for the generation request.
queuedIds array of strings A list of record IDs that are queued for processing.
runningIds array of strings A list of record IDs that are ongoing processing.
completedIds array of strings A list of record IDs that have been processed, whether successful or failed.
failedIds array of strings A list of record IDs that have failed processing.
completed integer The number of records that have been completed.
total integer The total number of records to be processed.
language string The language code associated with the generation request.