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