Open Context Protocol is live! 🚀 Read the launch post

getSshKey

Get SSH Key

GET /ssh-keys/{ssh-key-id} HTTP/1.1

Parameters

{}

Response Schema

{
  "type": "object",
  "properties": {
    "ssh_key": {
      "title": "ssh",
      "type": "object",
      "x-examples": {
        "ssh-key": {
          "id": "cb676a46-66fd-4dfb-b839-443f2e6c0b60",
          "date_created": "2020-10-10T01:56:20+00:00",
          "name": "Example SSH Key",
          "ssh_key": "ssh-rsa AA... user@example.com"
        }
      },
      "description": "SSH Key information.",
      "x-tags": [
        "ssh"
      ],
      "properties": {
        "id": {
          "type": "string",
          "description": "A unique ID for the SSH Key."
        },
        "date_created": {
          "type": "string",
          "description": "The date this SSH Key was created."
        },
        "name": {
          "type": "string",
          "description": "The user-supplied name for this SSH Key."
        },
        "ssh_key": {
          "type": "string",
          "description": "The SSH Key."
        }
      }
    }
  }
}