GET
/
v1
/
document
/
{document_id}
JavaScript
import Openregister from 'openregister';

const client = new Openregister({
  apiKey: 'My API Key',
});

const response = await client.document.getCachedV1('document_id');

console.log(response.id);
{
  "id": "<string>",
  "name": "<string>",
  "date": "<string>",
  "url": "<string>",
  "type": "articles_of_association"
}

Retrieve stored documents for a company

Retrieve stored documents for a company from the Handelsregister. Only use for earlier documents.

Authorizations

Authorization
string
header
required

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

Path Parameters

document_id
string
required

Unique document identifier. Example: a6daa905-a87e-451c-9df6-35051eec8b61

Response

200
application/json

Successfully retrieved document information

The response is of type object.