curl --request PATCH \
--url https://{api_endpoint}/api/v1/documents/{doc_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"meta": {},
"source_uri": "<string>",
"source_date": "2023-12-25",
"source_name": "<string>",
"source_title": "<string>",
"text": "<string>",
"content_type": "<string>"
}
'