SSH endpoints

This document contains the endpoints for the SSH category.

Execute SSH Command

/api/v1/ssh/execute Authorized

Executes a command on a remote host via SSH

Parameters
Name Type In Required Description
sshRequest object body optional Body
Schema
{
  "command": "string",
  "enable_insecure_key": "bool",
  "host": "string",
  "key": "string",
  "password": "string",
  "port": "int",
  "username": "string"
}