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
45
46
47
48
49
50
51
52
53
54
55 | {
"number": 1,
"customerNumber": "12",
"name": "Ole Nordman",
"contact": {
"address": {
"address1": "Oslogata",
"address2": "",
"city": "OSLO",
"country": "NORGE",
"zip": "0194"
},
"email": "ole@sendregning.no",
"phone": "",
"mobile": "",
"fax": "",
"web": ""
},
"organisation": {
"form": null,
"icd": null,
"number": null
},
"settings": {
"discount": 0.0,
"creditDays": null,
"attachPdf": false,
"defaultShipment": "EMAIL",
"autoDunningsEnabled": true
"currency": null,
"lost": false
},
"avtaleGiro": null,
"eFaktura": false,
"yourReference": null,
"customFields": [
{
"number": 1,
"name": "CustomField",
"type": "TEXT",
"value": null,
"options": null
}
],
"comment": "",
"deleted": false,
"_links": {
"self": {
"uri": "/recipients/1"
},
"delete": {
"uri": "/recipients/1"
}
}
}
|