- 👋 Hello
- API Introduction
- API Reference
- User
- Balance
- Affiliate
- Invoices
- Support
- SSH Keys
- Servers
- Scale
- Addons
- Rescue
- List plans
- List servers
- Server status
- Get a server
- Server metrics
- Bandwidth
- Deploy new server
- Start a server
- Restart a server
- Stop a server
- Power off
- Cancel server
- Undo cancel request
- Change password
- Update hostname
- Update SSH Keys
- Modify ISOs
- Restore
- Renew server
- Reinstall Server
- Change Primary IP
- Calculate renew amount
- Plans
- Snapshots
- Backups
- Server Images
- Floating IPs
- IP Addresses
- Network Protection
- Orders
- ISOs
Update SSH Key
PATCH
https://api.vpsbg.eu/v1/ssh-keys/{id}
SSH Keys
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
stringÂ
required
Header Params
Accept
stringÂ
required
Default:
application/json
Body Params application/json
name
stringÂ
optional
>= 3 characters<= 100 characters
key
stringÂ
optional
Example:
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDJXgSGIiC3OMJtZrGBLY4rpfPjwWZiJtcG4JLUOWCt5h6cSQ4ESRFzCzK4uz6XM1ZjizGj8r2T5IA+9nAdXZAmD8p9mZ8eYFz8QY/URBsn2ohX4NVR9ScGbr3Z3q6Vq6aK6YbW+J++CmgM5sV6BZhMkvr5V55MP0KGS3hCV02OqQ4+q9jc6RXHZLJ2eSH7KrMz7ZTsV4yC5lfCwCfDdzeKU9ZjTjsGHU4N5nWnApJb7s1L2GdJ1F6QQNc6vN1z0SlZL9QqjMG3AicSiqJlRzAFK2u0xszj6wvgPhTZ/xsmdgH+b9y2r0bl6pLzImh0I6FCRRIm2JdFmlDnqQb user@example.com
Match pattern:
/^(ssh-(rsa|ed25519)) [A-Za-z0-9+\/=]+(\s.+)?$/
Example
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://api.vpsbg.eu/v1/ssh-keys/' \
--header 'Accept;' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200When update is successfully, it will return the updated resource.
application/json
Body
id
integerÂ
optional
name
stringÂ
optional
key
stringÂ
optional
Example
{
"id": 90,
"name": "Example SSH Key",
"key": "ssh-rsa AA... user@example.com"
}
🔴500Server Error
Modified at 2024-09-19 13:09:50