SendRegning

Get sending history

Verison: 1.0 (read more)

Will return a list of the different ways the invoice has been sent with a delivery status for each. Possible statuses are IN_PROGRESS, DELIVERED and NOT_DELIVERED.

1
GET /invoices/{invoiceNumber}/history

Response

HTTP/1.1 200 OK

1
2
3
4
5
6
7
8
9
10
11
12
13
14
[
    {
        "description": "Faktura på EHF",
        "recipientAddress": "ola@nordman.no",
        "date": "2015-01-12 09:00",
        "status": "DELIVERED"
    },
    {
        "description": "Kopi av faktura på e-post",
        "recipientAddress": "ola@nordman.no",
        "date": "2015-01-12 11:00",
        "status": "IN_PROGRESS"
    }
]