...
eksternId
must uniquely identify the document in the broker’s systemOnly PDF documents can be sent to Kartverket.
The document itself is base64 encoded.
The files do not have to be sent on every request (as the other data).
If the list is empty, we will not do anything to previous transferred files on that assignment
If an attachment is added and the assignment has an attachment with the given
eksternId
, this is interpreted as a changed file and we will overwrite the existing one.Files should have a filename (without path) so the broker can se the difference when there are two or more attachments of the same type. The element
filnavn
is optional in order to be backward compatibleValid vedlegg types:
Vedlegg type | Beskrivelse |
---|---|
SKIFTEATTEST_USKIFTEATTEST OG BOBESTYRERATTEST VED DØDSBOSKIFTE | Skifteattest, uskifteattest og bostyrerattest ved dødsboskifte |
SKIFTEFULLMAKT | Skiftefullmakt |
TESTAMENT OG EKTEPAKT VED DØDSBOSKIFTE | Testament og ektepakt ved dødsboskifte |
BEGRUNNELSE_DOKUMENTAVGIFT | Begrunnelse for dokumentavgift |
FULLMAKT_SELGER | Salgsfullmakt |
FULLMAKT_KJOEPER | Kjøpsfullmakt |
GJENSIDIG_TESTAMENT | Gjensidig testament |
Heirs
From Etinglysing 51.62 (early July 2023) it is possible to transfer information about heirs using the new, optional element arvinger
that can hold zero to many arving
. Example below is the minimum data to transfer for a heir (person).
...
Code Block | ||
---|---|---|
| ||
<dok:fullmektiger> <dok:fullmektig> <ret:person id="04040454321"> <ret:fornavn>Full</ret:fornavn> <ret:etternavn>Mektig</ret:etternavn> <ret:epost>fullmektig@post.no</ret:epost> <ret:mobil>?87654321</ret:mobil> </ret:person> <ret:fullmektigFor> <ret:id>02020254321</ret:id> </ret:fullmektigFor> </dok:fullmektig> <dok:fullmektig> <ret:organisasjon id="918465731" navn="HJELP KATTEN"> <ret:signaturBerettiget id="030303999999"> <ret:fornavn>Ola</ret:fornavn> <ret:etternavn>Normann</ret:etternavn> <ret:epost>ola.normann@post.com</ret:epost> <ret:mobil>55555555</ret:mobil> </ret:signaturBerettiget> </ret:organisasjon> <ret:fullmektigFor> <ret:id>02020254321</ret:id> <ret:id>030303999999</ret:id> </ret:fullmektigFor> </dok:fullmektig> </dok:fullmektiger> |
Assignment type
From version 51.71 (in BETA july 2024, and PROD august 2024) you can mark an assignment with type. Possible values are: DOEDSBO and STANDARD. The default value is STANDARD, all assignments until now are of type STANDARD.
Using the assignment type DOEDSBO you mark the assignment as a “dødsbo”. You use this when you want to generate a “Hjemmelserklæring”. In a “dødsbo” the seller is deceased and you want to transfer the property over to the heirs. You do not have to add teller and nevner (brøk) for the deceased seller, we will add the correct brøk for the seller if not provided.
Using the assignment type STANDARD you need to provide a teller and nevner (brøk) for the seller. We validate the brøk.
Example of an assignment for use when you want to generate a Hjemmelserklæring:
Code Block |
---|
<opp:dokumentGrunnlag oppdragsnr="123654poi123lkj">
<dok:oppdragType>STANDARD</dok:oppdragType>
<dok:oppdragType>DOEDSBO</dok:oppdragType>
<dok:omsetningsopplysninger>
<dok:omsetningsnr>1234</dok:omsetningsnr>
<dok:omsetningsType>SKIFTEOPPGJOER</dok:omsetningsType>
<dok:utlystTilSalgPaaDetFrieMarked>false</dok:utlystTilSalgPaaDetFrieMarked>
<dok:kjoepesum>0</dok:kjoepesum>
<dok:avgiftsgrunnlag>0</dok:avgiftsgrunnlag>
<dok:aarsak>SKIFTEOPPGJOER</dok:aarsak>
</dok:omsetningsopplysninger>
<dok:borettsandel orgnr="932305364" andelsnr="9" borettslagnavn="BAS">
<dok:selgere>
<dok:hjemmelshaver>
<ret:person id="12345678901">
<ret:fornavn>Thomas</ret:fornavn>
<ret:etternavn>Normann</ret:etternavn>
<ret:epost>test@example.com</ret:epost>
</ret:person>
</dok:hjemmelshaver>
</dok:selgere>
<dok:brukAvBolig>BOLIGEIENDOM</dok:brukAvBolig>
<dok:typeBolig>FRITTLIGGENDE_ENEBOLIG</dok:typeBolig>
<dok:arvinger>
<dok:arving teller="1" nevner="1">
<ret:person id="07070712345">
<ret:fornavn>Person Heir</ret:fornavn>
<ret:etternavn>With Fraction</ret:etternavn>
<ret:epost>person.heir@arving.no</ret:epost>
<ret:mobil>12345678</ret:mobil>
</ret:person>
</dok:arving>
</dok:arvinger>
</dok:borettsandel>
</opp:dokumentGrunnlag>
|