Python
from gcore import Gcore client = Gcore( api_key="My API Key", ) project = client.cloud.projects.get( project_id=0, ) print(project.id)
{ "client_id": 1, "created_at": "2019-12-31T23:59:59Z", "deleted_at": "2023-11-07T05:31:56Z", "description": "Project description", "id": 1, "is_default": true, "name": "default", "state": "ACTIVE", "task_id": "7244e161-664c-4afd-a34e-7003eac4d949" }
Retrieve detailed information about a specific project.
255
Was this page helpful?