GET
/
projects
/
{id}
/
vms
/
operations
curl --request GET \
  --url https://api.mkinf.io/v0.1/projects/{id}/vms/operations \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "operation_id": "2d8fde0c-4115-462c-9bf3-547d6dae1555",
      "state": "SUCCEEDED",
      "metadata": {
        "operation_name": "CREATE",
        "id": "b3e571f6-c87d-4135-8081-ab219e92544e",
        "type": "vm",
        "request": {}
      },
      "result": {},
      "started_at": "2024-06-16T15:52:41Z",
      "completed_at": "2024-06-16T15:52:53Z"
    }
  ]
}

List all VM-related operations. Supports filtering by resource ID and operation state.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Project id

Query Parameters

resource_id
string

Resource id

state
string

Operation status

lower_time_bound
string

Lower time bound

Response

200 - application/json

The response is of type object.