Nourhan Abdelhamid
06/24/2025, 6:30 AMCeligo AI
06/24/2025, 6:30 AMAI generated answer (using internal Slack threads):The error message you're receiving indicates that the Tax Schedule value is missing in your request. When creating an inventory item using the REST API, you need to include the Tax Schedule value. This is a reference to another record in NetSuite, so it just needs an internal id to reference the appropriate tax schedule. Here is an example of how you might include it in your payload:
json
{
"itemid": "Test 1",
"displayName": "Test 1 Displayname",
"department": {
"id": "462"
},
"class": {
"id": "4"
},
"cseg_acquisition": {
"id": "25"
},
"cseg_platform": {
"id": "40"
},
"incomeAccount": {
"id": "1741"
},
"taxSchedule": {
"id": "1"
}
}
In this example, the "taxSchedule" field is included with an id of "1". You would replace "1" with the internal id of the tax schedule you want to use.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
06/24/2025, 6:31 AMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.895335913
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.87814045
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.874699831
Celigo AI
06/24/2025, 6:31 AMNourhan Abdelhamid
06/24/2025, 6:32 AMNourhan Abdelhamid
06/24/2025, 6:56 AM