|
|
|
|
|
by kiwicopple
1289 days ago
|
|
yes, that's correct. we've built a read-only version for Stripe (which is API-based), and we aim to have the read/write implementation done soon. You will be able to do something like this: insert into stripe_products (name)
values ('Pizza'), ('Pasta');
This will insert a value into Stripe via the API. Then you can query your stripe products like this: select *
from stripe_products
limit 10;
|
|
I can't wait for somebody offering a generator, where you plug in your API, it pulls and parses the JSON, then you can select the fields you want and it generates the wrapper. (Alternatively, for put/post you could supply your own JSON).
Practically like some low/no code tools like Appsmith/Budibase and the likes already do today.
Sadly I lack the necessary skills and more important the time to dive into that.