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

leaseId
string
required

The lease for which one-time bill items will be created

oneTimeBillItem
object
required

Response

oneTimeBillItemId
string

The unique identifier for the created one-time bill item

dueDate
date

The due date in ISO 8601 format of the one-time bill item