import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
client.cloud.tasks.acknowledge_all()
Tasks
Acknowledge all client tasks in project or region
POST
/
cloud
/
v1
/
tasks
/
acknowledge_all
Python
Copy
Ask AI
import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
client.cloud.tasks.acknowledge_all()