One time bill items
List one-time bill items
Resources
- Tenancies
- Leases
- Bills
- Pending bills
- Payments
- Payouts
- Recurring bill items
- One time bill items
- Transactions
- Products
- Contacts
- Rent adjustment
- Categories
One time bill items
List one-time bill items
GET
/
one-time-bill-items
curl --request GET \
--url https://api.helloproper.com/one-time-bill-items \
--header 'Authorization: <api-key>'
{
"oneTimeBillItems": [
{
"id": "<string>",
"leaseId": "<string>",
"created": "<string>",
"modified": "<string>",
"productKey": "<string>",
"description": "<string>",
"amount": {
"currency": "<string>",
"amount": 123
},
"quantity": 123,
"unitNetPrice": {
"currency": "<string>",
"amount": 123
},
"netPrice": {
"currency": "<string>",
"amount": 123
},
"dueDate": "<string>",
"accountingPeriod": "<string>",
"vat": {
"taxMode": "<string>",
"taxRate": 123
}
}
]
}
Request
This request supports pagination.
The lease for which one-time bill items will be returned
Response
The unique identifier for the one-time bill item
The identifier for the lease associated with the one-time bill item
The creation date and time of the one-time bill item in ISO 8601 format
The last modification date and time of the one-time bill item in ISO 8601 format
The key or identifier for the product or service billed (e.g., “key:rent”)
The content of the description that is going to be put on the bill
The quantity of items billed
The date in ISO 8601 format that one-time bill item is due
The accounting period for the one-time bill item, in the format “YYYY-MM-DD/YYYY-MM-DD”
curl --request GET \
--url https://api.helloproper.com/one-time-bill-items \
--header 'Authorization: <api-key>'
{
"oneTimeBillItems": [
{
"id": "<string>",
"leaseId": "<string>",
"created": "<string>",
"modified": "<string>",
"productKey": "<string>",
"description": "<string>",
"amount": {
"currency": "<string>",
"amount": 123
},
"quantity": 123,
"unitNetPrice": {
"currency": "<string>",
"amount": 123
},
"netPrice": {
"currency": "<string>",
"amount": 123
},
"dueDate": "<string>",
"accountingPeriod": "<string>",
"vat": {
"taxMode": "<string>",
"taxRate": 123
}
}
]
}