Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Please note that on Saturday, April 18, 2026, at 8:00 PM Pacific Time, our Case Management System will undergo a scheduled maintenance for approximately 15 minutes. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
What is the proper payload for creating a Vendor Bill via REST API?
Here is my Payload:
{
"entity":{"id":"588"},
"trandate":"2025-09-17",
"subsidiary":{"id":"7"},
"memo":"Auto Created Bill from UPS Invoice Import",
"item":
{
"items":
[
{
"item":{"id":"329478"},
"quantity":1,
"rate":9.55,
"description":"UPS Inbound Freight"
}
]
}
}
This my endpoint:
https://${hostnameAccountId}.suitetalk.api.netsuite.com/services/rest/record/v1/vendorBill
I get the following error: Failed to create Vendor Bill: Error: NetSuite API error: {"type":"https://www.rfc-editor.org/rfc/rfc9110.html#section-15.5.1","title":"Bad Request","status":400,"o:errorDetails":[{"detail":"Invalid content in the request body.","o:errorCode":"INVALID_CONTENT"}]}
Tagged:
0