Update a document
/documents/{id}
Update document metadata only
Path Parameters
id: string
Body Parameters
client_profile_id: optional string
Client profile ID if associated with an individual
enable_ai_suggestions: optional boolean
Whether this document should be used for AI suggestions
entity_id: optional string
Entity ID if this document is owned by an entity
name: optional string
Display name of the document
Returns
Update a document
curl https://$WITHLUMINARY_SUBDOMAIN.withluminary.com/api/public/v1/documents/$ID \
-X PUT \
-H 'Content-Type: application/json' \
-d '{}'
{
"id": "document_01ARZ3NDEKTSV4RRFFQ69G5FAV",
"created_at": "2024-01-15T09:30:00Z",
"household_id": "household_01ARZ3NDEKTSV4RRFFQ69G5FAV",
"name": "Trust Agreement.pdf",
"type": "GRAT_DESIGN_SUMMARY",
"updated_at": "2024-01-20T14:45:00Z",
"client_profile_id": "client_profile_01ARZ3NDEKTSV4RRFFQ69G5FAV",
"enable_ai_suggestions": true,
"entity_id": "entity_01ARZ3NDEKTSV4RRFFQ69G5FAV"
}
Returns Examples
{
"id": "document_01ARZ3NDEKTSV4RRFFQ69G5FAV",
"created_at": "2024-01-15T09:30:00Z",
"household_id": "household_01ARZ3NDEKTSV4RRFFQ69G5FAV",
"name": "Trust Agreement.pdf",
"type": "GRAT_DESIGN_SUMMARY",
"updated_at": "2024-01-20T14:45:00Z",
"client_profile_id": "client_profile_01ARZ3NDEKTSV4RRFFQ69G5FAV",
"enable_ai_suggestions": true,
"entity_id": "entity_01ARZ3NDEKTSV4RRFFQ69G5FAV"
}