from gcore import Gcore
client = Gcore(
api_key="My API Key",
)
binaries = client.fastedge.binaries.list()
print(binaries.binaries)
{
"binaries": [
{
"id": 123,
"status": 123,
"unref_since": "<string>",
"api_type": "<string>",
"checksum": "<string>"
}
]
}
from gcore import Gcore
client = Gcore(
api_key="My API Key",
)
binaries = client.fastedge.binaries.list()
print(binaries.binaries)
{
"binaries": [
{
"id": 123,
"status": 123,
"unref_since": "<string>",
"api_type": "<string>",
"checksum": "<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
Ok
The response is of type object
.
Was this page helpful?