is there a way yet to load a search via suitetalk ...
# suitescript
s
is there a way yet to load a search via suitetalk rest api? the soap call does not return columns with formulas 😕
p
Yes. Search Help for
REST
SuiteQL
. Sample code:
Copy code
POST <https://demo123.suitetalk.api.netsuite.com/services/rest/query/v1/suiteql?limit=10&offset=10>
Prefer: transient

{
  "q": "SELECT email, COUNT(*) as count FROM transaction GROUP BY email"
}
s
Unfortunately SuiteQL, to my knowledge, doesn't come in to play here. I need to load an existing transaction search
p
Saved Search is not supported in REST WS. REST WS supports SuiteAnalytics Datasets.
s
Man, they need to add that! So there is no round about way to load a search with the suite talk rest api then 😕
Do you know if there is a way to get a formula column in a soap search?
p
You mean get Formula Column definition via SOAP? Or set it?