Get all SSH hosts
GET
/ssh/db/host
Retrieve a list of all configured SSH hosts in the system. This endpoint requires authentication and returns host information including connection details, authentication methods, and enabled features. Server: localhost:8081
Authorizations
bearerAuth
TypeHTTP (bearer)
Responses
Successfully retrieved SSH hosts
application/json
JSON
[
{
"id": 0,
"name": "string",
"ip": "string",
"port": 0,
"username": "string",
"folder": "string",
"tags": [
"string"
],
"pin": true,
"authType": "string",
"password": "string",
"key": "string",
"keyPassword": "string",
"keyType": "string",
"enableTerminal": true,
"enableTunnel": true,
"enableFileManager": true,
"defaultPath": "string",
"tunnelConnections": [
{
}
],
"createdAt": "string",
"updatedAt": "string"
}
]