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.
NetSuite has launched SuiteSuccess Wholesale Distribution Edition, in Japan. Please join us the webinar on February 12 that introduces NetSuite solution with demos and case studies for Wholesale Industry.
Register Now
Rest API Code Example for Item fulfillment by status
I have a developer trying to get item fulfillments by status of “packed”, ID “B”. I wanted to get a url example of this.
I see a code example for transform like below:
POST https://<accountID>/services/rest/record/v1/salesorder/{{SALES_ORDER_ID}}/!transform/itemFulfillment
{ “item”:{ “items”:[ { “orderLine”:1, “location”:6, “itemreceive”: true } { “orderLine”: 3 “location”: 6, “itemreceive”: false } ] }
}
My dev’s current url:
https://xxxxxxx.suitetalk.api.netsuite.com/services/rest/record/v1/itemFulfillment?limit=10&offset=0&q=shipStatus CONTAIN B
I get this error response{“type”:”“,”title”:”Bad Request”,”status”:400,”o:errorDetails”:[{“detail”:”Unknown field name ‘shipStatus’ in the search query. The field does not exist on this record type.”,”o:errorQueryParam”:”q”,”o:errorCode”:”NONEXISTENT_FIELD”}]}