NetSuite's SOAP-based web services API
Questions tagged [suitetalk]
174 questions
8
votes
4 answers
Netsuite: How to link Purchase Order to Sales Order
I’m trying to automate linking the NetSuite purchase order to a NetSuite sale order and the following is the code I tried to accomplish this task. But I'm getting error (see at the bottom). Can you please check and let me know what I’m missing…

Hemant
- 615
- 1
- 8
- 21
8
votes
4 answers
NetSuite SuiteTalk REST Web Services - Invalid Login Attempt
I am trying to use the NetSuite SuiteTalk REST Web Services to access NetSuite CRM data.
I have the access up and working in production. Able to retrieve record data and metadata.
I am now trying to set up access in the sandbox for more in-depth…

Bryan Hunt
- 145
- 2
- 5
8
votes
7 answers
Ambiguous Authentication in Netsuite Token Based API call
I am trying to make SOAP calls to the Netsuite API using Token Based Authentication. I have a C# client that is generated from WDSL and it is sending the following request (with the secrets replaced).

ChrisBellew
- 1,144
- 2
- 12
- 27
5
votes
3 answers
How to create journal entry in netsuite api?
I am trying to create a journal entry on NetSuite using its SuiteScript API.
Here is my code.
export function post() {
var rec = record.create({
type: record.Type.JOURNAL_ENTRY,
isDynamic: true,
});
rec.setValue({
fieldId: "memo",
…

Krishna Karki
- 749
- 12
- 31
5
votes
4 answers
NetSuite python TBA Authentication
I am new to this area of using SOAP for NetSuite calls. Hence, I might be thinking completely incorrectly on how to solve the problem. Here is what I am trying to solve:
- Language: Python+ Zeep
- I want to move my application from email pass to…

tkansara
- 534
- 1
- 4
- 21
5
votes
3 answers
NetSuite SuiteTalk Token Authentication : Invalid login attempt
I am using the Netsuite web services (SuiteTalk) api but keep getting a Invalid login attempt error when using a tokenPassport. As the token authentication seems quite complex I will include all the steps i have taken.
I have retreived the account…

user346443
- 4,672
- 15
- 57
- 80
5
votes
3 answers
SOAP error when connecting to NetSuite web services: "Namespace prefix ' soapenv' not defined"
I am getting the following error when connecting to a NetSuite production account, through the Suitetalk API:
I don't have problems connecting to the Sandbox account for this client. I am connecting through a C# WCF project. I don't believe the…

Charl
- 812
- 1
- 8
- 22
5
votes
1 answer
NetSuite SuiteTalk API - Get Inventory Details
I'm using the SuiteTalk (API) service for NetSuite to retrieve a list of Assemblies. I need to load the InventoryDetails fields on the results to view the serial/lot numbers assigned to the items. This is the current code that I'm using, but the…

user3220882
- 101
- 1
- 6
4
votes
2 answers
Netsuite Item Fulfillment Invalid Line Items
I'm trying to set a SalesOrder to fulfilled using the PHP Netsuite Api but I keep getting the following error:
VALID_LINE_ITEM_REQD - You must have at least one valid line item for
this transaction.
I'm using the…

Phill
- 51
- 1
- 4
4
votes
2 answers
NetSuite SuiteTalk ReturnAuthorization
I am trying to create a Return Authorization from a Sales Order but can not determine the required parameters.
I keep receiving an error of:
You must enter at least one line item for this transaction.
If I attempt to include the id of one of the…

user346443
- 4,672
- 15
- 57
- 80
4
votes
3 answers
NetSuite sandbox suitetalk access
I am having trouble accessing the Sandbox environment through the Suitetalk web services. I am using the 2016_2 WSDL. I have tried making use of the newest version WSDL, but this did not help.
I am using this on an existing test application, which…

Charl
- 812
- 1
- 8
- 22
4
votes
3 answers
NetSuite Integration - Problems with CustomFieldList
I'm trying to create an integration with NetSuite through its WebService platform (SuiteTalk), but i'm having problems while saving a Customer with a CustomField.
Here's my code:
StringCustomFieldRef customField = new…

blui
- 71
- 1
- 3
3
votes
1 answer
How to produce Netsuite Suitetalk TBA authorization header in python?
I am trying to use suitetalk web service api from an app written in Python.
There isn't much documentation, but from what there is i tried creating the authentication(HMAC-SHA256) but get this each time:
error="token_rejected",…

Amir
- 31
- 2
3
votes
0 answers
Invalid Login Error with Netsuite Token based Authentication when Two factor Authentication is enabled
We were trying to implement Token Based Authentication for our existing netsuite integration and the new implementation is working as expected for netsuite accounts with two factor authentication is not enabled.
From netsuite documentation we came…

samiaj
- 421
- 1
- 5
- 15
3
votes
1 answer
Getting An nlobjSearchFilter contains an invalid operator, or is not in proper syntax: internalid. when attempting to Add VendorBill
I am sending this SOAP object to the Netsuite Add API. I get this error response:
An nlobjSearchFilter contains an invalid operator, or is not in proper syntax: internalid.
Has anyone seen this error on an Add operation? I'm also not sure why there…

Rich
- 112
- 1
- 9