This endpoint allows users to check the current status of a previously submitted batch email processing request. By providing a process_id, users can query the queue for details about the file being processed, including the filename, current status, and any relevant messages. Only the user who submitted the request can access the status of their specific job. If the process_id is invalid or not associated with the user, an error message is returned.
curl --request POST \
--url https://api.revenuebase.ai/v1/batch-process-email-status \
--header 'Content-Type: application/json' \
--header 'x-key: <api-key>' \
--data '
{
"process_id": 123
}
'{
"process_id": 123,
"filename": "<string>",
"current_status": "<string>",
"message": "<string>"
}curl --request POST \
--url https://api.revenuebase.ai/v1/batch-process-email-status \
--header 'Content-Type: application/json' \
--header 'x-key: <api-key>' \
--data '
{
"process_id": 123
}
'{
"process_id": 123,
"filename": "<string>",
"current_status": "<string>",
"message": "<string>"
}