My Stuff
Comments
-
Thanks for your help Mikko
-
Thank you @"Mikko De La Fuente-Oracle", I will look into this, do you know if it is possible to filter a sublist using query parameters by an internal id, for example if I wanted to bring back all of a customers credit cards that were Not Equal to an internalId? Or is that only possible on the Record object?
-
Also ended up using this library as nuget package to resolve the query param invalid signature issue: https://github.com/rhargreaves/oauth-dotnetcore
-
I eventually figured out how to do it and am posting the result here, one thing that it cannot do for some reason is create a successful signature when there are query parameters on the url. So let me know if anyone else has been able to. The majority of this was taken from the SOAP web services sample app, just set the…
-
The error specifically is "Invalid Signature", does anyone have an example on generating the correct signature in C# for the REST api? I copied the generate signature from the SOAP webservices sample but that does not appear to work.
-
Awesome, that was it. Thank you for your help Erick
-
Here is the body of that request: <soap:Body> <add xmlns="urn:messages_2019_2.platform.webservices.netsuite.com"> <record xmlns:q1="urn:sales_2019_2.transactions.webservices.netsuite.com" xsi:type="q1:SalesOrder"> <q1:entity internalId="94125" type="customer"> <name…
-
Thank you for the quick reply, but I tried that but still gives this error: [Code=USER_ERROR] Please enter a payment method
-
Thank you that was helpful and helped me figure out what I needed to do Using the sample c# netstuite client I came up with something like this in case any one else needs to grab a value from a custom list: RecordRef recordRef = new RecordRef { type = RecordType.customList, typeSpecified = true, //Prompt user for the…
-
So for whatever reason I tried it again this morning and it worked. It was the exact same query request I was sending last week, the attached image is from the soap web service usage log request for the add operation. Thank you very much for your help Mikko.
-
(Image that didn't seem to attach from my previous post, this is on the Sales Order screen)
-
I've tested this on the Netsuite site, left the terms blank and received the same error Which is the same error message that I receive from the web service. When I select a Terms (Order) on the Netsuite site I am able to get past that error message. I just can't seem to set the terms value on the Sales Order through the…
-
I'm not selecting a payment method and still getting this error.
-
Thank you for getting back to me Mikko. I downloaded the sample .net application from here https://www.netsuite.com/portal/developers/resources/suitetalk-sample-applications.shtml And all I am trying to do is the option to 'add a sales order' (Option 10 in the console app). Also the function to add a sales order is in the…