LogsLog routes#Log to server#Used to save a log to the databaseURL: /api/v1/system/logsMethod: POSTAuth required: YesData constraints{ "type": "[required|string|min:1|max:190|in:INFO,WARNING,ERROR]", "message": "[required|string|min:1|max:65534]",}CopyData example{ "type": "ERROR", "message": "Logged via API"}CopySuccess response#Condition: Type is INFO, WARNING or ERRORCode: 201Content example{ "msg": "Log saved", "log": { "type": "ERROR", "message": "Logged via API", "user_id": 1, "updated_at": "2020-09-23T09:39:14.000000Z", "created_at": "2020-09-23T09:39:14.000000Z", "id": 83, "user_name": "Barack Obama" }}Copy