Skip to main content
The Monolisk REST API provides logging and data management endpoints for application data storage and retrieval.

Overview

The Monolisk REST API handles logging and data management operations. The API supports application logs, file uploads, and metadata management with flexible retrieval options.

Core Functionality

  • Logging: Application log storage and retrieval
  • File Management: Secure file upload, download, and management
  • Chunk Processing: Large file handling through chunked operations
  • Metadata Management: Rich metadata support for stored data
  • Data Retrieval: Flexible options for accessing stored information

Monolisk API Specification

View the complete OpenAPI specification

API Endpoints

The Monolisk REST API provides the following endpoints:
EndpointPurpose
/listRetrieve lists of logged data
/wholeUpload or download complete files
/uploadHandle file uploads with validation
/deleteRemove data and files
/chunkProcess large files in chunks
/metadataManage data metadata

Authentication

All endpoints require Bearer token authentication. Include the token in the Authorization header:
Authorization: Bearer YOUR_API_TOKEN
Authentication configuration:
"security": [
  {
    "bearerAuth": []
  }
]

Implementation Notes

  • All endpoints return JSON responses
  • File uploads support multipart/form-data
  • Large files can be processed using chunked uploads
  • Metadata can be attached to any stored data
  • Rate limiting applies to all endpoints