Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Kartverket changes receipts from tinglysing Authumn 2021

...

Code Block
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dok="http://dokument.ws7.etinglysing.no/">
   <soapenv:Header/>
   <soapenv:Body>
      <dok:getArtifacts>
         <documentId>10000100</documentId>
         <!--Optional:-->
         <artifaktscope>valid_artifactscope</artifaktscope>
      </dok:getArtifacts>
   </soapenv:Body>
</soapenv:Envelope>

The upcoming change, where Kartverket returns a link to the unsigned grunnboksutskrift, will not be implemented for scope GRUNNBOKSUTSKRIFT. Clients using scope GRUNNBOKSUTSKRIFT or RECEIPTmust change their implementation to use GRUNNBOKSUTSKRIFT_ALLE in order to get the new artifact type.

Artifact Scope

Description

ALLE

All artifacts. Default if no scope is given.

DOKUMENT

Returns the signed document.

PANTEATTEST

Deprecated. Will be removed 31.12.2021

GRUNNBOKSUTSKRIFT

Deprecated. will be removed 31.12.2021. The signed grunnboksutskrift in SDO format. Will not returned the link. For documents tinglyst after end of October 2021 this scope will not return data as Kartverket no longer returns a signed grunnboksutskrift.

GRUNNBOKSUTSKRIFT_ALLE

Upcoming. Will return grunnboksutskrift in all available formats (SDO and/or LINK). Available in beta late June 2021. For documents tinglyst after October 2021 only the link will be returned

OMSLAG

Deprecated. Will be removed 31.12.2021

RECEIPT

Deprecated. Will be removed 31.12.2021

PREREQUISITE

Returns the prerequisite letter in all formats available (XML, XSLT, PDF).

...

Artifact Type

Description

DOKUMENT

The signed document or the signed følgebrev.

PANTEATTEST

Deprecated. Will be removed 31.12.2021

GRUNNBOKSUTSKRIFT

Signed grunnboksutskrift. Not available for douments tinglyst after end of October 2021.

GRUNNBOKSUTSKRIFT_LENKE

Upcoming. Link to unsigned grunnboksutskrift at Kartverket. Available in beta late June 2021.

OMSLAG

Deprecated. Will be removed 31.12.2021

PREREQUISITE

Prerequisite letter. There can be multiple occurrences of this type. Can be the XML letter, the XSLT to transform the XML to HTML or a rendered PDF depending on the format.

...

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

...