Overview
Retrieves the complete metadata and information for a document family using its file system path. Returns theDocumentFamily
object without downloading the actual file content.
Endpoint
Path Parameters
Parameter | Type | Required | Description |
---|---|---|---|
orgSlug | string | Yes | Organization slug |
slug | string | Yes | Store slug |
version | string | No | Store version (uses current version if not specified) |
** | string | Yes | File path within the store |
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
meta | boolean | Yes | Must be present to retrieve metadata instead of content |
path | string | No | Alternative way to specify path (overrides URL path) |
Example Usage
Get metadata by URL path
Get metadata using path parameter
Get metadata from specific version
Using Python SDK
Response
Returns aDocumentFamily
object:
Response Fields
Field | Type | Description |
---|---|---|
id | string | Unique identifier for the document family |
path | string | File system path within the store |
locked | boolean | Whether the document is locked for editing |
nativeContentObject | object | The primary/latest content object |
contentObjects | array | All content objects (versions) for this document |
metadata | object | Custom metadata key-value pairs |
labels | array | Classification labels applied to the document |
documentStatus | object | Current processing status |
activeAssistant | object | AI assistant currently processing this document |
assignee | object | User assigned to review this document |
created | string | ISO 8601 timestamp of creation |
updated | string | ISO 8601 timestamp of last update |
Use Cases
Check if document exists
Verify content type before download
Check document processing status
Error Responses
- 404 Not Found: Document family does not exist at the specified path
- 400 Bad Request: Invalid path format or missing
meta
parameter - 403 Forbidden: Insufficient permissions to access the document