SysLog

Endpoints

Create SysLog

POST/api/RPC.common.Api.SysLog.set?token=<TOKEN>

Key SysLog.set · Open page

Parameters

7 body parameters inside data[]
FieldTypeDescription
titlerequiredStringSysLog header
infoStringInfo Link
executorsrequiredObjectExecutors object.
executors.executorsrequiredStringPerformers
syslog_typerequiredObjectSyslog_type object.
syslog_type.typerequiredStringSysLog types
syslog_type.idrequiredStringDocument ID

Request example

Create New SysLog:
{
   "data" : [
      {
         "syslog_type" : {
            "type" : "item",
            "id" : 1068067957
         },
         "title" : "Some test notification title",
         "executors" : [
            "warehouse warehouse",
            "Test test"
         ]
      }
   ]
}
HASH(0x56072e52ae70)*

cURL

Create New SysLog:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{   "data" : [      {         "syslog_type" : {            "type" : "item",            "id" : 1068067957         },         "title" : "Some test notification title",         "executors" : [            "warehouse warehouse",            "Test test"         ]      }   ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.SysLog.set?token=<TOKEN>"