import os
from gcore import Gcore
client = 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>"
}
KV Storage
Delete a store
DELETE
/
fastedge
/
v1
/
kv
/
{id}
Python
Copy
Ask AI
import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
client.fastedge.kv_stores.delete(
0,
)