> ## 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 deletion progress

> **Track the progress of a bulk sender account deletion job**

Returns the current status and results of a bulk deletion job.

## Status Values

- **PENDING**: Job is queued, not yet started
- **VALIDATING**: Deletion in progress
- **COMPLETED**: All accounts have been processed
- **FAILED**: Job encountered an error



## OpenAPI

````yaml /public_openapi.json get /api/public/v1/sender-accounts/bulk/delete/{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/bulk/delete/{job_id}/progress:
    get:
      tags:
        - Sender Accounts
      summary: Get bulk deletion progress
      description: |-
        **Track the progress of a bulk sender account deletion job**

        Returns the current status and results of a bulk deletion job.

        ## Status Values

        - **PENDING**: Job is queued, not yet started
        - **VALIDATING**: Deletion in progress
        - **COMPLETED**: All accounts have been processed
        - **FAILED**: Job encountered an error
      operationId: >-
        get_bulk_deletion_progress_api_public_v1_sender_accounts_bulk_delete__job_id__progress_get
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
            description: Job ID from bulk deletion response
            title: Job Id
          description: Job ID from bulk deletion response
      responses:
        '200':
          description: Job progress retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkSenderAccountDeleteResponse'
        '401':
          description: Missing or invalid API key
        '403':
          description: Insufficient permissions
        '404':
          description: Job not found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BulkSenderAccountDeleteResponse:
      properties:
        success:
          type: boolean
          title: Success
        message:
          type: string
          title: Message
        job_id:
          type: string
          nullable: true
          title: Job Id
          description: Job ID for tracking progress
        total:
          type: integer
          title: Total
          description: Total accounts in request
        deleted_count:
          type: integer
          title: Deleted Count
          description: Number of successfully deleted accounts
        failed_count:
          type: integer
          title: Failed Count
          description: Number of failed deletions
        skipped_count:
          type: integer
          title: Skipped Count
          description: Number of skipped accounts (not found, in use)
          default: 0
        results:
          items:
            $ref: '#/components/schemas/BulkSenderAccountDeleteResult'
          type: array
          title: Results
          description: Individual deletion results
          default: []
      type: object
      required:
        - success
        - message
        - total
        - deleted_count
        - failed_count
      title: BulkSenderAccountDeleteResponse
      description: Response for bulk sender account deletion.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    BulkSenderAccountDeleteResult:
      properties:
        inbox_id:
          type: string
          format: uuid
          nullable: true
          title: Inbox Id
          description: Sender account ID (null after deletion)
        email_address:
          type: string
          title: Email Address
          description: Email address
        status:
          type: string
          title: Status
          description: 'Deletion status: DELETED, FAILED, SKIPPED, PENDING'
        error_message:
          type: string
          nullable: true
          title: Error Message
          description: Error message if deletion failed
      type: object
      required:
        - email_address
        - status
      title: BulkSenderAccountDeleteResult
      description: Result of individual sender account deletion.
    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

````