Authorizations
Path Parameters
Response
200 - application/vnd.api+json
Success
The response is of type file
.
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.ssh_keys.delete_ssh_key(ssh_key_id="ssh_zlkg1DegdvZE5")
# Use the SDK ...
{
"meta": {}
}
Allows you remove SSH Keys in a project. Remove a SSH Key from the project won’t revoke the SSH Keys access for previously deploy and reinstall actions.
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.ssh_keys.delete_ssh_key(ssh_key_id="ssh_zlkg1DegdvZE5")
# Use the SDK ...
{
"meta": {}
}
Success
The response is of type file
.
Was this page helpful?