Skip to main content
GET
/
recurring-bill-items
List recurring bill items
curl --request GET \
  --url https://api.helloproper.com/recurring-bill-items \
  --header 'Authorization: <api-key>'
{
  "recurringBillItems": [
    {
      "id": "<string>",
      "ownerId": "<string>",
      "leaseId": "<string>",
      "created": "<string>",
      "modified": "<string>",
      "productKey": "<string>",
      "startedOn": "<string>",
      "cancelledOn": "<string>",
      "endedOn": "<string>",
      "billingCycle": {
        "timeUnit": "<string>",
        "periodLength": 123,
        "start": 123
      },
      "amountRecords": [
        {
          "id": "<string>",
          "value": {
            "currency": "<string>",
            "amount": 123
          },
          "start": "<string>"
        }
      ],
      "vatRecords": [
        {
          "id": "<string>",
          "value": {
            "taxMode": "<string>",
            "taxRate": 123
          },
          "start": "<string>"
        }
      ],
      "descriptionRecords": [
        {
          "id": "<string>",
          "value": "<string>",
          "start": "<string>"
        }
      ],
      "quantityRecords": [
        {
          "id": "<string>",
          "value": 123,
          "start": "<string>"
        }
      ]
    }
  ]
}

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

This request supports pagination.
leaseId
string
The lease for which recurring bill items will be returned

Response

recurringBillItems
array