GET
/
projects
/
{projectId}
/
vms
/
operations
/
{id}
curl --request GET \
  --url https://api.mkinf.io/v0.1/projects/{projectId}/vms/operations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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"
}

Get detailed information about a specific VM operation, including its status and results.

Authorizations

Authorization
string
header
required

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

Path Parameters

projectId
string
required

Project id

id
string
required

Operation id

Response

200 - application/json

The response is of type object.