Skip to content

Update Event Log Record Payload

Updates event log record payload. Note that this method is available only for SNMP messages.

Request

HTTP Request

PATCH /node/api/event-log/:id/payload

Permissions

manage-event-log

Path parameters

Parameter Type Description
id String
required
The ID of an event log record whose payload should be updated.

Request body

{
    "text": "Test"
}

Response

The response body is empty.

Example

Request

login=<...>
password=<...>
saymon_hostname=<...>
record_id=<...>
url=https://$saymon_hostname/node/api/event-log/$record_id/payload

curl -X PATCH $url -u $login:$password \
    -H "Content-Type: application/json" \
    --data '{"text": "Test"}'
let login = <...>
let password = <...>
let saymonHostname = <...>
let recordId = <...>
let path = "/node/api/event-log/" + recordId + "/payload";
let auth = "Basic " + btoa(login + ":" + password);

let headers = new Headers();
headers.append("Content-Type", "application/json");
headers.append("Authorization", auth);

let data = JSON.stringify({
    "text": "Test"
});

let requestOptions = {
    method: "PATCH",
    headers: headers,
    body: data
};

fetch(saymonHostname + path, requestOptions)
    .then(response => response.text())
    .then(result => console.log(result))
    .catch(error => console.log("error", error));
const http = require("http");

let login = <...>
let password = <...>
let saymonHostname = <...>
let recordId = <...>
let path = "/node/api/event-log/" + recordId + "/payload";
let auth = "Basic " + Buffer.from(login + ":" + password).toString("base64");

let options = {
    "method": "PATCH",
    "hostname": saymonHostname,
    "headers": {
        "Authorization": auth,
        "Content-Type": "application/json"
    },
    "path": path
};

let req = http.request(options, function (res) {
    let chunks = [];

    res.on("data", function (chunk) {
        chunks.push(chunk);
    });

    res.on("end", function (chunk) {
        let body = Buffer.concat(chunks);
        console.log(body.toString());
    });

    res.on("error", function (error) {
        console.error(error);
    });
});

let data = JSON.stringify({
    "text": "Test"
});

req.write(data);
req.end();
import requests

login = <...>
password = <...>
saymon_hostname = <...>
record_id = <...>
url = "https://" + saymon_hostname + "/node/api/event-log/" + \
    record_id + "/payload"

body = {
    "text": "Test"
}

response = requests.request("PATCH", url, json=body, auth=(login, password))
print(response.text)