Discussions
Integrate Postman with Oracle NetSuite for making a POST request to the Item Receipt module
{
"entity": {
"id": "3766"
},
"location": {
"id": "230"
},
"subsidiary": {
"id": "11"
},
"trandate": "2024-10-29",
"createdfrom": {
"id": "87789"
},
"customform": {
"id": "334"
},
"currency": {
"id": "7"
},
"memo": "testing",
"exchangerate": 1.0,
"itemreceipt": {
"items": [
{
"item": {
"id": "2421"
},
"quantity": 50,
"itemreceive": true,
"location": {
"id": "230"
},
// "tolocation": {
// "id": "230"
// },
"inventorydetail": {
"inventorydetailrequest": {
"quantity": 50,
"customform": {
"id": "334"
}
}
},
"line": 1
}
]
}
}
I want to POST Item Receipt data to Oracle NetSuite, but an error occurs. What is the correct payload? Please let me know.