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

# Get bulk ColdSend inbox creation progress

> **Track the progress of a bulk ColdSend inbox creation job**

Returns real-time progress including:
- Overall job status and progress percentage
- Success/failure/skipped counts
- Individual per-inbox creation results
- Estimated completion time

Use the ``job_id`` from the ``POST /sender-accounts/coldsend-native/bulk`` response.



## OpenAPI

````yaml /public_openapi.json get /api/public/v1/sender-accounts/coldsend-native/bulk/{job_id}/progress
openapi: 3.0.3
info:
  title: ColdSend Public API
  description: >-
    Programmatic access to ColdSend for managing cold email campaigns and sender
    accounts.
  version: 1.0.0
  contact:
    name: ColdSend Support
    email: support@coldsend.pro
    url: https://coldsend.pro
servers:
  - url: https://api.coldsend.pro
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /api/public/v1/sender-accounts/coldsend-native/bulk/{job_id}/progress:
    get:
      tags:
        - Sender Accounts
      summary: Get bulk ColdSend inbox creation progress
      description: >-
        **Track the progress of a bulk ColdSend inbox creation job**


        Returns real-time progress including:

        - Overall job status and progress percentage

        - Success/failure/skipped counts

        - Individual per-inbox creation results

        - Estimated completion time


        Use the ``job_id`` from the ``POST
        /sender-accounts/coldsend-native/bulk`` response.
      operationId: >-
        get_coldsend_bulk_creation_progress_api_public_v1_sender_accounts_coldsend_native_bulk__job_id__progress_get
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Job Id
      responses:
        '200':
          description: Job progress retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ColdSendInboxBulkProgressResponse'
        '401':
          description: Missing or invalid API key
        '403':
          description: Insufficient permissions - requires 'sender_accounts:read' scope
        '404':
          description: Job not found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ColdSendInboxBulkProgressResponse:
      properties:
        success:
          type: boolean
          title: Success
        message:
          type: string
          title: Message
        job_id:
          type: string
          format: uuid
          title: Job Id
          description: Job ID
        domain_id:
          type: string
          format: uuid
          title: Domain Id
          description: Domain ID
        domain_name:
          type: string
          title: Domain Name
          description: Domain name
        status:
          type: string
          title: Status
          description: Job status (PENDING, IN_PROGRESS, COMPLETED, FAILED)
        progress_percentage:
          type: integer
          title: Progress Percentage
          description: Progress percentage (0-100)
        total:
          type: integer
          title: Total
          description: Total inboxes in job
        processed_count:
          type: integer
          title: Processed Count
          description: Number of inboxes processed so far
        success_count:
          type: integer
          title: Success Count
          description: Number of successfully created inboxes
        failed_count:
          type: integer
          title: Failed Count
          description: Number of failed creations
        skipped_count:
          type: integer
          title: Skipped Count
          description: Number of skipped (duplicate) inboxes
        results:
          items:
            $ref: '#/components/schemas/ColdSendInboxBulkProgressResult'
          type: array
          title: Results
          description: Per-inbox creation results
        started_at:
          type: string
          format: date-time
          nullable: true
          title: Started At
          description: Processing start time
        completed_at:
          type: string
          format: date-time
          nullable: true
          title: Completed At
          description: Processing completion time
        estimated_completion:
          type: string
          format: date-time
          nullable: true
          title: Estimated Completion
          description: Estimated completion time
        last_error:
          type: string
          nullable: true
          title: Last Error
          description: Last error encountered, if any
      type: object
      required:
        - success
        - message
        - job_id
        - domain_id
        - domain_name
        - status
        - progress_percentage
        - total
        - processed_count
        - success_count
        - failed_count
        - skipped_count
      title: ColdSendInboxBulkProgressResponse
      description: Progress response for a bulk ColdSend inbox creation job.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ColdSendInboxBulkProgressResult:
      properties:
        email_prefix:
          type: string
          title: Email Prefix
          description: Email prefix
        email_address:
          type: string
          nullable: true
          title: Email Address
          description: Full email address if created
        display_name:
          type: string
          title: Display Name
          description: Display name
        status:
          type: string
          title: Status
          description: Creation status (PENDING, SUCCESS, FAILED, SKIPPED)
        inbox_id:
          type: string
          format: uuid
          nullable: true
          title: Inbox Id
          description: Inbox ID if created
        error_message:
          type: string
          nullable: true
          title: Error Message
          description: Error message if failed
      type: object
      required:
        - email_prefix
        - display_name
        - status
      title: ColdSendInboxBulkProgressResult
      description: Per-inbox result in a bulk creation progress response.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key with format cs_live_xxx

````