cURL
curl --request PATCH \ --url https://ai-loop.alpeadria.com/api/v1/datalake/{source}/databases/{db}/documents/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "field": "<string>", "value": "<unknown>" } '
{ "message": "Update successful", "changes": { "field": "title", "from": "Old Title", "to": "New Title" } }
Atomic update of a single field in a document. Handles server-side encryption for sensitive data.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The field name to update
The new value for the field
Field updated successfully.
Show child attributes