Public cloud

List project tasks

GET
/api/cloud/project/{project_uuid}/task/

Returns recent cluster tasks started by members of this project (filtered to the project's Proxmox users). user is the member email, or current when the task belongs to the authenticated API user.

Authorization

bearerAuth
AuthorizationBearer <token>

API key created in the portal (Settings → API Keys). Send as Authorization: Bearer <key>.

In: header

Path Parameters

project_uuid*string

Project UUID.

Response Body

application/json

curl -X GET "https://example.com/api/cloud/project/string/task/"
[  {    "upid": "string",    "type": "string",    "status": "string",    "user": "string",    "starttime": 0,    "endtime": 0,    "id": "string"  }]