README.md in acumatica-0.1.3 vs README.md in acumatica-0.2.0
- old
+ new
@@ -35,14 +35,25 @@
offset: 0,
limit: 100,
expand: 'Attributes'
)
+acumatica.stock_items.create({
+ "InventoryID": { "value": "TEST" },
+ "Description": { "value": "Test Item" },
+ "Attributes": [
+ {
+ "AttributeID": { "value": "Manufacturer" },
+ "Value": { "value": "ACME" }
+ }
+ ]
+})
+
acumatica.logout
```
## NOTES
-- Currently only querying of StockItems has been implemented - pull requests welcome!
+- Currently only querying and creating StockItems has been implemented - pull requests welcome!
- Querying Acumatica can be very slow, account for that when designing your integration.
- Some Acumatica installations limit the number of concurrent users, so make sure to logout when finished.
## TODO
- OAuth Authentication (coming soon)