MarminDeveloper Docs

Retrieve a register by ID


Retrieves a single document register entry by its ID. A valid bearer token is required.

GET /api/document-registers/{id}
Authorization: Bearer {jwt_token}
Path parameters

ParameterTypeRequiredDescription
idstring
Required
The ID of the register entry to retrieve.
Response

Status code: 200 OK

Response body:

Returns the register entry object (same shape as the create response), including source_type, system‑generated fields (id, uuid, line ids, created_at, updated_at), and optional document_id for e‑invoices linked to an invoice document.

Error responses

401 Unauthorized

Authentication required or invalid token.

404 Not Found

Register entry not found.

500 Internal Server Error

An error occurred while processing the request.

Next