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

# Retry Pending Entry

> Re-queue a failed/done ConsolidationQueue entry so the worker
reprocesses it. `recursive=true` also re-enqueues descendants below
the artifact in the Ideation→Refinement→Spec→Sprint→Card hierarchy.

Idempotency: content_hash BR still owns "nothing actually changed"
no-op behaviour downstream, so retrying an unchanged artifact is a
cheap round-trip that touches the outbox once.



## OpenAPI

````yaml /openapi.json post /api/v1/kg/boards/{board_id}/pending/{queue_entry_id}/retry
openapi: 3.1.0
info:
  description: >-
    Okto Pulse REST API schema generated from okto-pulse-core 0.2.0 source for
    docs.oktolabs.ai.
  title: Okto Pulse
  version: 0.2.0
servers: []
security: []
paths:
  /api/v1/kg/boards/{board_id}/pending/{queue_entry_id}/retry:
    post:
      tags:
        - knowledge-graph
        - knowledge-graph
      summary: Retry Pending Entry
      description: |-
        Re-queue a failed/done ConsolidationQueue entry so the worker
        reprocesses it. `recursive=true` also re-enqueues descendants below
        the artifact in the Ideation→Refinement→Spec→Sprint→Card hierarchy.

        Idempotency: content_hash BR still owns "nothing actually changed"
        no-op behaviour downstream, so retrying an unchanged artifact is a
        cheap round-trip that touches the outbox once.
      operationId: >-
        retry_pending_entry_api_v1_kg_boards__board_id__pending__queue_entry_id__retry_post
      parameters:
        - in: path
          name: board_id
          required: true
          schema:
            title: Board Id
            type: string
        - in: path
          name: queue_entry_id
          required: true
          schema:
            title: Queue Entry Id
            type: string
        - description: Also re-enqueue descendant entries
          in: query
          name: recursive
          required: false
          schema:
            default: false
            description: Also re-enqueue descendant entries
            title: Recursive
            type: boolean
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object

````