Company logoTrust Center Documentation
API v1 ReferenceAccountsIdDocuments

Get account documents

Retrieve all documents associated with a specific account, including shared status and access information. Browse request parameters, authentication…

GET
/api/v1/accounts/{id}/documents

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

Formatuuid

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

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?