Установить избранное
Устанавливает избранное текущего пользователя.
Если нужно установить избранное другого пользователя, используйте запрос Обновить пользователя.
Запрос
Параметры тела запроса
Избранное не имеет фиксированной структуры, так что, в это поле можно записывать произвольный набор полей.
Рекомендованная структура описана в статье Избранное.
Тело запроса
В теле запроса находится новый набор избранного.
Этот запрос перезаписывает предыдущее избранное пользователя. |
Избранное не имеет фиксированной структуры, так что, в это поле можно записывать произвольный набор полей.
Рекомендуется использовать структуру описанную в статье Избранное:
[
{
"name": "String", // Favorites collection name.
"objects": [
"String" // ID объекта.
],
"links": [
"String" // ID связи.
],
"operations": [
{
"id": "String", // Operation's ID."
"entityType": Integer, // Type of the entity. It's equal to 1 for objects and 2 for links.
"entityId": "String" // ID of an entity to which the operation belongs.
}
],
"graphs": [
{
"metric": "String", // Имя метрики."
"entityType": Integer, // Type of the entity. It's equal to 1 for objects and 2 for links.,
"entityId": "String", // ID of an entity to which the metric belongs.
}
]
}
]
Пример
Запрос
-
Bash
-
JavaScript
-
NodeJS
-
Python
login=<...>
password=<...>
saymon_hostname=<...>
url=https://$saymon_hostname/node/api/users/favorites
curl -X POST $url -u $login:$password \
-H "Content-Type: application/json" \
--d @- <<EOF [
{
"name": "My favorites",
"objects": [
"5e21b752308c3c66d64e072c",
"6315fc710f3d71351b6609c8"
],
"links": [
"5e4fc1c77915112ac209e53d",
"5c541db3347bb9002714d002"
],
"operations": [
{
"id": "5e21b85b308c3c66d64e07bc",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c"
},
{
"id": "5c541db3347bb9002714d003",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c"
}
],
"graphs": [
{
"metric": "stdout.m1",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c",
},
{
"metric": "stdout.m2",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c",
},
{
"metric": "TOTAL.bytesUsed",
"entityType": 1,
"entityId": "5c541dc5347bb9002714d17c",
}
]
}
]
EOF
let login = <...>
let password = <...>
let saymonHostname = <...>
let path = "/node/api/users/favorites";
let auth = "Basic " + btoa(login + ":" + password);
let headers = new Headers();
headers.append("Content-Type", "application/json");
headers.append("Authorization", auth);
let data = JSON.stringify([
{
"name": "My favorites",
"objects": [
"5e21b752308c3c66d64e072c",
"6315fc710f3d71351b6609c8"
],
"links": [
"5e4fc1c77915112ac209e53d",
"5c541db3347bb9002714d002"
],
"operations": [
{
"id": "5e21b85b308c3c66d64e07bc",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c"
},
{
"id": "5c541db3347bb9002714d003",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c"
}
],
"graphs": [
{
"metric": "stdout.m1",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c",
},
{
"metric": "stdout.m2",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c",
},
{
"metric": "TOTAL.bytesUsed",
"entityType": 1,
"entityId": "5c541dc5347bb9002714d17c",
}
]
}
]);
let requestOptions = {
method: "POST",
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 path = "/node/api/users/favorites";
let auth = "Basic " + Buffer.from(login + ":" + password).toString("base64");
let options = {
"method": "POST",
"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([
{
"name": "My favorites",
"objects": [
"5e21b752308c3c66d64e072c",
"6315fc710f3d71351b6609c8"
],
"links": [
"5e4fc1c77915112ac209e53d",
"5c541db3347bb9002714d002"
],
"operations": [
{
"id": "5e21b85b308c3c66d64e07bc",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c"
},
{
"id": "5c541db3347bb9002714d003",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c"
}
],
"graphs": [
{
"metric": "stdout.m1",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c",
},
{
"metric": "stdout.m2",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c",
},
{
"metric": "TOTAL.bytesUsed",
"entityType": 1,
"entityId": "5c541dc5347bb9002714d17c",
}
]
}
]);
req.write(data);
req.end();
import requests
login = <...>
password = <...>
saymon_hostname = <...>
url = "http://" + saymon_hostname + "/node/api/users/favorites"
body = [
{
"name": "My favorites",
"objects": [
"5e21b752308c3c66d64e072c",
"6315fc710f3d71351b6609c8"
],
"links": [
"5e4fc1c77915112ac209e53d",
"5c541db3347bb9002714d002"
],
"operations": [
{
"id": "5e21b85b308c3c66d64e07bc",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c"
},
{
"id": "5c541db3347bb9002714d003",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c"
}
],
"graphs": [
{
"metric": "stdout.m1",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c",
},
{
"metric": "stdout.m2",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c",
},
{
"metric": "TOTAL.bytesUsed",
"entityType": 1,
"entityId": "5c541dc5347bb9002714d17c",
}
]
}
]
response = requests.request("POST", url, json=body, auth=(login, password))
print(response.text)
Ответ
[
{
"name": "My favorites",
"objects": [
"5e21b752308c3c66d64e072c",
"6315fc710f3d71351b6609c8"
],
"links": [
"5e4fc1c77915112ac209e53d",
"5c541db3347bb9002714d002"
],
"operations": [
{
"id": "5e21b85b308c3c66d64e07bc",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c"
},
{
"id": "5c541db3347bb9002714d003",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c"
}
],
"graphs": [
{
"metric": "stdout.m1",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c",
},
{
"metric": "stdout.m2",
"entityType": 1,
"entityId": "5e21b752308c3c66d64e072c",
},
{
"metric": "TOTAL.bytesUsed",
"entityType": 1,
"entityId": "5c541dc5347bb9002714d17c",
}
]
}
]