Open Context Protocol is live! 🚀 Read the launch post

restoreInstance

Restore Instance

POST /instances/{instance-id}/restore HTTP/1.1

Parameters

{
  "backup_id": {
    "description": "The [Backup id](#operation/list-backups) used to restore this instance.",
    "required": false,
    "location": "body",
    "type": "string"
  },
  "snapshot_id": {
    "description": "The [Snapshot id](#operation/list-snapshots) used to restore this instance.",
    "required": false,
    "location": "body",
    "type": "string"
  }
}

Response Schema

{
  "type": "object",
  "properties": {
    "status": {
      "type": "object",
      "properties": {
        "restore_type": {
          "type": "string"
        },
        "restore_id": {
          "type": "string"
        },
        "status": {
          "type": "string"
        }
      }
    }
  }
}