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.
Update: Narrative Insights has been restored and is now available.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Setting multiple prices with one call
Hi again. I'm trying to set multiple price points/levels when creating a new product using php and Web Services, and have tried to follow some of the form posts, but I'm stuck now. My pricing matrix array looks as such:
Array ( [0] => Array ( [pricing] => Array ( [internalId] => 1 ) [priceList] => Array ( [price] => Array ( [value] => 9.00 [quantity] => 0 ) ) ) [1] => Array ( [pricing] => Array ( [internalId] => 1 ) [priceList] => Array ( [price] => Array ( [value] => 8.00 [quantity] => 10 ) ) ) [2] => Array ( [pricing] => Array ( [internalId] => 1 ) [priceList] => Array ( [price] => Array ( [value] => 7.00 [quantity] => 25 ) ) ) [3] => Array ( [pricing] => Array ( [internalId] => 1
0