import Morphik from 'morphik';
const client = new Morphik({
apiKey: 'My API Key',
});
const response = await client.documents.getStatus('document_id');
console.log(response);
{}
Get the processing status of a document.
Args: document_id: ID of the document to check auth: Authentication context
Returns: Dict containing status information for the document
import Morphik from 'morphik';
const client = new Morphik({
apiKey: 'My API Key',
});
const response = await client.documents.getStatus('document_id');
console.log(response);
{}
Successful Response
The response is of type object
.
Was this page helpful?