Get invoice status

Gets the status of a previously created invoice, return an InvoiceStatus object

  • your-authorization should be replaced with your Authorization header, see Access
info

This feature is only available in production environment

Example Request

Copy
Copied
GET /v1/invoices/$(contract-id)/$(invoice-id)

Accept: application/json
Authorization: $(your-authorization)

Example Response

Copy
Copied
{
  "id": "1d73c81d-39a6-44d1-bb45-69f6a49afa96",
  "invoiceNumber": 12345,
  "status": "PAID",
  "amount": 100.00,
  "amountPaid": 100.00,
  "remainingAmountToPay": 0.00,
  "numberOfPayments": 1,
  "dateOfLastPayment": "2019-01-01T12:00:00+0200"
}