Dunning is the process of communicating with customers to collect overdue balances. A dunning notice is a notification sent to customers who have overdue invoices. To learn more, see Dunning notices in the Sage Intacct Help Center.
Returns a collection with a key, ID, and link for each dunning notice. This operation is mostly for use in testing; use the query service to find objects that meet certain criteria and to specify properties that are returned.
OK
Bad Request
{- "ia::result": [
- {
- "key": "1",
- "id": "1",
- "href": "/objects/accounts-receivable/dunning-notice/1"
}, - {
- "key": "4",
- "id": "4",
- "href": "/objects/accounts-receivable/dunning-notice/4"
}, - {
- "key": "2",
- "id": "2",
- "href": "/objects/accounts-receivable/dunning-notice/2"
}, - {
- "key": "3",
- "id": "3",
- "href": "/objects/accounts-receivable/dunning-notice/3"
}
], - "ia::meta": {
- "totalCount": 4,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}
Creates a new dunning notice.
basedOn required | string Specifies how to filter due invoices, either by the invoice date or the due date. Example: "dueDate" | ||||||||||||||
asOfDate required | string <date> Specifies the date to use to determine when invoices are filtered. For example, if you set an Example: "2025-01-01" | ||||||||||||||
printTemplateName required | string Name of the printed document template to use for the dunning notice. Example: "L1 DL Doc Template" | ||||||||||||||
required | object | ||||||||||||||
| |||||||||||||||
key | string System-assigned unique key for the dunning notice. Example: "23" | ||||||||||||||
object Information about the user who is the sender. | |||||||||||||||
| |||||||||||||||
attachInvoice | boolean Default: false Specifies whether invoices are attached to the dunning notice. Example: false | ||||||||||||||
object Email template for the dunning notice. | |||||||||||||||
| |||||||||||||||
Array of objects List of customers included in the dunning notice. | |||||||||||||||
Array
|
Created
Bad Request
{- "basedOn": "dueDate",
- "asOfDate": "2025-04-18",
- "dunningLevel": {
- "id": "L1"
}, - "printTemplateName": "L1 DL Doc Template",
- "dunningCustomers": [
- {
- "customer": {
- "id": "1"
}, - "sendPrintedNotice": false,
- "sendEmailNotice": false
}, - {
- "customer": {
- "id": "BTI"
}, - "sendPrintedNotice": false,
- "sendEmailNotice": false
}
],
}
{- "ia::result": {
- "id": "11",
- "key": "11",
- "href": "/objects/accounts-receivable/dunning-notice/11"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Returns detailed information for a specified dunning notice.
key required | string System-assigned unique key for the dunning notice. Example: 11 |
OK
Bad Request
{- "ia::result": {
- "id": "48",
- "key": "48",
- "dunningLevel": {
- "key": "12",
- "id": "L1",
- "href": "/objects/accounts-receivable/dunning-level/12"
}, - "basedOn": "dueDate",
- "currency": "USD",
- "baseCurrency": "USD",
- "asOfDate": "2025-04-18",
- "printTemplateName": "L1 DL Doc Template",
- "emailTemplate": {
- "key": null,
- "id": null
}, - "attachInvoice": false,
- "audit": {
- "createdDateTime": "2025-05-09T10:14:21Z",
- "modifiedDateTime": "2025-05-09T10:14:21Z",
- "createdBy": "1",
- "modifiedBy": "1"
}, - "dunningCustomers": [
- {
- "id": "129",
- "key": "129",
- "dunningNoticeCustomerId": "DN-116",
- "dunningNotice": {
- "id": "48",
- "key": "48",
- "href": "/objects/accounts-receivable/dunning-notice/48"
}, - "customer": {
- "key": "1",
- "id": "1",
- "name": "Power Aerospace Materials",
- "href": "/objects/accounts-receivable/customer/1"
}, - "invoiceCount": 3,
- "totalAmountOverdue": "2307.00",
- "totalTxnAmountOverdue": "2307.00",
- "dunningNoticeAttachment": null,
- "deliveryMethod": "printed",
- "invoices": [
- {
- "id": "4462",
- "key": "4462",
- "dunningCustomer": {
- "id": "129",
- "key": "129",
- "href": "/objects/accounts-receivable/dunning-customer/129"
}, - "arInvoice": {
- "id": "164",
- "key": "164",
- "invoiceNumber": "inv-2",
- "invoiceDate": "2025-02-25",
- "dueDate": "2025-02-30",
- "totalBaseAmount": "100.00",
- "totalTxnAmount": "100.00",
- "totalBaseAmountDue": "100.00",
- "referenceNumber": "new_document",
- "totalTxnAmountDue": "2307.00",
- "href": "/objects/accounts-receivable/invoice/164"
}, - "href": "/objects/accounts-receivable/dunning-invoice/4462"
}, - {
- "id": "4464",
- "key": "4464",
- "dunningCustomer": {
- "id": "129",
- "key": "129",
- "href": "/objects/accounts-receivable/dunning-customer/129"
}, - "arInvoice": {
- "id": "310",
- "key": "310",
- "invoiceNumber": "inv-2",
- "invoiceDate": "2025-03-25",
- "dueDate": "2025-03-30",
- "totalBaseAmount": "100.00",
- "totalTxnAmount": "100.00",
- "totalBaseAmountDue": "100.00",
- "referenceNumber": "new_document",
- "totalTxnAmountDue": "2307.00",
- "href": "/objects/accounts-receivable/invoice/310"
}, - "href": "/objects/accounts-receivable/dunning-invoice/4464"
}
]
}
], - "href": "/objects/accounts-receivable/dunning-notice/48"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}