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

# Submit a manager review

> Submits the manager review + an overall rating (1–5), completing the review. Requires `performance:write`.



## OpenAPI

````yaml https://api.kuahr.com/openapi/v1.json post /v1/performance/reviews/{id}/manager
openapi: 3.1.1
info:
  title: Kua API
  description: >-
    The Kua developer API — payroll, wallets, and payments for your own company.


    Authenticate with an API key issued from **Settings → API keys** in the
    dashboard, sent in the `X-Api-Key` header. Every request is scoped to the
    company that owns the key. Base URL: `https://api.kuahr.com` (all endpoints
    are versioned under `/v1`).
  version: v1
servers:
  - url: https://api.kuahr.com
    description: Production
security:
  - ApiKey: []
tags:
  - name: Payroll
    description: List and create payroll runs.
  - name: Employees
    description: Add people to your company.
  - name: Events
    description: The company event timeline (also delivered via webhooks).
  - name: Webhooks
    description: Register endpoints and inspect deliveries.
  - name: Test data
    description: Manage sandbox (test-mode) data.
  - name: Leave
    description: >-
      Time-off types, requests, balances, and allocations (requires the Leave
      add-on).
  - name: Advances
    description: Salary advances (requires the Salary advance add-on).
  - name: Performance
    description: OKRs, appraisals, and promotions (requires the Performance add-on).
paths:
  /v1/performance/reviews/{id}/manager:
    post:
      tags:
        - Performance
      summary: Submit a manager review
      description: >-
        Submits the manager review + an overall rating (1–5), completing the
        review. Requires `performance:write`.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/V1SubmitReviewRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppraisalReviewDto'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
components:
  schemas:
    V1SubmitReviewRequest:
      required:
        - body
        - rating
      type: object
      properties:
        body:
          type: string
        rating:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - 'null'
            - integer
            - string
          format: int32
    AppraisalReviewDto:
      required:
        - id
        - cycleId
        - employeeId
        - employeeName
        - managerReviewerId
        - managerName
        - status
        - selfReviewBody
        - selfReviewSubmittedAt
        - managerReviewBody
        - managerReviewSubmittedAt
        - overallRating
        - createdAt
        - updatedAt
      type: object
      properties:
        id:
          type: string
          format: uuid
        cycleId:
          type: string
          format: uuid
        employeeId:
          type: string
          format: uuid
        employeeName:
          type:
            - 'null'
            - string
        managerReviewerId:
          type:
            - 'null'
            - string
          format: uuid
        managerName:
          type:
            - 'null'
            - string
        status:
          type: string
          description: One of `PendingSelf`, `PendingManager`, `Complete`.
        selfReviewBody:
          type:
            - 'null'
            - string
        selfReviewSubmittedAt:
          type:
            - 'null'
            - string
          format: date-time
        managerReviewBody:
          type:
            - 'null'
            - string
        managerReviewSubmittedAt:
          type:
            - 'null'
            - string
          format: date-time
        overallRating:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - 'null'
            - integer
            - string
          description: Manager's rating 1–5 (null until the manager review is submitted).
          format: int32
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      description: One employee's review within a cycle.
    ApiError:
      required:
        - code
        - message
      type: object
      properties:
        code:
          type: string
          description: >-
            A stable, machine-readable identifier you can branch on, e.g.
            `INSUFFICIENT_SCOPE`.
        message:
          type: string
          description: A human-readable explanation. May change; don't parse it.
      description: The standard error body returned for 4xx responses.
  securitySchemes:
    ApiKey:
      type: apiKey
      description: Your API key, e.g. `kua_live_…` (or `kua_test_…` in test mode).
      name: X-Api-Key
      in: header

````