Get account documents
Retrieve all documents associated with a specific account, including shared status and access information.
AuthorizationBearer <token>
In: header
Path Parameters
idstring
Account ID
Format
uuid
Query Parameters
access_level?string
Filter by document access level
Value in
"public" | "restricted" | "requires_nda" | "internal"
shared_only?boolean
Only return documents currently shared with this account
Response Body
fetch("https://app.orbiqhq.com/api/v1/accounts/550e8400-e29b-41d4-a716-446655440000/documents?access_level=public&shared_only=true")
{
"documents": [
{
"id": "doc-123",
"title": "Privacy Policy",
"access_level": "public",
"is_shared": true,
"date_shared": "2025-01-10T10:00:00Z",
"category": {
"title": "Legal"
}
},
{
"id": "doc-456",
"title": "Technical Documentation",
"access_level": "restricted",
"is_shared": false,
"date_shared": null,
"category": {
"title": "Technical"
}
}
]
}
Empty
Empty
Empty
Empty
How is this guide?