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
43
44 | {
"number": 1,
"recipient": {
"number": 17,
"customerNumber": "17",
"name": "recipient",
"email": "recipient@sendregning.no",
"mobile": 47474747,
"address": {
"address1": "street 1",
"address2": "street 1",
"zip": "2040",
"city": "OSLO",
"country": "NORGE"
},
"organisationNumber": "976098897",
"icd": "9908"
},
"ourReference": "our reference",
"yourReference": "your reference",
"creditDays": 14,
"freeText": "some text",
"deliveryDate": "2016-10-01",
"offerDate": "2016-09-17",
"expiryDate": "2016-10-01",
"tax": 0.25,
"total": 1.25,
"deliveryAddress": {
"address": "delivery street",
"zip": "2040",
"city": "OSLO",
"country": "NORGE"
},
"items": [{
"number": 1,
"quantity": 1.00,
"productCode": "prod code",
"description": "product",
"unitPrice": 1.00,
"discount": null,
"taxRate": 25,
"total": 1.25
}]
}
|