File Editor
List server files
Lists files and directories at the given path on a server.
Authorization
Authorization<token>JWT Bearer token (format: Bearer {token})
In: header
Path Parameters
idRequiredstringServer ID (UUID)
Query Parameters
pathstringDirectory path
"/opt/ocore"OK
Delete server file
Deletes a file at the specified path on the server.
Authorization
Authorization<token>JWT Bearer token (format: Bearer {token})
In: header
Path Parameters
idRequiredstringServer ID (UUID)
Query Parameters
pathRequiredstringFile path to delete
OK
Get file info
Returns detailed metadata about a file on the server.
Authorization
Authorization<token>JWT Bearer token (format: Bearer {token})
In: header
Path Parameters
idRequiredstringServer ID (UUID)
Query Parameters
pathRequiredstringFile path
OK
Read server file
Reads and returns the content of a file on the server.
Authorization
Authorization<token>JWT Bearer token (format: Bearer {token})
In: header
Path Parameters
idRequiredstringServer ID (UUID)
Query Parameters
pathRequiredstringFile path to read
OK
List server file tree
Returns a recursive file listing up to the specified depth on the server.
Authorization
Authorization<token>JWT Bearer token (format: Bearer {token})
In: header
Path Parameters
idRequiredstringServer ID (UUID)
Query Parameters
pathstringRoot path
"/opt/ocore"depthintegerMaximum recursion depth
3OK
Write server file
Writes content to a file on the server.
Authorization
Authorization<token>JWT Bearer token (format: Bearer {token})
In: header
Request Body
application/jsonRequiredFile path and content
contentstringpathstringPath Parameters
idRequiredstringServer ID (UUID)
OK