---
title: "List All Document Requests"
method: GET
path: "/document-requests/all"
tags: ["document_requests"]
---

# List All Document Requests

`GET /document-requests/all`

Every document request this company has made, across all of its vendors.

The only view that surfaces the renewal requests the nightly sweep files on the
company's behalf — those have no author to go looking for them.

Scoped to active vendors: an archived vendor's open requests are history, not
worklist items. Ordered by due date, so the most overdue sort first before the
client applies any sort of its own.

## Query parameters

- `status` 'waiting_on_upload' | 'submitted' | 'changes_requested' | 'fulfilled' | 'supplementary' | 'cancelled'

## Response `200`

Successful Response

- DocumentRequestOverviewRow[]
  - `request_id` string, uuid, required
  - `vendor_id` string, uuid, required
  - `vendor_name` string, required
  - `vendor_website` string, nullable
  - `document_type` string, required
  - `document_type_label` string, required
  - `status` 'waiting_on_upload' | 'submitted' | 'changes_requested' | 'fulfilled' | 'supplementary' | 'cancelled', required
  - `due_date` string, date-time, required
  - `created` string, date-time, required
  - `last_reminder_sent` string, date-time, nullable
  - `submitted_at` string, date-time, nullable
  - `recipients` DocumentRequestRecipientSummary[]
    - `user_id` string, uuid, required
    - `name` string, required
    - `email` string, required
  - `is_renewal` boolean
  - `expiration_date` string, date, nullable
  - `reviewed_at` string, date-time, nullable
  - `reviewed_by_name` string, nullable
  - `reviewed_automatically` boolean
  - `changes_requested_at` string, date-time, nullable
  - `cancelled_at` string, date-time, nullable

## 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/425d5b8a3c17/schema)
