Upload Logs

The upload logs API endpoint allows you to send customer error and debug logs to the support app.

Upload Logs

POST https://api.sonoransoftware.com/support

Request Body

Name
Type
Description

type

string

UPLOAD_LOGS

data

object

Data Object Array

LOGS UPDATED
{
    "type": "UPLOAD_LOGS",
    "data": [
        {
            "key": 1, // Keys are manually generated in the support app
            "logs": "", // Error or debug logs
            "plugins": [
                {
                    "name": "Some Plugin",
                    "version": "1.1.0",
                    "config": {}
                },
                {
                    "name": "Some Plugin",
                    "version": "1.1.0",
                    "config": {}
                }
            ]
        },
    ]
}

Last updated