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