SSHKey
Authorizations
PRIVATE-TOKENstringRequired
Responses
200
OK
application/json
uuidstringRead-onlyRequiredExample:
SSH key UUID as specified in RFC 4122
7561c39d-f4df-4c46-b3f1-2ac981271e29namestringRequired
SSH key name
publicKeystringRequired
Public SSH key contents
createdAtinteger · integerRead-onlyRequired
SSH key createdAt
403
Invalid credentials
500
Internal Server Error
application/json
get/v3/sshKey
GET /v3/sshKey HTTP/1.1
Host: api.i3d.net
PRIVATE-TOKEN: YOUR_API_KEY
Accept: */*
[
{
"uuid": "7561c39d-f4df-4c46-b3f1-2ac981271e29",
"name": "text",
"publicKey": "text",
"createdAt": 1
}
]Authorizations
PRIVATE-TOKENstringRequired
Body
uuidstringRead-onlyRequiredExample:
SSH key UUID as specified in RFC 4122
7561c39d-f4df-4c46-b3f1-2ac981271e29namestringRequired
SSH key name
publicKeystringRequired
Public SSH key contents
createdAtinteger · integerRead-onlyRequired
SSH key createdAt
Responses
200
OK
application/json
uuidstringRead-onlyRequiredExample:
SSH key UUID as specified in RFC 4122
7561c39d-f4df-4c46-b3f1-2ac981271e29namestringRequired
SSH key name
publicKeystringRequired
Public SSH key contents
createdAtinteger · integerRead-onlyRequired
SSH key createdAt
403
Invalid credentials
422
Unprocessable Entity
500
Internal Server Error
application/json
post/v3/sshKey
POST /v3/sshKey HTTP/1.1
Host: api.i3d.net
PRIVATE-TOKEN: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 34
{
"name": "text",
"publicKey": "text"
}[
{
"uuid": "7561c39d-f4df-4c46-b3f1-2ac981271e29",
"name": "text",
"publicKey": "text",
"createdAt": 1
}
]Authorizations
PRIVATE-TOKENstringRequired
Responses
200
OK
application/json
uuidstringRead-onlyRequiredExample:
SSH key UUID as specified in RFC 4122
7561c39d-f4df-4c46-b3f1-2ac981271e29namestringRequired
SSH key name
publicKeystringRequired
Public SSH key contents
createdAtinteger · integerRead-onlyRequired
SSH key createdAt
403
Invalid credentials
404
Entity not found
500
Internal Server Error
application/json
get/v3/sshKey/{uuid}
GET /v3/sshKey/{uuid} HTTP/1.1
Host: api.i3d.net
PRIVATE-TOKEN: YOUR_API_KEY
Accept: */*
[
{
"uuid": "7561c39d-f4df-4c46-b3f1-2ac981271e29",
"name": "text",
"publicKey": "text",
"createdAt": 1
}
]Authorizations
PRIVATE-TOKENstringRequired
Path parameters
uuidstringRequiredExample:
SSH key UUID
7561c39d-f4df-4c46-b3f1-2ac981271e29Responses
204
No Content
No content
400
Invalid UUID
403
Invalid credentials
404
SSH key not found
500
Internal Server Error
application/json
delete/v3/sshKey/{uuid}
DELETE /v3/sshKey/{uuid} HTTP/1.1
Host: api.i3d.net
PRIVATE-TOKEN: YOUR_API_KEY
Accept: */*
No content
Last updated
Was this helpful?