i wanted to add json data from node api.
is there any way to do this?
Hey priti_mistry
That can work depending on how it’s structured.
You can start with looking at the Metabase API.
For a better understanding of how parameters and data are read and transferred, best method at the moment is to open browser developer tools and and look at the calls in the Network tab.
Thanks.
(post deleted by author)
(post deleted by author)
Hello @Filmon ,
Thank you for your time.
I have all my Node.js APIs ready, and I would like to call these APIs directly in Metabase. Alternatively, I am looking for a Metabase API that supports receiving data in JSON, array, or CSV format.
I have been exploring Metabase, but I'm not sure if this is possible. Could you please guide me on how to achieve this?
Thank you.
Hey priti_mistry
I’d recommend starting with this to see what’s possible with the API
Also, when you look at the endpoints you’ll see that they don’t just take json in any format but it must be structured in key-value structure based on the expected parameters.
There are exceptions such as this endpoint which attempts to create a model based CSV values.
Thanks