Get document

Get document returns details of a single document.

Like document search, there are two flavours of get document: one uses document_uuid and one uses document_key.

The input is a document_uuid.

{
"document_uuid": "uuid"
}

or a document_key

{
"document_key": "document/path"
}

If using a document key, it must be the full key and not a partial key.

The response is the entire document, with linked worker.

{
"document_uuid": "uuid",
"document_title": "title",
...
"worker": {
"worker_uuid": "uuid",
...
}
}