GET
/
bills
curl --request GET \
  --url https://api.helloproper.com/bills \
  --header 'Authorization: <api-key>'
{
  "bills": [
    {
      "id": "<string>",
      "leaseId": "<string>",
      "created": "<string>",
      "modified": "<string>",
      "period": "<string>",
      "dueDate": "<string>",
      "billLineItems": {
        "id": "<string>",
        "amount": {
          "currency": "<string>",
          "amount": 123
        },
        "quantity": 123,
        "unitNetPrice": {
          "currency": "<string>",
          "amount": 123
        },
        "netPrice": {
          "currency": "<string>",
          "amount": 123
        },
        "productKey": "<string>",
        "productName": {
          "en": "<string>",
          "da": "<string>",
          "nl": "<string>",
          "de": "<string>"
        },
        "vat": {
          "taxMode": "<string>",
          "taxRate": 123
        },
        "accountingPeriod": "<string>"
      },
      "subtotal": {
        "currency": "<string>",
        "amount": 123
      },
      "total": {
        "currency": "<string>",
        "amount": 123
      },
      "vatTotals": {
        "vat": {
          "taxMode": "<string>",
          "taxRate": 123
        },
        "amount": {
          "currency": "<string>",
          "amount": 123
        }
      },
      "postedOn": "<string>",
      "annulledOn": "<string>",
      "invoiceNumber": 123,
      "creditNoteNumber": 123
    }
  ]
}

Request

This request supports pagination.

Response

bills
array