OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
knoblyExpressLandingPage
/
cream
/
API
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
09/23/2024 04:31:51 AM
rwxr-xr-x
📄
.htaccess
128 bytes
09/23/2024 04:31:46 AM
rw-r--r--
📄
Write_a_Resume_that_stands_out.html
1.01 KB
09/23/2024 04:31:47 AM
rw-r--r--
📄
composer.json
65 bytes
09/23/2024 04:31:46 AM
rw-r--r--
📄
composer.lock
14.53 KB
09/23/2024 04:31:46 AM
rw-r--r--
📄
index.php
192 bytes
09/23/2024 04:31:47 AM
rw-r--r--
📄
swagger.php
2.52 KB
09/23/2024 04:31:47 AM
rw-r--r--
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" } } } } } } } } } } } }