-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtst.js
42 lines (39 loc) · 875 Bytes
/
tst.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
(async () => {
const config = {
username: 'svarut-username',
password: 'svarut-password'
}
const svarut = require('./src/index')(config)
const forsendelse = {
tittel: 'test forsendelse',
mottaker: {
postAdresse: {
navn: 'Terje Tverrtryne',
adresse1: 'Skogsveien 42',
postNummer: '3710',
postSted: 'Skien',
land: 'Norge'
},
digitalAdresse: {
fodselsNummer: '01029400475'
}
},
dokumenter: [
{
filnavn: 'test.pdf',
mimeType: 'application/pdf',
filePath: 'test/data/test.pdf'
}
],
utskriftsKonfigurasjon: {
utskriftMedFarger: false,
tosidig: true
}
}
try {
const response = await svarut.sendForsendelse(forsendelse)
console.log(response)
} catch (error) {
console.error(error.message)
}
})()