action files_get_sftp_host_keys { label: "List Sftp Host Keys" description: "List Sftp Host Keys" provider: files method: GET path: "/sftp_host_keys" encoding: json input: { type: "object" properties: { cursor: { type: "string" } per_page: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "array" items: { type: "object" description: "Create Sftp Host Key" properties: { fingerprint_md5: { type: "string" description: "MD5 Fingerpint of the public key" } fingerprint_sha256: { type: "string" description: "SHA256 Fingerpint of the public key" } id: { type: "integer" format: "int32" description: "Sftp Host Key ID" } name: { type: "string" description: "The friendly name of this SFTP Host Key." } } } } }