OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
API
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/28/2024 11:03:35 AM
rwxrwxr-x
📄
.htaccess
128 bytes
08/07/2024 04:33:38 AM
rw-r--r--
📄
Write_a_Resume_that_stands_out.html
1.01 KB
08/07/2024 08:28:00 AM
rw-r--r--
📄
composer.json
65 bytes
08/07/2024 04:33:38 AM
rw-r--r--
📄
composer.lock
14.53 KB
08/07/2024 04:33:38 AM
rw-r--r--
📁
config
-
08/07/2024 04:33:38 AM
rwxr-xr-x
📁
controllers
-
08/07/2024 04:33:38 AM
rwxr-xr-x
📄
index.php
192 bytes
08/07/2024 05:08:25 AM
rw-r--r--
📁
models
-
08/07/2024 04:33:38 AM
rwxr-xr-x
📁
swagger-ui-5.17.14
-
08/07/2024 04:33:48 AM
rwxr-xr-x
📄
swagger.php
2.52 KB
08/07/2024 04:33:38 AM
rw-r--r--
📁
vendor
-
08/07/2024 04:33:51 AM
rwxr-xr-x
Editing: swagger.php
Close
{ "openapi": "3.0.0", "info": { "title": "API Documentation", "version": "1.0.0", "description": "API documentation for user collection endpoints" }, "servers": [ { "url": "http://139.59.38.164/API", "description": "Production server" } ], "paths": { "/user_collection": { "get": { "tags": [ "User Collection" ], "summary": "Get user collection data", "description": "Returns a list of user collection data", "responses": { "200": { "description": "Successful operation", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "integer", "example": 1 }, "user_id": { "type": "integer", "example": 101 }, "author": { "type": "string", "example": "John Doe" }, "date_added": { "type": "string", "format": "date-time", "example": "2024-06-20T10:00:00Z" }, "date_modified": { "type": "string", "format": "date-time", "example": "2024-06-20T12:30:00Z" }, "date_published": { "type": "string", "format": "date-time", "example": "2024-06-20T11:15:00Z" }, "likes": { "type": "integer", "example": 15 }, "title": { "type": "string", "example": "Sample Title" }, "description": { "type": "string", "example": "Sample description of the user collection data" } } } } } } } } } } } }