Create SysLog
This endpoint is deprecated.
POST
/api/RPC.common.Api.SysLog.set?token=<TOKEN>Parameters
| Field | Type | Description |
|---|---|---|
titlerequired | String | SysLog header |
info | String | Info Link |
executorsrequired | Object | Executors object. |
executors.executorsrequired | String | Performers |
syslog_typerequired | Object | Syslog_type object. |
syslog_type.typerequired | String | SysLog types |
syslog_type.idrequired | String | Document 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>"Response example