List actions for server

Method URI Description
GET /v2/{tenant_id}/servers/{server_id}/os-instance-actions List actions for a server.

Normal response codes: 200

CAUTION:

When action is in progress or completed successfully, message of Response becomes null.

When terminated unsuccessfully, message of Response becomes Error.

Refer to Show server action details for details on the API for checking the server status.

Request

This table shows the URI parameters for List Actions For Server:

Name Type Description
{tenant_id} String Project ID
{server_id} UUID The UUID for the server of interest to you.

This operation does not require a request body.

Response

Example. List Actions For Server: JSON response


       {
        "instanceActions": [
         {
          "instance_uuid": "e39b684e-7da7-461e-8d21-37670b472b17",
          "user_id": "1f708e1376784e529a7b09eb5ff1a5fc",
          "start_time":"2016-11-14T08:05:15.000000", 
          "request_id": "req-c13e5267-6afe-4370-a167-1862e8db703d", 
          "action": "unshelve", 
          "message": null, 
          "project_id":"bb46ff7286ed4e418958c2a5e06cd4a2"
         }
        ]
       }