SendRegning

Get by number

Verison: 1.0 (read more)
1
GET /order-confirmation/drafts/{number}

Response

HTTP/1.1 200 OK

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
{
    "number": 1,
    "recipient": {
        "number": 40,
        "customerNumber": "35",
        "name": "Ole Norman",
        "email": "recipient@sendregning.no",
        "mobile": 47474747,
        "address": {
            "address1": "Street 7",
            "address2": "",
            "zip": "2040",
            "city": "KLØFTA",
            "country": "NORGE"
        },
        "organisationNumber": "976098897",
        "icd": "9908"
    },
    "ourReference": "our ref",
    "yourReference": "your ref",
    "orderReference": "order ref",
    "orderConfirmationDate": "2016-01-01",
    "creditDays": 14,
    "originDocumentId": null,
    "freeText": "some text",
    "deliveryDate": "2016-01-29",
    "tax": 10.00,
    "total": 12.50,
    "deliveryAddress": {
        "address": "address 1",
        "zip": "2040",
        "city": "OSLO",
        "country": "NORGE"
    },
    "items": [{
        "number": 1,
        "quantity": 1.00,
        "productCode": "prod code",
        "description": "prod desc",
        "unitPrice": 10.00,
        "discount": null,
        "taxRate": 25,
        "total": 12.50
    }]
}