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

# Resume TAM Builder Job

> Resume a `paused` build from its checkpoint. It continues from the checkpoint where it was paused, Only new companies delivered are charged.



## OpenAPI

````yaml agent-primitives/openapi.json POST /api/v1/tam/build/{job_id}/resume
openapi: 3.1.0
info:
  title: OpenFunnel Agent Primitives
  version: 1.0.0
servers:
  - url: https://api.openfunnel.dev
security: []
paths:
  /api/v1/tam/build/{job_id}/resume:
    post:
      tags:
        - Resume TAM Builder Job
      summary: Resume TAM Builder Job
      description: >-
        Resume a `paused` build from its checkpoint. It continues from the
        checkpoint where it was paused, Only new companies delivered are
        charged.
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
            title: Job Id
          description: The `job_id` returned by the TAM build submit endpoint.
        - name: X-API-Key
          in: header
          required: true
          schema:
            type: string
            title: X-Api-Key
      responses:
        '200':
          description: Resume accepted; the job is `running` again.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TamBuildResumeResponse'
              example:
                job_id: 8a8e8a97-8192-48ff-849a-d8a96e949732
                status: running
                message: >-
                  Resume started. Poll GET
                  /api/v1/tam/build/8a8e8a97-8192-48ff-849a-d8a96e949732 for
                  status and results.
        '404':
          description: Job not found for this API key.
        '409':
          description: >-
            Job already finished (completed / failed / cancelled); cannot
            cancel.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TamBuildResumeResponse:
      type: object
      title: TamBuildResumeResponse
      description: Returned when a paused build is resumed.
      required:
        - job_id
        - status
        - message
      properties:
        job_id:
          type: string
          title: Job Id
        status:
          type: string
          default: running
          title: Status
        message:
          type: string
          title: Message
    HTTPValidationError:
      type: object
      properties:
        detail:
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
    ValidationError:
      type: object
      required:
        - loc
        - msg
        - type
      properties:
        loc:
          type: array
          items:
            anyOf:
              - type: string
              - type: integer
        msg:
          type: string
        type:
          type: string

````