Search + K

Command Palette

Search for a command to run...

Sign In

Delete an SSH signing key for the authenticated user

DELETE /user/ssh_signing_keys/{ssh_signing_key_id}
Copy endpoint
https://api.github.com

Deletes an SSH signing key from the authenticated user's GitHub account.

OAuth app tokens and personal access tokens (classic) need the admin:ssh_signing_key scope to use this endpoint.

Parameters

path Path Parameters

Name Type
ssh_signing_key_id required

The unique identifier of the SSH signing key.

number

Responses

204

Response

unknown

Redirects

304

Not modified

unknown

Client Errors

401 application/json

Requires authentication

interface BasicError {
message?: string;
documentation_url?: string;
url?: string;
status?: string;
}
403 application/json

Forbidden

interface BasicError {
message?: string;
documentation_url?: string;
url?: string;
status?: string;
}
404 application/json

Resource not found

interface BasicError {
message?: string;
documentation_url?: string;
url?: string;
status?: string;
}