Skip to main content

listSshKeys

GET /user/ssh-keys Returns all SSH keys associated with the authenticated user. Parameters: None Returns: Array of SshKey objects. Example:

createSshKey

POST /user/ssh-keys Adds a new SSH public key to the user’s account. Parameters: Returns: SshKey — the created key with computed fingerprint. Example:

deleteSshKey

DELETE /user/ssh-keys/{key_id} Removes an SSH key from the user’s account. Parameters: Returns: void

importGithubProfileSshKeys

POST /user/ssh-keys/import/github-profile Imports SSH public keys from a GitHub user’s profile. Parameters: Returns: ImportGithubProfileResponse — import results with count of keys added. Example:

syncGithubSshKeys

POST /user/ssh-keys/sync/github Syncs SSH keys with the authenticated user’s linked GitHub account. Parameters: None Returns: SyncGithubSshKeysResponse — sync results.