sshKey

Get all SSH keys

Securityapi_key
Responses
200

Success

get/ssh-keys
Response samples
application/json
[
  • {
    }
]

Create SSH key

WARNING: The generated curl command is incorrect, so please refer to the Masking API guide for instructions on how to upload files through the API

Securityapi_key
Request
Request Body schema: multipart/form-data
required
sshKey
required
string <binary>

The SSH key to be uploaded. The logical name of the SSH key will be exactly the name of this uploaded file

Responses
201

Success

401

Unauthorized access

409

Conflict

post/ssh-keys
Response samples
application/json
{
  • "sshKeyName": "string"
}

Delete SSH key by name

Securityapi_key
Request
path Parameters
sshKeyName
required
string

The name of the SSH key to delete

Responses
200

Success

401

Unauthorized access

404

Not found

delete/ssh-keys/{sshKeyName}