Bot の進捗状況のリクエスト

BotID を指定して Bot のステータスのリクエスト。

前提条件

Bot id
その進捗状況を追跡する特定の Bot の ID。
ロールとライセンス

Unattended Bot Runner ライセンス を持つユーザーとして認証する必要があります。

この API を使用して、特定の Bot の進捗状況を追跡します。
  • URL: http://<your_control_room_url>/v2/activity/list
  • メソッド: POST
注:

手順

  1. リクエスト ヘッダーに認証トークンを追加します。
    注: 認証 API を使用して JSON Web トークンを生成します。
  2. API の URL (http://<your_control_room_url>/v2/activity/list) を入力します。
  3. POST メソッドを選択します。
  4. 次のパラメーターをリクエスト本文に指定します。
    {
      "filter": {
        "operator": "and",
        "operands": [
          {
      "operator": "eq",
      "value": "6",
      "field": "deviceId"
      },
      {
      "operator": "eq",
      "value": "14",
      "field": "fileId"
      }
    ]
    }
    }
    このリクエストは、deviceId が 6 のデバイスで、fielId が 14 の Bot のすべてのアクティビティをフィルターします。
  5. リクエストを送信します。
    • REST Client で SEND をクリックします。
    • Swagger インターフェースで [実行] をクリックします。
    レスポンス本文:
    {
      "page": {
        "offset": 0,
        "total": 33,
        "totalFilter": 3
      },
      "list": [
        {
          "id": "99f692c6-9ae4-4adb-8d27-0cd5b1b88de8",
          "automationName": "testHelloWorld_19.11.25.18.29.02_docs-admin_API",
          "fileName": "testHelloWorld.atmx",
          "filePath": "Automation Anywhere\\My Tasks\\testHelloWorld.atmx",
          "type": "TASK",
          "startDateTime": "2019-11-25T18:29:05Z",
          "endDateTime": "2019-11-25T18:29:21Z",
          "command": "Message Box",
          "status": "COMPLETED",
          "progress": 100,
          "automationId": "13",
          "userId": "21",
          "deviceId": "6",
          "currentLine": 1,
          "totalLines": 1,
          "fileId": "14",
          "modifiedBy": "4",
          "createdBy": "4",
          "modifiedOn": "2019-11-25T18:29:21.637Z",
          "createdOn": "2019-11-25T18:29:02.541Z",
          "deploymentId": "93457151-7edd-4454-9dfd-35a3f1d96f25",
          "queueName": "",
          "queueId": "",
          "usingRdp": false,
          "message": "",
          "canManage": true,
          "deviceName": "AA-SJ-TerryMartin.AAI.AASPL-BRD.COM",
          "userName": "docs-bot",
          "isMigrated": false,
          "jobUniqueId": "99f692c6-9ae4-4adb-8d27-0cd5b1b88de8",
          "outputVariables": {
            "vMyHelloWorld": {
              "string": "Hello world from a variable"
            }
          }
        },
        {
          "id": "12e24bb7-7e37-4693-8e74-144ac3e6f566",
          "automationName": "testHelloWorld_19.11.25.18.30.33_docs-admin_API",
          "fileName": "testHelloWorld.atmx",
          "filePath": "Automation Anywhere\\My Tasks\\testHelloWorld.atmx",
          "type": "TASK",
          "startDateTime": "2019-11-25T18:30:36Z",
          "endDateTime": "2019-11-25T18:30:42Z",
          "command": "Message Box",
          "status": "COMPLETED",
          "progress": 100,
          "automationId": "14",
          "userId": "21",
          "deviceId": "6",
          "currentLine": 1,
          "totalLines": 1,
          "fileId": "14",
          "modifiedBy": "4",
          "createdBy": "4",
          "modifiedOn": "2019-11-25T18:30:42.260Z",
          "createdOn": "2019-11-25T18:30:33.615Z",
          "deploymentId": "137ed5b1-f573-4757-b890-fc93088e0c5f",
          "queueName": "",
          "queueId": "",
          "usingRdp": false,
          "message": "",
          "canManage": true,
          "deviceName": "AA-SJ-TerryMartin.AAI.AASPL-BRD.COM",
          "userName": "docs-bot",
          "isMigrated": false,
          "jobUniqueId": "12e24bb7-7e37-4693-8e74-144ac3e6f566",
          "outputVariables": {
            "vMyHelloWorld": {
              "string": "Hello world from a variable"
            }
          }
        },
        {
          "id": "9728beaf-6653-46a9-b053-b386b8333199",
          "automationName": "testHelloWorld_19.12.02.17.42.37_docs-admin_API",
          "fileName": "testHelloWorld.atmx",
          "filePath": "Automation Anywhere\\My Tasks\\testHelloWorld.atmx",
          "type": "TASK",
          "startDateTime": "2019-12-02T17:42:40Z",
          "endDateTime": "2019-12-02T17:42:44Z",
          "command": "Message Box",
          "status": "COMPLETED",
          "progress": 100,
          "automationId": "17",
          "userId": "21",
          "deviceId": "6",
          "currentLine": 1,
          "totalLines": 1,
          "fileId": "14",
          "modifiedBy": "4",
          "createdBy": "4",
          "modifiedOn": "2019-12-02T17:42:45.072Z",
          "createdOn": "2019-12-02T17:42:37.591Z",
          "deploymentId": "ba70ed50-2a28-477b-9557-32283f5bba27",
          "queueName": "",
          "queueId": "",
          "usingRdp": false,
          "message": "",
          "canManage": true,
          "deviceName": "AA-SJ-TerryMartin.AAI.AASPL-BRD.COM",
          "userName": "docs-bot",
          "isMigrated": false,
          "jobUniqueId": "9728beaf-6653-46a9-b053-b386b8333199",
          "outputVariables": {
            "vMyHelloWorld": {
              "string": "Hello world from a variable"
            }
          }
        }
      ]
    }