SSHKeys
Create SSH key
Creates an SSH public key for SFTP storage access. These keys are used for passwordless authentication to SFTP storages.
post/storage/v4/ssh_keys
Request body
Example request
{
"name": "my-production-key",
"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAA... user@example.com"
}Response
SSHKeyV4
Example response
{
"created_at": "2025-08-05T09:15:00Z",
"id": 123,
"name": "my-production-key",
"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAA... user@example.com"
}