Open Context Protocol is live! 🚀 Read the launch post

getBackup

Get a Backup

GET /backups/{backup-id} HTTP/1.1

Parameters

{}

Response Schema

{
  "type": "object",
  "properties": {
    "backup": {
      "title": "backup",
      "type": "object",
      "x-examples": {
        "backup": {
          "id": "cb676a46-66fd-4dfb-b839-443f2e6c0b60",
          "date_created": "2020-10-10T01:56:20+00:00",
          "description": "Example Automatic Backup",
          "size": 10000000,
          "status": "complete"
        }
      },
      "description": "Backup information.",
      "properties": {
        "id": {
          "type": "string",
          "description": "A unique ID for the backup."
        },
        "date_created": {
          "type": "string",
          "description": "The date the backup was created."
        },
        "description": {
          "type": "string",
          "description": "The user-supplied description of this backup."
        },
        "size": {
          "type": "integer",
          "description": "The size of the backup in Bytes."
        },
        "status": {
          "type": "string",
          "description": "The Backup status.\n\n* complete\n* pending"
        }
      },
      "x-tags": [
        "backup"
      ]
    }
  }
}