document_id
. This endpoint is ideal for modifying or correcting the extracted text of a document post-upload.document_id
?document_id
is a unique numeric identifier assigned to each document in the system.curl --location -g --request PUT 'https:///v2/api/document/0' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"text": "I am user"
}'
{
"document_id": 13212,
"message": "Document updated successfully."
}