from gcore import Gcore
client = Gcore(
api_key="My API Key",
)
kv_store = client.fastedge.kv_stores.create()
print(kv_store.id)
{
"id": 123,
"comment": "<string>",
"updated": "2023-11-07T05:31:56Z",
"app_count": 123,
"byod": {
"url": "<string>",
"prefix": "<string>"
}
}
from gcore import Gcore
client = Gcore(
api_key="My API Key",
)
kv_store = client.fastedge.kv_stores.create()
print(kv_store.id)
{
"id": 123,
"comment": "<string>",
"updated": "2023-11-07T05:31:56Z",
"app_count": 123,
"byod": {
"url": "<string>",
"prefix": "<string>"
}
}
API key for authentication. Make sure to include the word apikey
, followed by a single space and then your token.
Example: apikey 1234$abcdef
Key-value pair details
The body is of type object
.
Ok
The response is of type object
.
Was this page helpful?