Save data for an extension (Editor API)

Hello everyone, I’m creating a tool in editor using the Editor API.
this tool has some settings on it, i want to know if it possible to save these settings.

i know i can use local storage and combine some string to save this information per entity, but would be grate not relies on local storage.

Thank you :smiley:

We don’t really have a way to store arbitrary data on our backend. LocalStorage or similar might be your only option here

Thank you Mark

You could update JSON assets via the REST API and that means you can save some data there. This would mean adding your REST API token somewhere though (in the tool etc)

1 Like

Hi yaustar, thank you for the suggestion, i’ll check this option

with the json asset worked.
thank you again :grinning:

2 Likes