Questions tagged [suitetalk]

NetSuite's SOAP-based web services API

174 questions
2
votes
2 answers

How do I run a saved search for a search type of "saved search" in Netsuite SuiteTalk

I have a saved search in Netsuite UI to search the saved searches. I need to execute this saved search and get the results in suiteTalk. I have called GetSavedSearchResult savedSearchResult = service.getSavedSearch(new GetSavedSearchRecord() {…
Blake
  • 31
  • 1
  • 4
2
votes
1 answer

Error fetching second page of transaction summary data using Token-based authentication

I recently ran into issues when using an integration record with TBA to request for multiple pages of transaction summary records when using the getPostingTransactionSummary web services action. I found the first request was consistently successful,…
andrsnn
  • 1,591
  • 5
  • 25
  • 43
2
votes
2 answers

How do we retrieve values of Custom Lists(dropdown) in Netsuite

I have record type "XYZ" which has field called "award area" which is of type list/record. "award area" is of type custom list and is a drop down control. Using Suitetalk how can I retrieve those values from that drop down? Thank you
octopus
  • 155
  • 3
  • 13
2
votes
1 answer

Get Items in a PurchaseOrder using SuiteTalk

I am attempting to get the items and some of the related information from a Purchase Order with SuiteTalk. I am able to get the desired Purchase Orders with TransactionSearch using the following in Scala: val transactionSearch = new…
the3rdNotch
  • 637
  • 2
  • 8
  • 18
2
votes
2 answers

how to get values for customfields of a custom record in Netsuite

I'm new to integration with Netsuite. I've created a custom record and some fields along with values in Netsuite app, now I want to get those values from Webservice request. I'm getting labels, but I'm unable to get values. CustomRecordType record =…
RvN
  • 133
  • 2
  • 5
  • 15
1
vote
1 answer

NetSuite retrieve values of Custom Segments using the SOAP SuiteTalk API

I am trying to retrieve the values of the NetSuite Custom Segments using the SOAP api. For example, considering this custom segment in NetSuite: enter image description here I am trying to retrieve a result which has the following values: { …
ADrs
  • 23
  • 4
1
vote
1 answer

how can i insert a Netsuite inventory adjustment with lot numbered items with suitetalk?

I don't know how to configure the inventory detail in the JSON I'm trying to POST at https://<>.suitetalk.api.netsuite.com/services/rest/record/v1/inventoryAdjustment this JSON { "account": …
1
vote
0 answers

Getting error while transforming from Cash Sale into Cash Refund in Netuite

I've been making an API request to this netsuite RESTapi endpoints as per this documentation: https://system.netsuite.com/help/helpcenter/en_US/APIs/REST_API_Browser/record/v1/2020.2/index.html#tag-cashSale I am getting below error on making api…
1
vote
1 answer

Getting an error "Suitetalk endpoint version 2014_2 is no longer supported" while using SuiteTalk SOAP service to connect to Netsuite database

Getting an error Suitetalk endpoint version 2014_2 is no longer supported while using SuiteTalk SOAP service to connect to Netsuite database. Any help is appreciated !!
1
vote
3 answers

How to pay a specific invoice in netsuite? using customerPayment

I am trying to pay a specific invoice using the customerpaymet endpoint, I made the JSON structure using the documentation from…
RcDEV
  • 66
  • 8
1
vote
2 answers

SuiteTalk Netsuite Integration - use SOAP or REST?

I am writing an application that reads customer and invoice data for an account on Netsuite. For integration, Netsuite provides two types of APIs, SOAP and REST. The SOAP is an older one and sounds reliable. There is even a Java SDK on the SOAP API.…
1
vote
1 answer

NetSuite SuiteTalk SOAP Api: Update Certain Fields ONLY on a Record

We are hitting a problem with updating a NetSuite Sales Order (specifically we're updating a custom field) but are bouncing off some Read-only fields that we don't even explicitly write to in our code. We retrieve the order, update the custom field…
LRE
  • 956
  • 1
  • 10
  • 15
1
vote
1 answer

Linking a Contact to a Customer using the SOAP API

I’m having an issue with linking a customer object to a pre-existing contact when creating a new customer within the SOAP/SuiteTalk API using the Mulesoft middleware. I’m successfully creating the contact object earlier, and then trying to use that…
Derek
  • 15
  • 4
1
vote
1 answer

Building a Netsuite Application, returning 410 error

Background: I currently am a Netsuite Administrator (not a developer), with a background in PHP and MySQL programming and Wordpress Front End Design. I have worked with some of the Apache Freemarker in the Advanced HTML/PDF templates, and picked up…
Amanda G
  • 11
  • 2
1
vote
1 answer

Searching for a Netsuite InboundShipment using SuiteTalk

I am trying to do a search to find out if there is an existing InboundShipment in NetSuite with a given ExternalDocumentValue. The problem I am having is the ExternalDocumentNumber is a string but the InboundShipmentSearch seems to be wanting a…
jvoigt
  • 400
  • 4
  • 23
1 2
3
11 12