One time bill items
Create one-time bill item
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
Create one-time bill item
POST
/
one-time-bill-items
curl --request POST \
--url https://api.helloproper.com/one-time-bill-items \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"leaseId": "<string>",
"oneTimeBillItem": {
"productKey": "<string>",
"description": "<string>",
"amount": {
"currency": "<string>",
"amount": 123
},
"quantity": 123,
"dueDate": "<string>",
"accountingPeriod": "<string>",
"vat": {
"taxMode": "<string>",
"taxRate": 123
}
}
}'
{
"oneTimeBillItemId": "<string>",
"dueDate": "<string>"
}
Request
The lease for which one-time bill items will be created
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 that is going to be put on the bill
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”
Response
The unique identifier for the created one-time bill item
The due date in ISO 8601 format of the one-time bill item
curl --request POST \
--url https://api.helloproper.com/one-time-bill-items \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"leaseId": "<string>",
"oneTimeBillItem": {
"productKey": "<string>",
"description": "<string>",
"amount": {
"currency": "<string>",
"amount": 123
},
"quantity": 123,
"dueDate": "<string>",
"accountingPeriod": "<string>",
"vat": {
"taxMode": "<string>",
"taxRate": 123
}
}
}'
{
"oneTimeBillItemId": "<string>",
"dueDate": "<string>"
}