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

# Reject a review request



## OpenAPI

````yaml /api-reference/openapi.json post /v1/identity/review-requests/{request_id}/reject
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.21.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/identity/review-requests/{request_id}/reject:
    post:
      tags:
        - identity
      summary: Reject a review request
      operationId: rejectReviewRequest
      parameters:
        - name: request_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Request Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RejectReviewRequestBody'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReviewRequestResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    RejectReviewRequestBody:
      properties:
        resolution_note:
          anyOf:
            - type: string
            - type: 'null'
          title: Resolution Note
      type: object
      title: RejectReviewRequestBody
    ReviewRequestResponse:
      properties:
        id:
          type: string
          title: Id
        org_id:
          type: string
          title: Org Id
        request_type:
          type: string
          enum:
            - merge
            - update
          title: Request Type
        status:
          type: string
          title: Status
        left_end_user_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Left End User Id
        right_end_user_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Right End User Id
        suggested_survivor_end_user_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Suggested Survivor End User Id
        target_end_user_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Target End User Id
        proposed_identifier_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Proposed Identifier Type
        proposed_masked_value:
          anyOf:
            - type: string
            - type: 'null'
          title: Proposed Masked Value
        reason:
          type: string
          title: Reason
        trigger_identifier_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Trigger Identifier Type
        trigger_masked_value:
          anyOf:
            - type: string
            - type: 'null'
          title: Trigger Masked Value
        evidence:
          additionalProperties: true
          type: object
          title: Evidence
          default: {}
        created_at:
          type: string
          title: Created At
        updated_at:
          type: string
          title: Updated At
        resolved_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Resolved At
        resolution_note:
          anyOf:
            - type: string
            - type: 'null'
          title: Resolution Note
      type: object
      required:
        - id
        - org_id
        - request_type
        - status
        - reason
        - created_at
        - updated_at
      title: ReviewRequestResponse
      description: |-
        Polymorphic identity review request.

        ``request_type`` is ``"merge"`` or ``"update"``. Fields relevant to each
        type are populated accordingly (left/right for merge, target/proposed_*
        for update).
    ErrorResponse:
      properties:
        error:
          type: string
          title: Error
        message:
          type: string
          title: Message
      type: object
      required:
        - error
        - message
      title: ErrorResponse
      description: Standard error response returned by all API error handlers.
    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:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````