Little stock API refinements
See original GitHub issueFor a my interface I am writing I need some kind of way to update the stock database directly. My motivation is to update the best_before_date of items without having to remove the item from stock and entering it again.
For my application I hacked it into the api:
diff --git a/grocy.openapi.json b/grocy.openapi.json
index eb6a246..199247b 100644
--- a/grocy.openapi.json
+++ b/grocy.openapi.json
@@ -2858,7 +2858,8 @@
"userfields",
"userentities",
"userobjects",
- "meal_plan"
+ "meal_plan",
+ "stock"
]
},
"ExposedEntitiesPreventListing": {
This is probably not the best solution as this does not touch the stock_log table.
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Comparing the best free financial market data APIs
So in this article, I compare a few of the top financial market data APIs' free tiers. I hope you find them useful....
Read more >Refinement - browse API - eBay Developers Program
This type defines the fields for the various refinements of an item. You can use the information in this container to create histograms,...
Read more >Best Stock APIs and Industry Landscape in 2022 - Medium
Wait! What about Yahoo Finance API or Google Finance API? Best Stock APIs to Use; Closing Thoughts. Stock API landscape.
Read more >IEX Cloud Legacy API
IEX Cloud API Reference. IEX Cloud is a platform that makes financial data and services accessible to everyone. The IEX Cloud API is...
Read more >Top 7 Best Stock Market APIs for Developers in 2022 - RapidAPI
In this article, we'll review the Best Stock Market APIs out there, including APIs such as Yahoo Finance, Alpha Vantage, Robinhood, and more ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Ok I’ll take a look at removing the stock access and updating the endpoints.
I updated the “stock_row_id” to be named “id” for the put requirement