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.create({ company_id: 'company_id', document_category: 'current_printout',});console.log(document.id);
Copy
{ "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"}
Document
Create Document Job
POST
/
v0
/
jobs
/
document
JavaScript
Copy
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.create({ company_id: 'company_id', document_category: 'current_printout',});console.log(document.id);