# Store log messages Stores log messages in the platform. This endpoint aims to improve the API integration process. Endpoint: POST /api/v3/log/messages Version: 0.0.7228 Security: BasicAuth, BearerAuth ## Request fields (application/json): - `version` (string, required) API version for log message format. Must always be "1" for current implementation. Enum: "1" - `messages` (array, required) Array of log messages to be processed - `messages.message` (string, required) The actual log message content to be published Example: "Product sync completed successfully" - `messages.severity` (string, required) Log message severity level, ordered by priority (highest to lowest): - : Critical errors causing system termination - : Serious errors requiring immediate attention - : Deprecated APIs, poor API usage, or unexpected situations - : General progress and state information for end users - : Detailed information for application developers and support - : Most detailed information for deep debugging Enum: "fatal", "error", "warn", "info", "debug", "trace" - `messages.component` (string, required) Name of the integrated system or application component generating the log Example: "shopware" - `messages.source` (string, required) Specific entity or source within the component for additional categorization Example: "shop.example.com" - `messages.contractId` (string) The contract identifier associated with this log message Example: "qbcxvb"