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

# Resume page report agent

> Resumes an existing page report run from the next pending block.



## OpenAPI

````yaml /api-reference/openapi.json post /v2/pages/{id}/run
openapi: 3.1.0
info:
  title: Base39 API
  description: Base39 API
  version: 1.0.0
  contact:
    name: Base39 Team
    url: https://base39.com.br
    email: suporte@base39.com.br
  termsOfService: https://base39.com.br/termos
  license:
    name: Proprietary
    url: https://base39.com.br/termos
servers:
  - url: http://localhost:3000
    description: Local
  - url: https://api.dev.base39.cloud
    description: Development
  - url: https://api.base39.com.br
    description: Production
security:
  - OAuth2: []
tags:
  - name: pages
    description: Profiles and reports pages
  - name: pipelines
    description: Pipeline boards (kanban) of pages
  - name: blocks
    description: Blocks operations
  - name: search
    description: Search across content
  - name: targets
    description: Lookup targets via datasets
  - name: CognitoTriggers
    description: Cognito triggers
paths:
  /v2/pages/{id}/run:
    post:
      tags:
        - pages
      summary: Resume page report agent
      description: Resumes an existing page report run from the next pending block.
      operationId: page_run
      parameters:
        - name: id
          required: true
          in: path
          description: Page ID
          schema:
            type: string
        - name: continue
          required: false
          in: query
          description: >-
            When present, continues the existing page run from the next pending
            block instead of starting a new one.
          schema:
            type: boolean
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RunPageInput'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunPageOutput'
        '400':
          description: Page does not have a agent
        '404':
          description: Page not found
        '409':
          description: >-
            Page already has an active run (only when starting a new run;
            `continue` reuses the active run)
components:
  schemas:
    RunPageInput:
      type: object
      properties:
        max_iterations:
          type: number
          description: Maximum report run iterations
          minimum: 1
          maximum: 20
        session_id:
          type: string
          description: >-
            Existing session ID required when continuing a page run from a
            webhook
        current_block_id:
          type: string
          description: Completed block ID used to continue from the next pending block
    RunPageOutput:
      type: object
      properties:
        session_id:
          type: string
        outcomes:
          type: array
          items:
            $ref: '#/components/schemas/RunPageOutcomeOutput'
        next_block_id:
          type: string
          nullable: true
        next_outcome_id:
          type: string
          nullable: true
        archived:
          type: boolean
      required:
        - session_id
        - outcomes
    RunPageOutcomeOutput:
      type: object
      properties:
        block_id:
          type: string
        title:
          type: string
        index:
          type: number
        status:
          type: string
          enum:
            - pending
            - running
            - evaluating
            - completed
            - failed
        result:
          type: string
          nullable: true
        iteration:
          type: number
          nullable: true
      required:
        - block_id
        - title
        - index
        - status
        - result
        - iteration
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://id.local.base39.cloud/oauth2/authorize
          tokenUrl: https://id.local.base39.cloud/oauth2/token
          scopes:
            profile: Read user profile
            email: Read user email
            openid: OpenID authentication
      description: OAuth2 Authorization Code flow

````