Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Karverket changes receipts from tinglysing

Description of the change

When a document is tinglyst today, a signed grunnboksutskrift (SDO format) is returned as a “proof” of tinglysing. From October 30th 2021 Kartverket will only return a link to an unsigned grunnboksutskrift (PDF format). In a transition period starting May 20th 2021, Kartverket will return both a signed grunnboksutskrift and a link.

How this impacts Etinglysing’s Dokument webservices

This change will not be implemented in version 5 of the DokumentWs webservice. From October 30th the getArtifacts service will no longer return the signed grunnboksutskrift (SDO).

Changes in DokumentWs 7 webservice

As a service to Etinglysing’s customers, Etinglysing will download the unsigned grunnboksutskrift as PDF and return together with the link and, until October 30th, the signed SDO. This will save you from doing a separate call to Kartverket to download the file yourself. In order to implement this we will add two new document formats in the artifact response, se below.

New formats on artifact type GRUNNBOKSUTSKRIFT: PDF and URL

Today the format of the grunnboksutskrift is always SDO. The link will be returned as format URL, and will be base64 encoded as the other documents. The unsigned grunnboksutskrift will be returnes as format PDF. In the transition phase a call to getArtifacts can return three artifacts of type GRUNNBOKSUTSKRIFT where the format (SDO, PDF or URL) describes which type it is.

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns2:getArtifactsResponse xmlns:ns2="http://dokument.ws5.etinglysing.no/">
         <ns2:return dokumentId="15757668">
            <artifacts type="DOKUMENT" format="SDO" base64content=" .. "/>
            <!-- ubekreftet utskrift -->
            <artifacts type="GRUNNBOKSUTSKRIFT" format="PDF" base64content=" .. "/>
            <!-- bekreftet utskrift -->
            <artifacts type="GRUNNBOKSUTSKRIFT" format="SDO" base64content=" .. "/>
            <!-- lenke til ubekreftet utskrift hos Kartverket -->
            <artifacts type="GRUNNBOKSUTSKRIFT" format="URL" base64content=" ... "/>
         </ns2:return>
      </ns2:getArtifactsResponse>
   </soap:Body>
</soap:Envelope>

For documents tinglyst after October 30th an SDO will not be available.

getArtifactService

The artifacts are available at different stages. The different stages and artifacts available, are listed in the table below.

Document status

Artifact

PART_SIGNERT

SIGNERT

UNDER_TINGLYSING

TINGLYSING_FEILET

FJERNET_FRA_TINGLYSING

ALLE, DOKUMENT

TINGLYST

All these types

DOKUMENT is the signed data object (SDO).

  • No labels