Get sending history
Will return a list of the different ways the order confirmations and its successors (invoice) and predecessors (offer) have been sent with a delivery status for each.
Possible statuses are IN_PROGRESS
, DELIVERED
and NOT_DELIVERED
.
1 | GET /order-confirmation/{number}/history
|
Response
HTTP/1.1 200 OK
1 2 3 4 5 6 7 8 9 10 11 | [{ "description": "Ordrebekreftelse på papir", "recipientAddress": "", "date": "2016-06-27 12:57", "status": "DELIVERED" }, { "description": "Ordrebekreftelse på SMS", "recipientAddress": "47222222", "date": "2016-06-27 12:57", "status": "DELIVERED" }] |