Discussions
SuiteWorld is where the NetSuite community comes together to learn, connect, and discover what’s next.
Whether you’re looking for product updates, practical tips, new ways to improve efficiency, or insights from other customers, SuiteWorld offers something for every stage of your NetSuite journey.
■ NetSuite 2026.2 Release Notes
■ NetSuite SuiteApps Release Notes
■ NetSuite Sneak Peeks
■ Release Preview Guide
■ Release Preview Test Plan Template
Netsuite REST web services help to query transaction lines
Hi,
I am trying to get started using Netsuite rest web services.
I have some basic functions working OK using postman. I am able to do certain basic queries using the postman demonstration files such as:
- transactions
{
"q": "SELECT t.tranId , t.tranDate FROM transaction t WHERE createddate >= '6/1/2021'"
}
- customer
{
"q": "SELECT c.companyname, c.id FROM customer c WHERE dateCreated >= '1/1/2021'"
}
- however when I try to access transaction lines - my query fails:
{
"q": "SELECT * FROM transaction_lines tl WHERE date_created >= '6/1/2021'"
}
error:
"status": 400,
"o:errorDetails": [
{
"detail": "Invalid search query. Detailed unprocessed description follows. Invalid search type: transaction_lines.",