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

# DecideReviewItemAPI mirrors erdo_decide_review_item.




## OpenAPI

````yaml /api/openapi.json post /v1/review-items/{id}/decide
openapi: 3.0.0
info:
  title: Erdo API
  description: >-
    Erdo's REST API: query and write datasets, run agents, manage threads,
    integrations, pages, evals, workstreams, and experiments. Authenticate with
    a Bearer API key (erdo_api_...) or scoped token (erdo_token_...).
  version: '2026-07-25'
servers:
  - url: https://api.erdo.ai
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/review-items/{id}/decide:
    post:
      summary: |
        DecideReviewItemAPI mirrors erdo_decide_review_item.
      operationId: POST:mcp.DecideReviewItemAPI
      parameters:
        - allowEmptyValue: true
          explode: false
          in: path
          name: id
          required: true
          schema:
            type: string
          style: simple
      requestBody:
        content:
          application/json:
            schema:
              properties:
                action:
                  type: string
                minutes:
                  format: int32
                  maximum: 2147483647
                  minimum: -2147483648
                  type: integer
                note:
                  type: string
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  item:
                    $ref: '#/components/schemas/types.ReviewItem'
                type: object
          description: Success response
        default:
          $ref: '#/components/responses/APIError'
components:
  schemas:
    types.ReviewItem:
      properties:
        agent_run_id:
          format: uuid
          type: string
        assigned_to_user_id:
          format: uuid
          type: string
        created_at:
          format: date-time
          type: string
        eval_case_id:
          format: uuid
          type: string
        id:
          format: uuid
          type: string
        organization_id:
          format: uuid
          type: string
        payload_json:
          type: object
        priority:
          type: string
        resolution_note:
          type: string
        resolved_at:
          format: date-time
          type: string
        resolved_by_user_id:
          format: uuid
          type: string
        snoozed_until:
          format: date-time
          type: string
        source_hash:
          type: string
        source_id:
          type: string
        source_type:
          type: string
        status:
          type: string
        summary:
          type: string
        thread_id:
          format: uuid
          type: string
        title:
          type: string
        type:
          type: string
        updated_at:
          format: date-time
          type: string
      type: object
  responses:
    APIError:
      content:
        application/json:
          schema:
            externalDocs:
              url: https://pkg.go.dev/encore.dev/beta/errs#Error
            properties:
              code:
                description: Error code
                example: not_found
                externalDocs:
                  url: https://pkg.go.dev/encore.dev/beta/errs#ErrCode
                type: string
              details:
                description: Error details
                type: object
              message:
                description: Error message
                type: string
            title: APIError
            type: object
      description: Error response
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: An Erdo API key (erdo_api_...) or scoped token (erdo_token_...).

````