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

# Reject a review request



## OpenAPI

````yaml https://raw.githubusercontent.com/lightdash/lightdash/refs/heads/main/packages/backend/src/generated/swagger.json post /api/v1/projects/{projectUuid}/review-requests/{requestUuid}/reject
openapi: 3.0.0
info:
  title: Lightdash API
  version: 2.103.0
  description: >
    Open API documentation for all public Lightdash API endpoints. #
    Authentication Before you get started, you might need to create a Personal
    Access Token to authenticate via the API. You can create a token by
    following this guide: https://docs.lightdash.com/references/personal_tokens
  license:
    name: MIT
  contact:
    name: Lightdash Support
    email: support@lightdash.com
    url: https://docs.lightdash.com/help-and-contact/contact/contact_info/
servers:
  - url: /
security: []
tags:
  - name: My Account
    description: These routes allow users to manage their own user account.
  - name: Organizations
    description: >-
      Each user is a member of a single organization. These routes allow users
      to manage their organization. Most actions are only available to admin
      users.
  - name: Projects
    description: >-
      Projects belong to a single organization. These routes allow users to
      manage their projects, browse content, and execute queries. Users inside
      an organization might have access to a project from an organization-level
      role or they might be granted access to a project directly.
  - name: Spaces
    description: >-
      Spaces allow you to organize charts and dashboards within a project. They
      also allow granular access to content by allowing you to create private
      spaces, which are only accessible to the creator and admins.
  - name: Roles & Permissions
    description: >-
      These routes allow users to manage roles and permissions for their
      organization.
    externalDocs:
      url: https://docs.lightdash.com/references/roles
  - name: Query
    description: >-
      These routes allow users to execute and manage queries against their data
      warehouse. This includes metric queries, SQL queries, and retrieving query
      results.
paths:
  /api/v1/projects/{projectUuid}/review-requests/{requestUuid}/reject:
    post:
      tags:
        - Content Review Requests
      summary: Reject a review request
      operationId: rejectContentReviewRequest
      parameters:
        - in: path
          name: projectUuid
          required: true
          schema:
            $ref: '#/components/schemas/UUID'
        - in: path
          name: requestUuid
          required: true
          schema:
            $ref: '#/components/schemas/UUID'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RejectContentReviewRequestBody'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiContentReviewRequestResponse'
        default:
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorPayload'
      security: []
components:
  schemas:
    UUID:
      type: string
      format: uuid
      description: |-
        Stringified UUIDv4.
        See [RFC 4112](https://tools.ietf.org/html/rfc4122)
      pattern: >-
        [0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-4[0-9A-Fa-f]{3}-[89ABab][0-9A-Fa-f]{3}-[0-9A-Fa-f]{12}
    RejectContentReviewRequestBody:
      properties:
        note:
          type: string
      required:
        - note
      type: object
    ApiContentReviewRequestResponse:
      properties:
        results:
          $ref: '#/components/schemas/ContentReviewRequestDetail'
        status:
          type: string
          enum:
            - ok
          nullable: false
      required:
        - results
        - status
      type: object
    ApiErrorPayload:
      properties:
        error:
          properties:
            data:
              $ref: '#/components/schemas/AnyType'
              description: Optional data containing details of the error
            message:
              type: string
              description: A friendly message summarising the error
            name:
              type: string
              description: Unique name for the type of error
            statusCode:
              type: number
              format: integer
              description: HTTP status code
          required:
            - name
            - statusCode
          type: object
        status:
          type: string
          enum:
            - error
          nullable: false
      required:
        - error
        - status
      type: object
      description: |-
        The Error object is returned from the api any time there is an error.
        The message contains
    ContentReviewRequestDetail:
      allOf:
        - $ref: '#/components/schemas/ContentReviewRequestListItem'
        - properties:
            verifyByDefault:
              type: boolean
            canVerify:
              type: boolean
            canReview:
              type: boolean
            moveSet:
              items:
                $ref: '#/components/schemas/ContentReviewMovedItem'
              type: array
          required:
            - verifyByDefault
            - canVerify
            - canReview
            - moveSet
          type: object
    AnyType:
      description: |-
        This AnyType is an alias for any
        The goal is to make it easier to identify any type in the codebase
        without having to eslint-disable all the time
        These are only used on legacy `any` types, don't use it for new types.
        This is added on a separate file to avoid circular dependencies.
    ContentReviewRequestListItem:
      allOf:
        - $ref: '#/components/schemas/ContentReviewRequest'
        - properties:
            targetSpaceName:
              type: string
              nullable: true
            sourceSpaceName:
              type: string
              nullable: true
            content:
              allOf:
                - $ref: '#/components/schemas/ContentReviewContentSummary'
              nullable: true
          required:
            - targetSpaceName
            - sourceSpaceName
            - content
          type: object
    ContentReviewMovedItem:
      properties:
        name:
          type: string
        contentUuid:
          type: string
        contentType:
          $ref: '#/components/schemas/ContentReviewContentType'
      required:
        - name
        - contentUuid
        - contentType
      type: object
    ContentReviewRequest:
      properties:
        updatedAt:
          type: string
          format: date-time
        createdAt:
          type: string
          format: date-time
        grantedPrincipals:
          items:
            $ref: '#/components/schemas/ContentReviewGrantedPrincipal'
          type: array
        movedContent:
          items:
            $ref: '#/components/schemas/ContentReviewMovedItem'
          type: array
        verifiedOnApprove:
          type: boolean
          nullable: true
        reviewNote:
          type: string
          nullable: true
        reviewedAt:
          type: string
          format: date-time
          nullable: true
        reviewedBy:
          allOf:
            - $ref: '#/components/schemas/ContentReviewUser'
          nullable: true
        status:
          $ref: '#/components/schemas/ContentReviewRequestStatus'
        similarContent:
          items:
            $ref: '#/components/schemas/ContentReviewSimilarContentItem'
          type: array
        requestNote:
          type: string
          nullable: true
        requestedBy:
          $ref: '#/components/schemas/ContentReviewUser'
        targetSpaceUuid:
          type: string
          nullable: true
        sourceSpaceUuid:
          type: string
        contentUuid:
          type: string
        contentType:
          $ref: '#/components/schemas/ContentReviewContentType'
        projectUuid:
          type: string
        uuid:
          type: string
      required:
        - updatedAt
        - createdAt
        - grantedPrincipals
        - movedContent
        - verifiedOnApprove
        - reviewNote
        - reviewedAt
        - reviewedBy
        - status
        - similarContent
        - requestNote
        - requestedBy
        - targetSpaceUuid
        - sourceSpaceUuid
        - contentUuid
        - contentType
        - projectUuid
        - uuid
      type: object
    ContentReviewContentSummary:
      properties:
        slug:
          type: string
        name:
          type: string
      required:
        - slug
        - name
      type: object
    ContentReviewContentType:
      enum:
        - chart
        - dashboard
        - sql_chart
      type: string
    ContentReviewGrantedPrincipal:
      properties:
        principal:
          $ref: '#/components/schemas/DirectAccessPrincipalRef'
        resourceUuid:
          type: string
        resourceType:
          $ref: '#/components/schemas/DirectAccessResourceType'
      required:
        - principal
        - resourceUuid
        - resourceType
      type: object
    ContentReviewUser:
      properties:
        lastName:
          type: string
        firstName:
          type: string
        userUuid:
          type: string
      required:
        - lastName
        - firstName
        - userUuid
      type: object
    ContentReviewRequestStatus:
      enum:
        - pending
        - approved
        - rejected
        - cancelled
      type: string
    ContentReviewSimilarContentItem:
      properties:
        score:
          type: number
          format: double
        isVerified:
          type: boolean
        spaceName:
          type: string
        spaceUuid:
          type: string
        slug:
          type: string
        name:
          type: string
        contentUuid:
          type: string
        contentType:
          $ref: '#/components/schemas/ContentReviewContentType'
      required:
        - score
        - isVerified
        - spaceName
        - spaceUuid
        - slug
        - name
        - contentUuid
        - contentType
      type: object
    DirectAccessPrincipalRef:
      properties:
        uuid:
          $ref: '#/components/schemas/UUID'
        type:
          $ref: '#/components/schemas/DirectAccessPrincipalType'
      required:
        - uuid
        - type
      type: object
      description: Principal reference used by administration requests and imports.
    DirectAccessResourceType:
      description: >-
        Closed registry of resource types that support direct access grants.

        Growing this union means adding a resource registry entry, an

        `AccessTarget` mapping, and grant tables — never a new handler
        hierarchy.
      enum:
        - dashboard
        - chart
        - sqlChart
        - app
      type: string
    DirectAccessPrincipalType:
      enum:
        - user
        - group
      type: string

````