This endpoint retrieves all email batch processing jobs that are currently in the ‘QUEUED’ or ‘PROCESSING’ status for the authenticated user. It returns a list of processes including their process IDs, filenames, statuses, messages, and last updated timestamps.
curl --request GET \
--url https://api.revenuebase.ai/v1/queued-process \
--header 'x-key: <api-key>'{
"processes": [
{
"process_id": 123,
"filename": "<string>",
"status": "<string>",
"message": "<string>",
"last_updated": "2023-11-07T05:31:56Z"
}
]
}curl --request GET \
--url https://api.revenuebase.ai/v1/queued-process \
--header 'x-key: <api-key>'{
"processes": [
{
"process_id": 123,
"filename": "<string>",
"status": "<string>",
"message": "<string>",
"last_updated": "2023-11-07T05:31:56Z"
}
]
}