Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
NSC | Sample REST Request to Apply Invoices to Customer Payment
Scenario
User would like to create a Customer Payment that will automatically apply the Invoices (via REST requests)
Solution
This sample REST request shows how to create the Apply To sublist on the Invoices, by specifying the line number, amount, the apply boolean and the document number (Invoice Internal ID)
HTTP method: POST
URL: {{COMPANY_URL}}/services/rest/record/v1/customerpayment/
Sample REST Request:
Spoiler Spoiler Warning ▲▼
{
"account": {
"id": "2"
},
"customer": {
"id": "1"
},
"payment": 45,
"apply": {
"items": [
{
"doc": {
"apply": true,
"id": "3772",
"line":"0"
},
"due": 45,
"amount": 45
}
]
}
}
Note: A customer payment applies it to the appropriate invoice or cash sale only, decreasing the amount due and tracking income.
Richard James Uri - SuiteCloud | WMS Tech | SuiteCommerce Advanced
----
- NetSuite Admin Corner | New to NetSuite
- Explore the NSC Webinars Category
- Join our poll and share your ideas! We want to know what you think. Don't forget to comment and make your voice heard!
- Expand your NetSuite knowledge by joining this month's Ask A Guru Live about Advanced Accounting. RSVP on this event now!
