Company logoTrust Center Documentation

List documents

Retrieve all non-certification documents for the current tenant, with filtering and category information.

GET
/api/v1/documents
AuthorizationBearer <token>

In: header

Query Parameters

search?string

Search documents by title or description

category?string

Filter by category ID

Formatuuid
access_level?string

Filter by access level

Value in"public" | "restricted" | "requires_nda" | "internal"
state?string

Filter by document state

Value in"valid" | "pending" | "expired" | "inactive"
featured?boolean

Filter by featured status

Response Body

fetch("https://app.orbiqhq.com/api/v1/documents?search=string&category=497f6eca-6276-4993-bfeb-53cbbbba6f08&access_level=public&state=valid&featured=true")

{
  "documents": [
    {
      "id": "doc-123",
      "title": "Privacy Policy",
      "description": "Company privacy policy document",
      "access_level": "public",
      "state": "valid",
      "featured": true,
      "category": {
        "title": "Legal"
      }
    }
  ]
}
Empty
Empty

How is this guide?