---
title: "Get Document Request Review"
method: GET
path: "/document-requests/{request_id}/review"
tags: ["document_requests"]
---

# Get Document Request Review

`GET /document-requests/{request_id}/review`

## Path parameters

- `request_id` string, uuid, required

## Response `200`

Successful Response

- DocumentRequestReviewResponse — Everything the internal review drawer needs in one round trip.
  - `request_id` string, uuid, required
  - `status` 'waiting_on_upload' | 'submitted' | 'changes_requested' | 'fulfilled' | 'supplementary' | 'cancelled', required
  - `document_type_label` string, required
  - `vendor_name` string, required
  - `due_date` string, date-time, required
  - `expiration_date` string, date, nullable
  - `is_renewal` boolean, required
  - `recipients` DocumentRequestRecipientSummary[], required
    - `user_id` string, uuid, required
    - `name` string, required
    - `email` string, required
  - `submitted_files` DocumentRequestSubmittedFile[], required
    - `file_id` string, uuid, required
    - `upload_id` string, uuid, required
    - `filename` string, required
    - `created` string, date-time, required
  - `events` DocumentRequestEventResponse[], required
    - `event_id` string, uuid, required
    - `action_type` 'requested' | 'submitted' | 'changes_requested' | 'fulfilled' | 'cancelled' | 'reminder_sent', required — What one line of a request's activity timeline can be. A superset of ``DocumentRequestEventType``, sharing all of its values verbatim. The stored log only records transitions somebody performs; the ask itself and the reminders chasing it are columns on ``document_requests``, and the timeline reports them alongside the logged events. A second enum rather than two more members on the first, because the stored ``action_type`` is a Postgres ENUM and a derived line must never become a value that column would accept.
    - `author` DocumentRequestEventAuthor
      - `user_id` string, uuid, required
      - `first_name` string, required
      - `last_name` string, required
    - `actor_label` string, nullable
    - `author_company_id` string, uuid, required
    - `visibility` 'shared' | 'internal', required
    - `body` string, nullable
    - `file_id` string, uuid, nullable
    - `created` string, date-time, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/kobaltlabs/apis/fastapi.md) · [All operations](https://skmtc.dev/kobaltlabs/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/kobaltlabs/fastapi/revisions/3ff4c0bd276b/schema)
