Search
Page 1 of 1 (8 items)
-
Try using:
SalesRep IS NULL
-
Are you including the auto generated ID of the Order? Can you please share your field names and values?
-
Hi there,
This endpoint is a soap webservice. Are you using node or python? Are you calling it as just a http post or are you using any soap library?
Regards,
Hossein
-
I see where the confusion comes from. This page is automcally generated by the tech stack that we are using, but on our servers, the direct GET and POST feature is disabled. We will investigate ways to either change the generated sample page or enable the POST request, but for now you best aproach is to use SOAP.
Good luck with your ...
-
This endpoint is not a RESTful endpoint. You need to wrap your request in a SOAP envelope, which can be done via a post request, but it is better to use a battle tested SOAP library.
This article will give you more context and introduces three different SOAP package for ...
-
How are you calling the method? Are you using any SOAP package in node?
If you share snippet of your code, we might be able to troubleshoot that for you.
-
To send array with zeep you need to do something similar to this:
factory = client.type_factory('ns0')
arr_names = factory.ArrayOfString(fields)
arr_values = factory.ArrayOfString(values)
parameters = {
'strCompanyAccount': companyAccount,
'strLogin': username,
'strPassword': password,
'strSessionID': ...
-
Our API is currently based on SOAP web service specification. You would typically use requests library to talk to REST API. For SOAP services in Python we suggest using libraries such as zeep. Please let us know if you need help implementing your API call with zeep.
Best Regards,
Hossein Riazi
Page 1 of 1 (8 items)
|
|
|