orchestrator
2022.4
false
- 基本情報
- 認証
- Swagger の定義
- Orchestrator API
- プラットフォーム管理 API
アラートの要求
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
Orchestrator API ガイド
Last updated 2024年6月18日
アラートの要求
この要求では、ユーザーがアクセスできるテナントで 1 つ以上のアラートを既読としてマークできます。
POST
{OrchestratorURL}/odata/Alerts/UiPath.Server.Configuration.OData.MarkAsRead
{
"ids": [
"197ed863-037b-4d89-8271-c04e30b52240"
]
}
{
"ids": [
"197ed863-037b-4d89-8271-c04e30b52240"
]
}
{
"value": 12
}
{
"value": 12
}
Note: The request body must contain the
UserNotificationId
as the value for the "ids"
field of the payload. To find out the UserNotificationId
, make a GET request to the /odata/Alerts
endpoint first.
たとえば、GET
/odata/Alerts
を呼び出すと、次の応答本文が返されます。
{
"value": [
{
"NotificationName": "Robot.StatusChanged.Offline",
"Data": "{\"RobotId\":123,\"RobotName\":\"user@uipath.com-unattended\",\"State\":2,\"IsUnresponsive\":false,\"OrganizationUnitId\":null,\"HostMachineName\":\"MachineName\",\"ReportingTime\":\"2021-08-20T16:48:43.76\",\"Message\":\"#robot Robot(user@uipath.com-unattended) disconnected. (#1222)\",\"MessageErrorCode\":1222,\"FolderId\":null,\"FolderFullyQualifiedName\":null,\"ForceDisplay\":false,\"Type\":\"UiPath.Orchestrator.Core.Alerts.Model.RobotStatusNotification\",\"Properties\":{}}",
"Component": "Robots",
"Severity": "Fatal",
"CreationTime": "2021-08-20T16:48:50.02Z",
"State": "Unread",
"UserNotificationId": "197ed863-037b-4d89-8271-c04e30b52240",
"Id": "a258f4c5-7465-40f8-a650-02228353fd4e"
}
]
}
{
"value": [
{
"NotificationName": "Robot.StatusChanged.Offline",
"Data": "{\"RobotId\":123,\"RobotName\":\"user@uipath.com-unattended\",\"State\":2,\"IsUnresponsive\":false,\"OrganizationUnitId\":null,\"HostMachineName\":\"MachineName\",\"ReportingTime\":\"2021-08-20T16:48:43.76\",\"Message\":\"#robot Robot(user@uipath.com-unattended) disconnected. (#1222)\",\"MessageErrorCode\":1222,\"FolderId\":null,\"FolderFullyQualifiedName\":null,\"ForceDisplay\":false,\"Type\":\"UiPath.Orchestrator.Core.Alerts.Model.RobotStatusNotification\",\"Properties\":{}}",
"Component": "Robots",
"Severity": "Fatal",
"CreationTime": "2021-08-20T16:48:50.02Z",
"State": "Unread",
"UserNotificationId": "197ed863-037b-4d89-8271-c04e30b52240",
"Id": "a258f4c5-7465-40f8-a650-02228353fd4e"
}
]
}
"UserNotificationId"
の値 (197ed863-037b-4d89-8271-c04e30b52240
) を POST /odata/Alerts/UiPath.Server.Configuration.OData.MarkAsRead
エンドポイントの要求本文の "ids"
キーにマップします。