Create a date-driven term
Creates a date-driven term that sets the payment due on a specific day of the month and can optionally grant an early-payment discount before discountDayOfMonth. Use it when you need due dates tied to calendar days instead of a fixed number of days after the transaction.
post/quickbooks-desktop/date-driven-terms
Headers
Conductor-End-User-Idstring required
The ID of the End-User to receive this request.
Example:end_usr_1234567abcdefg
The ID of the End-User to receive this request.
Request body
Example request
{
"name": "2% 5th Net 25th",
"isActive": true,
"dueDayOfMonth": 15,
"gracePeriodDays": 2,
"discountDayOfMonth": 5,
"discountPercentage": "10"
}Response
Returns the newly created date-driven term.
Example response
{
"id": "80000001-1234567890",
"objectType": "qbd_date_driven_term",
"createdAt": "2025-01-01T12:34:56+00:00",
"updatedAt": "2025-02-01T12:34:56+00:00",
"revisionNumber": "1721172183",
"name": "2% 5th Net 25th",
"isActive": true,
"dueDayOfMonth": 15,
"gracePeriodDays": 2,
"discountDayOfMonth": 5,
"discountPercentage": "10"
}