Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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)