My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
Comments
-
using NetsuiteAPI.Models; using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Security.Cryptography; using System.Text; using System.Threading.Tasks; using System.Web; using System.Web.Mvc;namespace NetsuiteAPI.Controllers { public class Postqueryv2Controller : Controller…
-
"https://[ProductID].suitetalk.api.netsuite.com/services/rest/record/v1/cashSale" url is working in C# rest api, but if I use "https://[ProductID].suitetalk.api.netsuite.com/services/rest/record/v1/cashSale?limit=1000&offset=241000" parameter we got error "'Unauthorized', " Also If i use Postman, both way is working fine.…
-
Yeah It is working it in Postman "https://demo123.suitetalk.api.netsuite.com/services/rest/record/v1/customer?q=dateCreated ON_OR_AFTER "1/1/2019" AND dateCreated BEFORE "1/1/2020"" but it is not working when I use API using C#, that may be spacing problem for Url, most of url has no space but only Netsuite has spacing for…