duplicate_fingerprint

HTTP 409

Duplicate SSH key

Type URL

https://developer.hostup.se/errors/duplicate_fingerprint

Detail message

This SSH public key is already registered on the account.

Example response

{
  "type": "https://developer.hostup.se/errors/duplicate_fingerprint",
  "title": "Duplicate SSH key",
  "status": 409,
  "detail": "This SSH public key is already registered on the account.",
  "code": "duplicate_fingerprint",
  "instance": "/api/v2/...",
  "requestId": "req_abc123",
  "timestamp": "2026-04-27T12:00:00.000Z"
}

Endpoints that may return this error

Handling this error

const response = await fetch(url, options);

if (!response.ok) {
  const problem = await response.json();

  if (problem.code === "duplicate_fingerprint") {
    // Handle: Duplicate SSH key
    console.error(problem.detail);
  }
}