Information about a customer receiving a dunning notice. 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. Create and maintain dunning customers from the owning dunning notice object.
Returns a collection with a key, ID, and link for each dunning customer. 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": "DN-2",
- "href": "/objects/accounts-receivable/dunning-customer/1"
}, - {
- "key": "2",
- "id": "DN-3",
- "href": "/objects/accounts-receivable/dunning-customer/2"
}
], - "ia::meta": {
- "totalCount": 2,
- "start": 1,
- "pageSize": 100
}
}
Returns detailed information for a specified dunning customer.
key required | string System-assigned unique key for the dunning customer. Example: 18 |
OK
Bad Request
{- "ia::result": {
- "id": "12",
- "key": "12",
- "dunningNoticeCustomerId": "DN-2",
- "dunningNotice": {
- "id": "14",
- "key": "14",
- "audit": {
- "modifiedDateTime": "2025-06-02T00:00:00Z",
- "createdDateTime": "2025-06-02T00:00:00Z",
- "modifiedBy": "1",
- "createdBy": "1"
}, - "href": "/objects/accounts-receivable/dunning-notice/14"
}, - "customer": {
- "key": "11",
- "id": "11",
- "name": "Power Aerospace Materials",
- "href": "/objects/accounts-receivable/customer/11"
}, - "invoiceCount": 2,
- "totalAmountOverdue": "499.00",
- "totalTxnAmountOverdue": "499.00",
- "noticeEmail": {
- "date": "06/02/2025 01:24:51",
- "to": null,
- "cc": null,
- "bcc": null
}, - "dunningNoticeAttachment": "PDF data",
- "deliveryMethod": "printed",
- "invoices": [
- {
- "id": "4009",
- "key": "4009",
- "dunningCustomer": {
- "id": "119",
- "key": "119",
- "href": "/objects/accounts-receivable/dunning-customer/119"
}, - "arInvoice": {
- "id": "1966",
- "key": "1966",
- "invoiceNumber": "inv213",
- "invoiceDate": "2025-12-26",
- "dueDate": "2025-12-31",
- "totalBaseAmount": "400.00",
- "totalTxnAmount": "400.00",
- "totalBaseAmountDue": "400.00",
- "referenceNumber": null,
- "totalTxnAmountDue": "499.00",
- "href": "/objects/accounts-receivable/invoice/1966"
}, - "href": "/objects/accounts-receivable/dunning-invoice/4009"
}, - {
- "id": "4462",
- "key": "4462",
- "dunningCustomer": {
- "id": "129",
- "key": "129",
- "href": "/objects/accounts-receivable/dunning-customer/129"
}, - "arInvoice": {
- "id": "127",
- "key": "127",
- "invoiceNumber": "Inv-1-Doc",
- "invoiceDate": "2025-12-27",
- "dueDate": "2025-12-31",
- "totalBaseAmount": "100.00",
- "totalTxnAmount": "100.00",
- "totalBaseAmountDue": "99.00",
- "referenceNumber": null,
- "totalTxnAmountDue": "499.00",
- "href": "/objects/accounts-receivable/invoice/127"
}, - "href": "/objects/accounts-receivable/dunning-invoice/4462"
}
], - "href": "/objects/accounts-receivable/dunning-customer/12"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}