GET
/
v0
/
jobs
/
document
/
{id}
import Openregister from 'openregister';

const client = new Openregister({
  apiKey: process.env['OPENREGISTER_API_KEY'], // This is the default and can be omitted
});

const document = await client.jobs.document.retrieve('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e');

console.log(document.status);
{
  "status": "pending",
  "url": "<string>"
}

Get a document job status

Retrieve the status of a document job.

Authorizations

Authorization
string
header
required

API Key Authentication Provide your API key as a Bearer token in the Authorization header.

Path Parameters

id
string
required

Response

200
application/json

Success

The response is of type object.