import osfrom gcore import Gcoreclient = Gcore( api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted)client.fastedge.kv_stores.delete( 0,)
Copy
Ask AI
{ "error": "<string>"}
Edge Storage
Delete a store
Permanently delete an edge storage store and all its data.
This action cannot be undone; all keys and values will be lost.
DELETE
/
fastedge
/
v1
/
kv
/
{store_id}
Python
Copy
Ask AI
import osfrom gcore import Gcoreclient = Gcore( api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted)client.fastedge.kv_stores.delete( 0,)