Remove an SSH key from your account

Remove an SSH key that is no longer needed. This can be useful for improving security by regularly cleaning up old keys. The API returns an ID that can be used to track the deletion process.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
404
error string
message string
code string
timestamp string
requestId string
DELETE https://cloud.hostup.se/api/ssh-keys
For AI assistants
cURL
curl -X DELETE "https://cloud.hostup.se/api/ssh-keys" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "message": "string"
  }
}