Available Actions
readwritelistdelete
Input Schema
{
"type": "object",
"required": [
"action",
"path"
],
"properties": {
"path": {
"type": "string"
},
"action": {
"enum": [
"read",
"write",
"list",
"delete"
],
"type": "string"
},
"content": {
"type": "string"
}
}
}Output Schema
{
"type": "object",
"properties": {
"data": {
"type": "string"
},
"files": {
"type": "array"
},
"success": {
"type": "boolean"
}
}
}Quick Start
API Endpoint
POST /api/execute/file-managercURL Example
curl -X POST \
https://api.nulayers.com/execute/file-manager \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"action": "read"}'