Overview

This section describes the available REST endpoints for generating PDF documents from various land registry data.

The service provides PDF generation for property summaries, specific document endorsements, and document lookup results (ATD). All PDFs are returned as downloadable attachments with appropriate filenames.

Endpoints

PdfEjendomSummarisk

Endpoint URL: pdf/ejendomsummarisk/{uuid}

Method

GET

Description

Generate a PDF document containing property summary information using the property’s UUID.

Input

Path parameter:

  • uuid

Output

PDF file download with filename format: ejendomsummarisk_{uuid}.pdf

Error handling

  • Standard HTTP error codes for invalid input or lack of access

Interaction pattern

Query response

Example request:

GET /pdf/ejendomsummarisk/cda5fd18-7366-4613-9395-f42f3c441389 HTTP/1.1

Example response:

HTTP/1.1 200 OK
Content-Type: application/pdf
Content-Disposition: attachment; filename="dokument.pdf"

PdfPaategning

Endpoint URL: pdf/paategning/dokumentanmeldelse

Method

GET

Description

Generate a PDF document for specific document endorsements using document UUID and notification UUID.

Input

Query parameters:

  • dokumentuuid - Document UUID (required)

  • anmeldelseuuid - Notification UUID (required)

Output

PDF file download with filename format: paategning_{dokumentuuid}_{anmeldelseuuid}.pdf

Error handling

  • Standard HTTP error codes for invalid input or lack of access

Interaction pattern

Query response

Example request:

GET /pdf/paategning/dokumentanmeldelse?dokumentuuid=f341ea7a-94e2-4f67-adda-b539ed49268c&anmeldelseuuid=4ff46162-f347-4ace-93ec-c899e9ccf5b7 HTTP/1.1

Example response:

HTTP/1.1 200 OK
Content-Type: application/pdf
Content-Disposition: attachment; filename="dokument.pdf"

PdfAtdByUuid

Endpoint URL: pdf/atd/{uuid}

Method

GET

Description

Generate a PDF document for ATD (document lookup) using the document’s UUID.

Input

Path parameter:

  • uuid

Output

PDF file download with filename format: atd_{uuid}.pdf

Error handling

  • Standard HTTP error codes for invalid input or lack of access

Interaction pattern

Query response

Example request:

GET /pdf/atd/e7c54f53-ccc8-4796-bac1-2036259efbc0 HTTP/1.1

Example response:

HTTP/1.1 200 OK
Content-Type: application/pdf
Content-Disposition: attachment; filename="dokument.pdf"

PdfAtdByAlias

Endpoint URL: pdf/atd_alias/{alias}

Method

GET

Description

Generate a PDF document for ATD (document lookup) using the document’s alias.

Input

Path parameter:

  • alias

Output

PDF file download with filename format: atd_{alias}.pdf

Error handling

  • Standard HTTP error codes for invalid input or lack of access

Interaction pattern

Query response

Example request:

GET /pdf/atd_alias/19641216-24729-18 HTTP/1.1

Example response:

HTTP/1.1 200 OK
Content-Type: application/pdf
Content-Disposition: attachment; filename="dokument.pdf"