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

# Resume Brand Bulk Load Run

> Resume a paused run, or a spend-capped run under a raised ceiling.

Also the operator's manual recovery lever: resuming clears any stale lease
and re-enqueues the slice, so a run whose worker was killed between sweep
cycles restarts immediately.



## OpenAPI

````yaml /openapi.json post /api/v1/admin/brand-bulk-load/{run_id}/resume
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/admin/brand-bulk-load/{run_id}/resume:
    post:
      tags:
        - Admin Brand Bulk Load
        - Admin
      summary: Resume Brand Bulk Load Run
      description: >-
        Resume a paused run, or a spend-capped run under a raised ceiling.


        Also the operator's manual recovery lever: resuming clears any stale
        lease

        and re-enqueues the slice, so a run whose worker was killed between
        sweep

        cycles restarts immediately.
      operationId: >-
        resume_brand_bulk_load_run_api_v1_admin_brand_bulk_load__run_id__resume_post
      parameters:
        - name: run_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Run Id
      requestBody:
        content:
          application/json:
            schema:
              anyOf:
                - $ref: '#/components/schemas/BrandBulkLoadResumeRequest'
                - type: 'null'
              title: Body
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrandBulkLoadControlResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    BrandBulkLoadResumeRequest:
      properties:
        max_spend_usd:
          anyOf:
            - type: number
              exclusiveMinimum: 0
            - type: 'null'
          title: Max Spend Usd
      type: object
      title: BrandBulkLoadResumeRequest
      description: |-
        Optionally raise the ceiling while resuming.

        Required when the run stopped at ``spend_limit_reached`` — resuming into
        the same ceiling would stop again immediately.
    BrandBulkLoadControlResponse:
      properties:
        run_id:
          type: string
          title: Run Id
        status:
          type: string
          title: Status
      type: object
      required:
        - run_id
        - status
      title: BrandBulkLoadControlResponse
    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:
    HTTPBearer:
      type: http
      scheme: bearer

````