Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gmihaylov/netsuite-restlet-search-export
Simple RESTlet that loads saved search and return its results into JSON string.
https://github.com/gmihaylov/netsuite-restlet-search-export
netsuite netsuite-api netsuite-integration netsuite-restlets restlet suitescript2
Last synced: about 2 months ago
JSON representation
Simple RESTlet that loads saved search and return its results into JSON string.
- Host: GitHub
- URL: https://github.com/gmihaylov/netsuite-restlet-search-export
- Owner: gmihaylov
- License: mit
- Created: 2023-12-22T18:02:57.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-29T02:16:07.000Z (about 1 year ago)
- Last Synced: 2023-12-29T03:46:14.810Z (about 1 year ago)
- Topics: netsuite, netsuite-api, netsuite-integration, netsuite-restlets, restlet, suitescript2
- Language: JavaScript
- Homepage:
- Size: 52.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# NetSuite RESTlet Search Export
Simple RESTlet that loads saved search and return its results into JSON string.## Options / Features
- Column labels are used as JSON object properties.
- RESTlet returns JSON stringified array of objects.
- LIMIT can be applied by using limit=true, from=X, to=X
- If results are exhausted the RESTlet will return empty array []## Usage/Examples
- Call RESTlet and get saved search results from 0 to 5:
```
https://XXXX.app.netsuite.com/app/site/hosting/restlet.nl?script=XX&deploy=XX&limit=true&from=0&to=5
}
```
- Call RESTlet and get all saved search results:
```
https://XXXX.app.netsuite.com/app/site/hosting/restlet.nl?script=XX&deploy=XX
}
```## Screenshots
![App Screenshot](src/FileCabinet/SuiteScripts/NetSuite%20RESTlet%20Search%20Export/screenshots/screenshot1.png)
![App Screenshot](src/FileCabinet/SuiteScripts/NetSuite%20RESTlet%20Search%20Export/screenshots/screenshot2.png)