Skip to main content
GET
/
pending-bills
List pending bills
curl --request GET \
  --url https://api.helloproper.com/pending-bills \
  --header 'Authorization: <api-key>'
{
  "bills": [
    {
      "dueDate": "<string>",
      "pendingBillLineItems": [
        {
          "productKey": "<string>",
          "amount": {
            "currency": "<string>",
            "amount": 123
          },
          "quantity": 123,
          "unitNetPrice": {
            "currency": "<string>",
            "amount": 123
          },
          "netPrice": {
            "currency": "<string>",
            "amount": 123
          },
          "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
          }
        }
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.helloproper.com/llms.txt

Use this file to discover all available pages before exploring further.

Request

leaseId
string
required
Lease identifier for which pending bills will be retrieved
period
string
required
The period for pending bills, in the format “YYYY-MM-DD/YYYY-MM-DD”

Response

bills
array