PUT
/
fastedge
/
v1
/
kv
/
{id}
Python
from gcore import Gcore

client = Gcore(
    api_key="My API Key",
)
kv_store = client.fastedge.kv_stores.replace(
    id=0,
)
print(kv_store.id)
{
  "id": 123,
  "comment": "<string>",
  "updated": "2023-11-07T05:31:56Z",
  "app_count": 123,
  "byod": {
    "url": "<string>",
    "prefix": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Path Parameters

id
integer
required

Id of the store

Body

application/json

Store details

The body is of type object.

Response

200
application/json

Ok

The response is of type object.