Get account documents
Retrieve all documents associated with a specific account, including shared status and access information. Browse request parameters, authentication…
Retrieve all documents associated with a specific account, including shared status and access information.
Authorization
bearerAuth AuthorizationBearer <token>
In: header
Path Parameters
id*string
Account ID
Format
uuidQuery Parameters
access_level?string
Filter by document access level
Value in
- "public"
- "restricted"
- "requires_nda"
- "internal"
Response Body
application/json
curl -X GET "https://example.com/api/v1/accounts/550e8400-e29b-41d4-a716-446655440000/documents?access_level=restricted&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" } } ]}How is this guide?