File Upload:
Enter the URL with the corresponding endpoint and select the Body tab.
Check the form-data checkbox.
Add a key named file with type File, then select your file in the value field.
Click Send.
■ Issue creation: POST /issues
■ Issue deletion: DELETE /issues/{issue_id}
■ Issue status update (open/closed): PATCH /issues/{issue_id}
■ Issue listing: GET /issues
■ Filtering issues by status (open/closed): GET /issues?status=open or GET /issues?status=closed
■ Retrieving detailed information about a specific issue: GET /issues/{issue_id} /logs/{log_entry_id}
■ Retrieving the full log data for a specific log entry: GET
■ Retrieving the date and time of a specific log entry: GET /logs/{log_entry_id}/datetime
■ Retrieving the line number of a specific log entry: GET /logs/{log_entry_id}/line_number
Client for uploading logs to the service: I wrote a simple tool that sends logs via POST. The tool can be started manually or as part of automation by providing a parameter to the app using this pattern: logParserClient.exe "parameter eg log, etc.".
Example:
./logParserClient.exe "2025.05.09-11.31.58:991][ 82]LogBlueprint: Warning: [AssetLog] D:\composer\composerPublic\UE4\Engine\Plugins\Experimental\Landmass\Content\Landscape\BlueprintBrushes\Widgets\EUW_Landmass_Editor.uasset: [Compiler] Set Visibility : Usage of 'Set Visibility' has been deprecated. Do not use SetVisibility manually, please use SetVisible or SetHitTestable to modify the result visibility of widget."
To test the app, navigate to \Client and run Example_Use_By_User_Or_Automation.bat. This will open a cmd window that's send the passed parameter to the ingest server.