README.md in netsuite-0.3.1 vs README.md in netsuite-0.3.2
- old
+ new
@@ -361,9 +361,21 @@
batch.each do |file|
next unless file.file_type == "_JAVASCRIPT"
puts Base64.decode64(file.content)
end
end
+
+# the getList operation
+NetSuite::Records::CustomRecord.get_list(
+ # netsuite internalIDs
+ list: [1,2,3],
+ # only needed for a custom record
+ type_id: 1234,
+ # allow inclomplete results (defaults to false)
+ allow_incomplete: true
+).each do |record|
+ # do your thing...
+end
```
#### Non-standard Operations
```ruby