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.
Rest API for Partial Vendor Return Authorization from Purchase Order
hi,
when transforming PO to Vendor Return authorization, entire line quantity is considered. I need to create with partial line item quantity. Can i get a sample of rest api to use. Am using the following, created return authorization contains 10 the full quantity, instead of supplied value: 2
{
"entity": { "id": 2222},
"createdfrom": { "id": 12000},
"itemList":{
"items": [
{"item": {"id": 9},"quantity": 2.0,"rate": 7.00,"amount": 14.00,"orderDoc": {"id": 12000} }
]
}
}
0