> ## Documentation Index
> Fetch the complete documentation index at: https://docs.revenuebase.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Check the status of a batch job

> ⚠️ Deprecated — use [GET /v2/jobs/{processId}](https://docs.revenuebase.ai/api-reference/jobs/get-batch-job-status) instead. Sunset: Tue, 07 Jul 2026.

Returns the current processing status for a batch job. Only the user who submitted the job can query it.

Possible statuses: `QUEUED`, `PROCESSING`, `COMPLETED`, `ERROR`, `CANCELLING`, `CANCELLED`.

**Errors**
- `400` — Invalid `process_id` or job does not belong to your account.



## OpenAPI

````yaml https://api.revenuebase.ai/v1/openapi.json post /v1/batch-process-email-status
openapi: 3.1.0
info:
  title: Revenuebase Email Verification
  description: >-
    This API provides endpoints for validating email addresses individually or
    through file uploads.
  version: 0.1.0
servers:
  - url: https://api.revenuebase.ai
security: []
paths:
  /v1/batch-process-email-status:
    post:
      tags:
        - Email Processing
      summary: Check the status of a batch job
      description: >-
        ⚠️ Deprecated — use [GET
        /v2/jobs/{processId}](https://docs.revenuebase.ai/api-reference/jobs/get-batch-job-status)
        instead. Sunset: Tue, 07 Jul 2026.


        Returns the current processing status for a batch job. Only the user who
        submitted the job can query it.


        Possible statuses: `QUEUED`, `PROCESSING`, `COMPLETED`, `ERROR`,
        `CANCELLING`, `CANCELLED`.


        **Errors**

        - `400` — Invalid `process_id` or job does not belong to your account.
      operationId: batch_email_status_v1_batch_process_email_status_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BatchEmailStatusRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BatchEmailStatusResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      deprecated: true
      security:
        - APIKeyHeader: []
components:
  schemas:
    BatchEmailStatusRequest:
      properties:
        process_id:
          type: integer
          title: Process Id
      type: object
      required:
        - process_id
      title: BatchEmailStatusRequest
    BatchEmailStatusResponse:
      properties:
        process_id:
          type: integer
          title: Process Id
        filename:
          type: string
          title: Filename
        current_status:
          type: string
          title: Current Status
        message:
          type: string
          title: Message
      type: object
      required:
        - process_id
        - filename
        - current_status
        - message
      title: BatchEmailStatusResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-key

````