{
  "info": {
    "_postman_id": "8c857099-1aa0-4c48-a856-09162d28d99a",
    "name": "OpenApi(UC4X)",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "_exporter_id": "30621344"
  },
  "item": [
    {
      "name": "UCv4x",
      "item": [
        {
          "name": "01.身份验证",
          "item": [
            {
              "name": "1.1获取token",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      "var data = JSON.parse(responseBody);",
                      "if (data.access_token) {",
                      "    tests[\"Body has token\"] = true;",
                      "    postman.setEnvironmentVariable(\"access_token\", data.access_token);",
                      "}",
                      "else {",
                      "    tests[\"Body has token\"] = false;",
                      "}"
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "protocolProfileBehavior": {
                "strictSSL": false
              },
              "request": {
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "password",
                      "value": "{{AccessKey Secret}}",
                      "type": "string"
                    },
                    {
                      "key": "username",
                      "value": "{{AccessKey ID}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "",
                    "value": "",
                    "type": "text",
                    "disabled": true
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n\"grant_type\": \"client_credentials\"\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/token",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "token"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "1.1获取token Copy",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      "var data = JSON.parse(responseBody);",
                      "if (data.access_token) {",
                      "    tests[\"Body has token\"] = true;",
                      "    postman.setEnvironmentVariable(\"access_token\", data.access_token);",
                      "}",
                      "else {",
                      "    tests[\"Body has token\"] = false;",
                      "}"
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "protocolProfileBehavior": {
                "strictSSL": false
              },
              "request": {
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "password",
                      "value": "dfa154880294427fbd6935d310513313",
                      "type": "string"
                    },
                    {
                      "key": "username",
                      "value": "16b1245ab66740b2a88bced176bcbf2c",
                      "type": "string"
                    }
                  ]
                },
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "",
                    "value": "",
                    "type": "text",
                    "disabled": true
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n\"grant_type\": \"client_credentials\"\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/token",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "token"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "获取token（单点登录场景验证使用）",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      "var data = JSON.parse(responseBody);",
                      "if (data.access_token) {",
                      "    tests[\"Body has token\"] = true;",
                      "    postman.setEnvironmentVariable(\"access_token\", data.access_token);",
                      "}",
                      "else {",
                      "    tests[\"Body has token\"] = false;",
                      "}"
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "protocolProfileBehavior": {
                "strictSSL": false
              },
              "request": {
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "password",
                      "value": "{{AccessKey Secret}}",
                      "type": "string"
                    },
                    {
                      "key": "username",
                      "value": "{{AccessKey ID}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "",
                    "value": "",
                    "type": "text",
                    "disabled": true
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n\"grant_type\": \"authorization_code\",\r\n\"code\": \"c22f8f5395f24cefa842b3e79bcafbf3\",\r\n\"redirect_uri\":\"https://www.baidu.com\"\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/token",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "token"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "刷新token",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      "var data = JSON.parse(responseBody);",
                      "if (data.access_token) {",
                      "    tests[\"Body has token\"] = true;",
                      "    postman.setEnvironmentVariable(\"access_token\", data.access_token);",
                      "}",
                      "else {",
                      "    tests[\"Body has token\"] = false;",
                      "}"
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "protocolProfileBehavior": {
                "strictSSL": false
              },
              "request": {
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "password",
                      "value": "{{AccessKey Secret}}",
                      "type": "string"
                    },
                    {
                      "key": "username",
                      "value": "{{AccessKey ID}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "",
                    "value": "",
                    "type": "text",
                    "disabled": true
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n\"grant_type\": \"refresh_token\",\r\n\"refresh_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhcmVhIjoiQ04tRkoiLCJjb3VudHJ5IjoiQ04iLCJqdCI6InJlZnJlc2hfdG9rZW4iLCJwaWQiOiI1MmI2YTdlMjMwM2Q0MzM2OWYzOGY5N2NhOGJmY2U4MiIsImd0IjoxLCJhdCI6MCwicyI6MiwiYXVzaWQiOiIzY2Q0MGRlZTk5Mjg0ZTc0YWQyMzg4MjI2MWI5YTE3MyIsImF1cGlkIjoiNTJiNmE3ZTIzMDNkNDMzNjlmMzhmOTdjYThiZmNlODIiLCJleHAiOjE2NjAwMTM3OTksInJlZ2lvbiI6ImNuLXNoYW5naGFpIiwic28iOjEsImFpZCI6ImNiNzkwZWJmYmQ0YzRjZjRiMjU2OTdkZTQxNDk5OWRkIiwianRpIjoiNzNhYTgzZWZlNjYwNDk4YWJhOTVhYTMyMjc3YmFhYjMiLCJkaWQiOiI0YmZhMTU2NTNmNzA0YWI0ODIyMThkOTQ2NWJmZjMxMiIsImNpZCI6IjM3ZmUzYjZlMTE1NzRhMDA5MjE5NWFhNjMxYjI3MWI4In0.HY6AbOnUytPND9IpMGnqZZmS4lzsV7Ky9AUbmX6TQybWsTdB6cxl0LzxaEpxlmr-hWmq1vwtor8s_Bw1gzN3tCykp3DGp4dLkECS5z1HL4AiRihBsbAJW702Bdi8uMccyCJ3ZEsiKoxazaZjsx3VXifFwndTECrSE7EVUIm5PBI\"\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/token",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "token"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "02.企业成员管理",
          "item": [
            {
              "name": "2.1添加分组",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n\t\"name\":\"addtest\",\r\n\t\"parentId\": \"\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/groups",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "groups"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2.26批量添加分组",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n\t\"parentId\": \"0fe9fdb88e4a49b7ab05f3a88109588e\",\r\n    \"groups\": [\r\n        {\r\n            \"name\": \"AA1\",\r\n            \"index\": 2000\r\n        },\r\n        {\r\n            \"name\": \"BB1\",\r\n            \"index\": 1000\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/groups/batchAdd",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "groups",
                    "batchAdd"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2.2查询分组详情",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/groups/{{groupId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "groups",
                    "{{groupId}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2.3编辑分组",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n\t\"name\":\"openApiGrou\",\r\n    \"index\": 1000\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/groups/{{groupId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "groups",
                    "{{groupId}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2.4删除分组",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/groups/{{groupId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "groups",
                    "{{groupId}}"
                  ],
                  "query": [
                    {
                      "key": "",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2.5查询用户列表",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users?limit=100&offset=0",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users"
                  ],
                  "query": [
                    {
                      "key": "limit",
                      "value": "100"
                    },
                    {
                      "key": "offset",
                      "value": "0"
                    },
                    {
                      "key": "groupId",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2.6添加用户",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"name\": \"syx7001\",\r\n    \"extension\": \"7001\",\r\n    \"groupId\": \"9b83ed82a20a48e0a3496536fd2b8d01\",\r\n    \"mobile\": \"1923@!\",\r\n    \"email\": \"\",\r\n    \"mobileCode\": \"86\",\r\n    \"title\": \"\",\r\n    \"gender\": 0,\r\n    \"enableMeetingNow\": true,\r\n    \"enableMeetingAppoinitment\": true,\r\n    \"enableParticipantConcurrentAmount\": true,\r\n    \"maxParticipantConcurrentAmount\": 39\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2.24批量添加用户",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"data\":[\r\n        {\r\n            \"name\": \"add3\",\r\n            \"extension\": \"9802\",\r\n            \"groupId\": \"0fe9fdb88e4a49b7ab05f3a88109588e\",\r\n            \"mobile\": \"\",\r\n            \"email\": \"\",\r\n            \"mobileCode\": \"86\",\r\n            \"title\": \"\",\r\n            \"gender\": 0,\r\n            \"enableMeetingNow\": true,\r\n            \"enableMeetingAppoinitment\": true\r\n        },\r\n        {\r\n            \"name\": \"add4\",\r\n            \"extension\": \"9803\",\r\n            \"groupId\": \"9c204184109940a9b92f3edd8f19b86a\",\r\n            \"mobile\": \"\",\r\n            \"email\": \"\",\r\n            \"mobileCode\": \"86\",\r\n            \"title\": \"\",\r\n            \"gender\": 0,\r\n            \"enableMeetingNow\": true,\r\n            \"enableMeetingAppoinitment\": true\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/batchAdd",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "batchAdd"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2.7查询用户详情",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"needAvatar\": true\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2.8编辑用户",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"name\": \"2add\",\r\n    \"extension\": \"7001\",\r\n    \"mobile\": \"\",\r\n    \"email\": \"\",\r\n    \"mobileCode\": \"86\",\r\n    \"title\": \"\",\r\n    \"gender\": 0,\r\n    \"enableMeetingNow\": true,\r\n    \"enableMeetingAppoinitment\": true,\r\n    \"enableParticipantConcurrentAmount\": false,\r\n    \"maxParticipantConcurrentAmount\": 55\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2.9修改用户密码",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"password\": \"123456yl\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/password",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "password"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2.10重置用户密码",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/password/reset",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "password",
                    "reset"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2.11删除用户",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/572563c92a1142c8a836225c45be849d",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "572563c92a1142c8a836225c45be849d"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "2.12查询用户树",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/tree",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "tree"
                  ],
                  "query": [
                    {
                      "key": "onlyGroup",
                      "value": "true",
                      "description": "是否只查分组，true表示只查分组，默认false",
                      "disabled": true
                    },
                    {
                      "key": "needExtAccount",
                      "value": "",
                      "description": "是否查询第三方账号，默认false",
                      "disabled": true
                    }
                  ]
                },
                "description": "一般来说，我们所说的userId指的是用户的dataId"
              },
              "response": []
            },
            {
              "name": "2.13 获取用户头像下载地址",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Referer",
                    "value": "https://uc4xdemo.yealinkops.com",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"ids\": [\r\n        \"045fa69d15174d41be5e19a89701917a\"\r\n    ],\r\n    \"resize\": {\r\n        \"height\": 10,\r\n        \"width\": 20\r\n    }\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/avatar/download-sign",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "avatar",
                    "download-sign"
                  ]
                },
                "description": "一般来说，我们所说的userId指的是用户的dataId"
              },
              "response": []
            },
            {
              "name": "2.14 根据第三方账号查询用户列表",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Referer",
                    "value": "https://uc4xdemo.yealinkops.com",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"accounts\": [\r\n        \"\"\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/byExtAccounts",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "byExtAccounts"
                  ]
                },
                "description": "一般来说，我们所说的userId指的是用户的dataId"
              },
              "response": []
            },
            {
              "name": "2.15 查询特定用户可见权限范围的树",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Referer",
                    "value": "https://uc4xdemo.yealinkops.com",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/tree",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "tree"
                  ],
                  "query": [
                    {
                      "key": "onlyGroup",
                      "value": "true",
                      "description": "是否只查分组，true表示只查分组，默认false",
                      "disabled": true
                    },
                    {
                      "key": "needExtAccount",
                      "value": "",
                      "description": "是否查询第三方账号，默认false",
                      "disabled": true
                    }
                  ]
                },
                "description": "一般来说，我们所说的userId指的是用户的dataId"
              },
              "response": []
            },
            {
              "name": "2.16 对比树版本号",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Referer",
                    "value": "https://uc4xdemo.yealinkops.com",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"version\": 0,\r\n    \"type\": [\r\n        1\r\n    ],\r\n    \"permisionVersion\": 0,\r\n    \"onlyGroup\": false\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/tree/compareTreeVersion",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "tree",
                    "compareTreeVersion"
                  ]
                },
                "description": "一般来说，我们所说的userId指的是用户的dataId"
              },
              "response": []
            },
            {
              "name": "2.17 查父节点",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Referer",
                    "value": "https://uc4xdemo.yealinkops.com",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n\"dataIds\": [\r\n\"57763c80ae544714ae7a72951214e5d3\"\r\n],\r\n\"needNamePinYinForSearch\": true\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/parentTreeNodes",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "parentTreeNodes"
                  ]
                },
                "description": "一般来说，我们所说的userId指的是用户的dataId"
              },
              "response": []
            },
            {
              "name": "2.29查根分组",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/groups/root",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "groups",
                    "root"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "03.硬件终端管理",
          "item": [
            {
              "name": "3.1添加分组",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"name\":\"硬件终端分组api调用添加\",\r\n    \"parentId\":\"7ce0fefa79ac485881555d8a6c83039c\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/devices/groups",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "devices",
                    "groups"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3.2查询分组详情",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/devices/groups/77ee0c19bd8f4a809c2425b2c34b314d",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "devices",
                    "groups",
                    "77ee0c19bd8f4a809c2425b2c34b314d"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3.3编辑分组",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n\t\"name\": \"名称修改api调用\",\n    \"parentId\": \"7ce0fefa79ac485881555d8a6c83039c\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/devices/groups/77ee0c19bd8f4a809c2425b2c34b314d",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "devices",
                    "groups",
                    "77ee0c19bd8f4a809c2425b2c34b314d"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3.4删除分组",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/devices/groups/f077d827bcac476391d7ff1dcfb28373",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "devices",
                    "groups",
                    "f077d827bcac476391d7ff1dcfb28373"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3.5查询硬件终端列表",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/devices?limit=100&offset=0",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "devices"
                  ],
                  "query": [
                    {
                      "key": "limit",
                      "value": "100"
                    },
                    {
                      "key": "offset",
                      "value": "0"
                    },
                    {
                      "key": "groupId",
                      "value": null,
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3.6添加硬件终端",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"name\": \"总部会议室1-101\",\r\n    \"extension\": \"4007\",\r\n    \"password\": \"123456yl\",\r\n    \"email\": \"\",\r\n    \"groupId\": \"\",\r\n    \"enableMeetingNow\": true,\r\n    \"enableMeetingAppoinitment\": true\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/devices",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "devices"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3.7查询硬件终端详情",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/devices/6d744ffd683746e48a25fc5835a8cdf0",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "devices",
                    "6d744ffd683746e48a25fc5835a8cdf0"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3.8编辑硬件终端",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n\t\"name\": \"终端名称修改api调用\",\n\t\"extension\": \"4001\",\n    \"groupId\": \"7ce0fefa79ac485881555d8a6c83039c\",\n    \"password\": \"123456yl\",\n    \"email\": \"\",\n    \"enableMeetingNow\": true,\n    \"enableMeetingAppoinitment\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/devices/6d744ffd683746e48a25fc5835a8cdf0",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "devices",
                    "6d744ffd683746e48a25fc5835a8cdf0"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3.9删除硬件终端",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/devices/6d744ffd683746e48a25fc5835a8cdf0",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "devices",
                    "6d744ffd683746e48a25fc5835a8cdf0"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "3.10查询硬件终端树",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/devices/tree",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "devices",
                    "tree"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "04.外部联系人管理",
          "item": [
            {
              "name": "4.1添加分组",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n\t\"name\": \"外部设备1\",\r\n    \"parentId\": \"\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/external-contacts/groups",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "external-contacts",
                    "groups"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4.2查看分组详情",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/external-contacts/groups/fe2241a510534a3283be0f64cf43d9f3",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "external-contacts",
                    "groups",
                    "fe2241a510534a3283be0f64cf43d9f3"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4.3编辑分组",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n\t\"name\": \"外部设备new\",\r\n    \"parentId\": \"ae8be5df7e5342ac96bc9ed65d6c4b75\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/external-contacts/groups/fe2241a510534a3283be0f64cf43d9f3",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "external-contacts",
                    "groups",
                    "fe2241a510534a3283be0f64cf43d9f3"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4.4删除分组",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/external-contacts/groups/cc34432f28bc434bb74d2629b4e70539",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "external-contacts",
                    "groups",
                    "cc34432f28bc434bb74d2629b4e70539"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4.5查询外部联系人列表",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/external-contacts?limit=100&offset=0",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "external-contacts"
                  ],
                  "query": [
                    {
                      "key": "limit",
                      "value": "100"
                    },
                    {
                      "key": "offset",
                      "value": "0"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4.6添加外部联系人",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"name\": \"外部03\",\r\n    \"number\": \"192.168.11.11\",\r\n    \"accountType\": \"5\",\r\n    \"email\": \"\",\r\n    \"groupId\": \"\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/external-contacts",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "external-contacts"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4.7查看外部联系人详情",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/external-contacts/56ac88ae090f467385e70e824d01ee8e",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "external-contacts",
                    "56ac88ae090f467385e70e824d01ee8e"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4.8编辑外部联系人",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"name\": \"外部1new\",\r\n    \"number\": \"192.168.1.112\",\r\n    \"groupId\": \"ae8be5df7e5342ac96bc9ed65d6c4b75\",\r\n    \"accountType\": 7,\r\n    \"email\": \"\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/external-contacts/56ac88ae090f467385e70e824d01ee8e",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "external-contacts",
                    "56ac88ae090f467385e70e824d01ee8e"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4.9删除外部联系人",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/external-contacts/a9baa1e2f61c4b4a8855377c4342367c",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "external-contacts",
                    "a9baa1e2f61c4b4a8855377c4342367c"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "4.10查看外部联系人树",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/external-contacts/tree",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "external-contacts",
                    "tree"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "05.云会议室管理",
          "item": [
            {
              "name": "5.1添加分组",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n\t\"name\":\"group1-api添加分组测试3\",\r\n    \"parentId\":\"5ec2d4e4d63847b0b7c0c797001968cf\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/vmrs/groups",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "vmrs",
                    "groups"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "5.2查询分组详情",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/vmrs/groups/60454ef856f0446e8a25e20c9a9f222c",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "vmrs",
                    "groups",
                    "60454ef856f0446e8a25e20c9a9f222c"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "5.3编辑分组",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n\t\"name\":\"api编辑分组修改1\",\r\n    \"parentId\": \"5ec2d4e4d63847b0b7c0c797001968cf\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/vmrs/groups/60454ef856f0446e8a25e20c9a9f222c",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "vmrs",
                    "groups",
                    "60454ef856f0446e8a25e20c9a9f222c"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "5.4删除分组",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/vmrs/groups/a92f65d0550343d392371324eb896a0e",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "vmrs",
                    "groups",
                    "a92f65d0550343d392371324eb896a0e"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "5.5查询云会议室列表",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/vmrs?limit=100&offset=0",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "vmrs"
                  ],
                  "query": [
                    {
                      "key": "limit",
                      "value": "100"
                    },
                    {
                      "key": "offset",
                      "value": "0"
                    },
                    {
                      "key": "groupId",
                      "value": null,
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "5.6添加云会议室",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  },
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"name\": \"api添加云会议室\",\r\n    \"extension\": \"88878\",\r\n    \"password\": null,\r\n    \"profile\": \"0\",\r\n    \"groupId\": \"6a53eaa79aff4c2ebcc96783f766c7b3\",\r\n    \"syncDirectory\": true,\r\n    \"participants\": [\r\n        {\r\n            \"participantId\": \"853311cf8aed45fe8b448a713d5c7936\",\r\n            \"participantRole\": 0\r\n        }\r\n    ],\r\n    \"enableJoinAuto Mute\": false,\r\n    \"voicePromptMode\": 0,\r\n    \"enableRtmp\": false,\r\n    \"groupName\": \"黄文杰测试\",\r\n    \"defaultLayout\": 1,\r\n    \"enableAutoRecord\": false,\r\n    \"enableShowRoomName\": true,\r\n    \"enableShowRoomStateIcon\": true,\r\n    \"maxVideoResolution\": \"1080P/30FPS\",\r\n    \"maxSecondaryFlowResolution\": \"1080P/30FPS\",\r\n    \"maxBandwidth\": \"2Mbps\",\r\n    \"enableWaitingRoom\": false,\r\n    \"waitingRoomMode\": 3,\r\n    \"enableJoinForwardModerator\": true,\r\n    \"enableScreenShareWatermark\": false,\r\n    \"enableOnlyLoginUserJoin\": false,\r\n    \"speakMode\": 0,\r\n    \"enableUniqueParticipantResidenceTime\": false,\r\n    \"enableNoModeratorTime\": null,\r\n    \"chatPermissionsByAttendees\": 0,\r\n    \"sharePermissions\": 0,\r\n    \"annotationPermissions\": 0,\r\n    \"enableRenamePermissions\": null,\r\n    \"enableUnmuteRequiresUserConsent\": false,\r\n    \"enableOpenVideoRequiresUserConsent\": false,\r\n    \"enableChatHistoryExport\": true,\r\n    \"recordTypeList\": [\r\n        0\r\n    ],\r\n    \"rtmpLayout\": 1,\r\n    \"attendeesDefaultLayout\": 1,\r\n    \"enableParticipantConcurrentAmount\": true,\r\n    \"maxParticipantConcurrentAmount\": 222\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/vmrs",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "vmrs"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "5.7查询云会议室详情",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/vmrs/5f27e8f2f5f5472c9ce41dee56938e14",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "vmrs",
                    "5f27e8f2f5f5472c9ce41dee56938e14"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "5.8编辑云会议室",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"name\": \"apisd会议室\",\r\n    \"extension\": \"88878\",\r\n    \"password\": null,\r\n    \"profile\": \"0\",\r\n    \"groupId\": \"6a53eaa79aff4c2ebcc96783f766c7b3\",\r\n    \"syncDirectory\": true,\r\n    \"participants\": [\r\n        {\r\n            \"participantId\": \"853311cf8aed45fe8b448a713d5c7936\",\r\n            \"participantRole\": 0\r\n        }\r\n    ],\r\n    \"enableJoinAutoMute\": false,\r\n    \"voicePromptMode\": 0,\r\n    \"enableRtmp\": false,\r\n    \"groupName\": \"aa测试\",\r\n    \"defaultLayout\": 1,\r\n    \"enableAutoRecord\": false,\r\n    \"enableShowRoomName\": true,\r\n    \"enableShowRoomStateIcon\": true,\r\n    \"maxVideoResolution\": \"1080P/30FPS\",\r\n    \"maxSecondaryFlowResolution\": \"1080P/30FPS\",\r\n    \"maxBandwidth\": \"2Mbps\",\r\n    \"enableWaitingRoom\": false,\r\n    \"waitingRoomMode\": 3,\r\n    \"enableJoinForwardModerator\": true,\r\n    \"enableScreenShareWatermark\": false,\r\n    \"enableOnlyLoginUserJoin\": false,\r\n    \"speakMode\": 0,\r\n    \"enableUniqueParticipantResidenceTime\": false,\r\n    \"enableNoModeratorTime\": null,\r\n    \"chatPermissionsByAttendees\": 0,\r\n    \"sharePermissions\": 0,\r\n    \"annotationPermissions\": 0,\r\n    \"enableRenamePermissions\": null,\r\n    \"enableUnmuteRequiresUserConsent\": false,\r\n    \"enableOpenVideoRequiresUserConsent\": false,\r\n    \"enableChatHistoryExport\": true,\r\n    \"recordTypeList\": [\r\n        0\r\n    ],\r\n    \"rtmpLayout\": 1,\r\n    \"attendeesDefaultLayout\": 1,\r\n    \"enableParticipantConcurrentAmount\": false,\r\n    \"maxParticipantConcurrentAmount\": 555\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/vmrs/1825677e83534825b221d64e61f6692f",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "vmrs",
                    "1825677e83534825b221d64e61f6692f"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "5.9删除云会议室",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/vmrs/969f0df4790747e3b66eff5af73b781d",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "vmrs",
                    "969f0df4790747e3b66eff5af73b781d"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "5.10查询云会议室树",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/vmrs/tree",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "vmrs",
                    "tree"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "5.11查询云会议室号是否已存在（YMS）",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/vmrs/number/exist?number=86666688888",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "vmrs",
                    "number",
                    "exist"
                  ],
                  "query": [
                    {
                      "key": "number",
                      "value": "86666688888"
                    }
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "06.会议管理",
          "item": [
            {
              "name": "6.1查询企业会议列表",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/meetings?from=1676277945000&to=1676969145000",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "meetings"
                  ],
                  "query": [
                    {
                      "key": "from",
                      "value": "1676277945000"
                    },
                    {
                      "key": "to",
                      "value": "1676969145000"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "6.2查询个人会议列表",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/045fa69d15174d41be5e19a89701917a/meetings?from=1676277945000&to=1676969145000",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "045fa69d15174d41be5e19a89701917a",
                    "meetings"
                  ],
                  "query": [
                    {
                      "key": "from",
                      "value": "1676277945000"
                    },
                    {
                      "key": "to",
                      "value": "1676969145000"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "6.3添加会议",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      "var data = JSON.parse(responseBody);\r",
                      "if (data.id) {\r",
                      "    tests[\"Body has id\"] = true;\r",
                      "    postman.setEnvironmentVariable(\"meetingId\", data.id);\r",
                      "}\r",
                      "else {\r",
                      "    tests[\"Body has id\"] = false;\r",
                      "}"
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "language",
                    "value": "zh",
                    "description": "修改会议邮件通知会议日程的语言，默认为英文，中文：zh,英文：en",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"profile\": 0,\n    \"subject\": \"test\",\n    \"conferencePassword\": \"123456\",\n    \"zoneId\": \"China_Standard_Time\",\n    \"startDate\": \"2026-03-20\",\n    \"startTime\": \"12:00\",\n    \"durationHour\": 2,\n    \"durationMinute\": 0,\n    \"participants\": [\n        {\n            \"id\": \"853311cf8aed45fe8b448a713d5c7936\",\n            \"type\": 0,\n            \"role\": 0\n        }\n    ],\n    \"enableAutoRecord\": false,\n    \"speakMode\": 1,\n    \"enableWaitingRoom\": false,\n    \"waitingRoomMode\": 3,\n    \"enableJoinAutoMute\": false,\n    \"enableJoinForwardModerator\": false,\n    \"enableScreenShareWatermark\": false,\n    \"enableOnlyLoginUserJoin\": false,\n    \"rooms\":[\n        {\n            \"type\": 0,\n            \"roomId\":\"e829c22c02704d6c966f5599ce8bef85\"\n        }\n    ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/853311cf8aed45fe8b448a713d5c7936/meetings",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "853311cf8aed45fe8b448a713d5c7936",
                    "meetings"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "6.4查询会议详情",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      "var data = JSON.parse(responseBody);\r",
                      "if (data.id) {\r",
                      "    tests[\"Body has meetingNumber\"] = true;\r",
                      "    postman.setEnvironmentVariable(\"meetingNumber\", data.meetingNumber);\r",
                      "}\r",
                      "else {\r",
                      "    tests[\"Body has meetingNumber\"] = false;\r",
                      "}\r",
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/045fa69d15174d41be5e19a89701917a/meetings/84d81dac7beb47d4a55951e71c15d39b?sequence=1",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "045fa69d15174d41be5e19a89701917a",
                    "meetings",
                    "84d81dac7beb47d4a55951e71c15d39b"
                  ],
                  "query": [
                    {
                      "key": "sequence",
                      "value": "1",
                      "description": "会议顺序号，取值范围为[1, 100]"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "6.5编辑会议",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "language",
                    "value": "zh",
                    "description": "修改会议邮件通知会议日程的语言，默认为英文，中文：zh,英文：en",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"updateType\":0,\n    \"sequence\":1,\n    \"profile\": 2,\n    \"subject\": \"test\",\n    \"conferencePassword\": \"123456\",\n    \"zoneId\": \"China_Standard_Time\",\n    \"startDate\": \"2023-02-17\",\n    \"startTime\": \"20:50\",\n    \"durationHour\": 2,\n    \"durationMinute\": 0,\n    \"recurrenceType\": null,\n    \"interval\": 1,\n    \"dayOfWeeks\": [\n        3\n    ],\n    \"rangeEndDate\": \"2023-02-18\",\n    \"remark\": \"\",\n    \"participants\": [\n        {\n            \"id\": \"045fa69d15174d41be5e19a89701917a\",\n            \"type\": 0,\n            \"role\": 0\n        }\n    ],\n    \"enableAutoRecord\": false,\n    \"extensionType\": 1,\n    \"speakMode\": 1,\n    \"enableWaitingRoom\": false,\n    \"waitingRoomMode\": 3,\n    \"enableJoinAutoMute\": false,\n    \"enableJoinForwardModerator\": true,\n    \"enableScreenShareWatermark\": false,\n    \"conferenceTemplateId\": \"\",\n    \"enableOnlyLoginUserJoin\": false\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/045fa69d15174d41be5e19a89701917a/meetings/84d81dac7beb47d4a55951e71c15d39b",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "045fa69d15174d41be5e19a89701917a",
                    "meetings",
                    "84d81dac7beb47d4a55951e71c15d39b"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "6.6删除会议",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/meetings/{{meetingId}}?deleteType=1",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "meetings",
                    "{{meetingId}}"
                  ],
                  "query": [
                    {
                      "key": "deleteType",
                      "value": "1"
                    },
                    {
                      "key": "sequence",
                      "value": "3",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "6.7获取会议监控链接",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/meetings/monitor-links?userId=3cd40dee99284e74ad23882261b9a173&meetingNumber=86666641652&meetingPassword=123456&language=zh",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "meetings",
                    "monitor-links"
                  ],
                  "query": [
                    {
                      "key": "userId",
                      "value": "3cd40dee99284e74ad23882261b9a173",
                      "description": "注意只能是企业管理员用户ID"
                    },
                    {
                      "key": "meetingNumber",
                      "value": "86666641652"
                    },
                    {
                      "key": "meetingPassword",
                      "value": "123456"
                    },
                    {
                      "key": "language",
                      "value": "zh"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "6.8创建即时会议",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n\"subject\": \"111的会议\",\r\n\"zoneId\": \"China_Standard_Time\",\r\n\"profile\": 0\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/1b97f1163c214ffcbb62f175d6c5629e/meeting-now",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "1b97f1163c214ffcbb62f175d6c5629e",
                    "meeting-now"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "07.会议控制",
          "item": [
            {
              "name": "7.1会议信息查询",
              "item": [
                {
                  "name": "7.1.1查询企业可会控会议列表",
                  "protocolProfileBehavior": {
                    "disableBodyPruning": true
                  },
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "value": "application/json",
                        "type": "text"
                      },
                      {
                        "key": "nonce",
                        "value": "{{$guid}}",
                        "type": "text"
                      },
                      {
                        "key": "timestamp",
                        "value": "{{$timestamp}}000",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings"
                      ],
                      "query": [
                        {
                          "key": "limit",
                          "value": "50",
                          "disabled": true
                        },
                        {
                          "key": "offset",
                          "value": "0",
                          "disabled": true
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.1.2查询会议基础信息",
                  "protocolProfileBehavior": {
                    "disableBodyPruning": true
                  },
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666670320/info",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666670320",
                        "info"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.1.3查询会议配置信息",
                  "protocolProfileBehavior": {
                    "disableBodyPruning": true
                  },
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666670320/setting",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666670320",
                        "setting"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.1.4查询会议用户信息",
                  "protocolProfileBehavior": {
                    "disableBodyPruning": true
                  },
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666670320/users?audience=true",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666670320",
                        "users"
                      ],
                      "query": [
                        {
                          "key": "audience",
                          "value": "true"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.1.5查询主持人布局",
                  "protocolProfileBehavior": {
                    "disableBodyPruning": true
                  },
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666670320/view/hostLayout",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666670320",
                        "view",
                        "hostLayout"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.1.6查询与会者布局",
                  "protocolProfileBehavior": {
                    "disableBodyPruning": true
                  },
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666670320/view/attendeeLayout",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666670320",
                        "view",
                        "attendeeLayout"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.1.7查询观众布局",
                  "protocolProfileBehavior": {
                    "disableBodyPruning": true
                  },
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666670320/view/audienceLayout",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666670320",
                        "view",
                        "audienceLayout"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.1.8查询会议个人视角",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666670320/view/personalView",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666670320",
                        "view",
                        "personalView"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.1.9查询大厅用户信息",
                  "protocolProfileBehavior": {
                    "disableBodyPruning": true
                  },
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666670320/lobbyUsers",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666670320",
                        "lobbyUsers"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.1.10查询平台支持布局类型",
                  "protocolProfileBehavior": {
                    "disableBodyPruning": true
                  },
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/view/customLayoutType",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "view",
                        "customLayoutType"
                      ]
                    }
                  },
                  "response": []
                }
              ]
            },
            {
              "name": "7.2用户信息查询",
              "item": [
                {
                  "name": "7.2.1查询用户通话统计",
                  "protocolProfileBehavior": {
                    "disableBodyPruning": true
                  },
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Bearer {{access_token}}",
                        "type": "text"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json",
                        "type": "text"
                      },
                      {
                        "key": "nonce",
                        "value": "{{$guid}}",
                        "type": "text"
                      },
                      {
                        "key": "timestamp",
                        "value": "{{$timestamp}}000",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/10000/users/6/callStats",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "10000",
                        "users",
                        "6",
                        "callStats"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.2.1查询单个用户信息",
                  "protocolProfileBehavior": {
                    "disableBodyPruning": true
                  },
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Bearer {{access_token}}",
                        "type": "text"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json",
                        "type": "text"
                      },
                      {
                        "key": "nonce",
                        "value": "{{$guid}}",
                        "type": "text"
                      },
                      {
                        "key": "timestamp",
                        "value": "{{$timestamp}}000",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/10000/users/6",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "10000",
                        "users",
                        "6"
                      ]
                    }
                  },
                  "response": []
                }
              ]
            },
            {
              "name": "7.3会议操作",
              "item": [
                {
                  "name": "7.3.1全体禁音",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/muteAll",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "muteAll"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.3.2全体解禁音",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/unmuteAll",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "unmuteAll"
                      ]
                    },
                    "description": "对会议组织者无效"
                  },
                  "response": []
                },
                {
                  "name": "7.3.3会议锁定（禁止新成员入会）",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/lock",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "lock"
                      ]
                    },
                    "description": "禁止新成员入会"
                  },
                  "response": []
                },
                {
                  "name": "7.3.4会议解锁（允许新成员入会）",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/unlock",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "unlock"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.3.5大厅全部准入",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/lobby/admitAll",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "lobby",
                        "admitAll"
                      ]
                    },
                    "description": "等候室"
                  },
                  "response": []
                },
                {
                  "name": "7.3.6大厅全部拒绝",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/lobby/refuseAll",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "lobby",
                        "refuseAll"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.3.7全部手放下",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/replyAllHandUp",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "replyAllHandUp"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.3.8邀请入会",
                  "request": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"type\":\"account\",\r\n    \"contacts\":[\"8666661111\"]\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666620000/invite",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666620000",
                        "invite"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.3.9结束会议",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/end",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "end"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.3.10发送字幕",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"receiver\": {\r\n        \"host\": true,\r\n        \"attendee\": true,\r\n        \"audience\": false\r\n    },\r\n    \"position\": \"top\",\r\n    \"content\": \"123\",\r\n    \"duration\": 30,\r\n    \"fontSize\": 34,\r\n    \"fontColor\": \"#FFFFFF\",\r\n    \"backgroundColor\": \"#1A1A1A\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666670320/barrage",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666670320",
                        "barrage"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.3.11设置/取消视频焦点",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"action\": \"replace\",\r\n\"userID\": 1\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666670320/view/spotlight",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666670320",
                        "view",
                        "spotlight"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.3.12设置主持人布局",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"mode\":\"custom\",\r\n\"layout\": {\r\n        \"name\": \"自定义布局\",\r\n        \"type\": \"2*2\",\r\n        \"pictures\": [\r\n            {\r\n                \"index\": 1,\r\n                \"subscribeType\": \"users\",\r\n                \"subscribeToUsers\": [\r\n                    {\r\n                        \"userID\": 1,\r\n                        \"subjectID\": \"3cd40dee99284e74ad23882261b9a173c\"\r\n                    }\r\n                ]\r\n            },\r\n            {\r\n                \"index\": 2,\r\n                \"subscribeType\": \"users\",\r\n                \"subscribeToUsers\": [\r\n                    {\r\n                        \"userID\": 1,\r\n                        \"subjectID\": \"3cd40dee99284e74ad23882261b9a173\"\r\n                    }\r\n                ]\r\n            },\r\n            {\r\n                \"index\": 3,\r\n                \"subscribeType\": \"users\",\r\n                \"subscribeToUsers\": [\r\n                    {\r\n                        \"userID\": 1,\r\n                        \"subjectID\": \"3cd40dee99284e74ad23882261b9a173\"\r\n                    }\r\n                ]\r\n            },\r\n            {\r\n                \"index\": 4,\r\n                \"subscribeType\": \"users\",\r\n                \"subscribeToUsers\": [\r\n                    {\r\n                        \"userID\": 1,\r\n                        \"subjectID\": \"3cd40dee99284e74ad23882261b9a173\"\r\n                    }\r\n                ]\r\n                \r\n            }\r\n        ],\r\n        \"pollSeconds\": 15,\r\n        \"pollCount\": -1\r\n    }\r\n    }",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666620000/view/hostLayout",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666620000",
                        "view",
                        "hostLayout"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.3.13设置与会者布局",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"mode\":\"custom\",\r\n\"layout\": {\r\n        \"name\": \"自定义布局\",\r\n        \"type\": \"2*2\",\r\n        \"pictures\": [\r\n            {\r\n                \"index\": 1,\r\n                \"subscribeType\": \"users\",\r\n                \"subscribeToUsers\": [\r\n                    {\r\n                        \"userID\": 1,\r\n                        \"subjectID\": \"3cd40dee99284e74ad23882261b9a173c\"\r\n                    }\r\n                ]\r\n            },\r\n            {\r\n                \"index\": 2,\r\n                \"subscribeType\": \"users\",\r\n                \"subscribeToUsers\": [\r\n                    {\r\n                        \"userID\": 1,\r\n                        \"subjectID\": \"3cd40dee99284e74ad23882261b9a173\"\r\n                    }\r\n                ]\r\n            },\r\n            {\r\n                \"index\": 3,\r\n                \"subscribeType\": \"users\",\r\n                \"subscribeToUsers\": [\r\n                    {\r\n                        \"userID\": 1,\r\n                        \"subjectID\": \"3cd40dee99284e74ad23882261b9a173\"\r\n                    }\r\n                ]\r\n            },\r\n            {\r\n                \"index\": 4,\r\n                \"subscribeType\": \"users\",\r\n                \"subscribeToUsers\": [\r\n                    {\r\n                        \"userID\": 1,\r\n                        \"subjectID\": \"3cd40dee99284e74ad23882261b9a173\"\r\n                    }\r\n                ]\r\n                \r\n            }\r\n        ],\r\n        \"pollSeconds\": 15,\r\n        \"pollCount\": -1\r\n    }\r\n    }",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666620000/view/attendeeLayout",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666620000",
                        "view",
                        "attendeeLayout"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.3.14设置观众布局",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"mode\":\"custom\",\r\n\"layout\": {\r\n        \"name\": \"自定义布局\",\r\n        \"type\": \"2*2\",\r\n        \"pictures\": [\r\n            {\r\n                \"index\": 1,\r\n                \"subscribeType\": \"users\",\r\n                \"subscribeToUsers\": [\r\n                    {\r\n                        \"userID\": 1,\r\n                        \"subjectID\": \"3cd40dee99284e74ad23882261b9a173c\"\r\n                    }\r\n                ]\r\n            },\r\n            {\r\n                \"index\": 2,\r\n                \"subscribeType\": \"users\",\r\n                \"subscribeToUsers\": [\r\n                    {\r\n                        \"userID\": 1,\r\n                        \"subjectID\": \"3cd40dee99284e74ad23882261b9a173\"\r\n                    }\r\n                ]\r\n            },\r\n            {\r\n                \"index\": 3,\r\n                \"subscribeType\": \"users\",\r\n                \"subscribeToUsers\": [\r\n                    {\r\n                        \"userID\": 1,\r\n                        \"subjectID\": \"3cd40dee99284e74ad23882261b9a173\"\r\n                    }\r\n                ]\r\n            },\r\n            {\r\n                \"index\": 4,\r\n                \"subscribeType\": \"users\",\r\n                \"subscribeToUsers\": [\r\n                    {\r\n                        \"userID\": 1,\r\n                        \"subjectID\": \"3cd40dee99284e74ad23882261b9a173\"\r\n                    }\r\n                ]\r\n                \r\n            }\r\n        ],\r\n        \"pollSeconds\": 15,\r\n        \"pollCount\": -1\r\n    }\r\n    }",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/view/audienceLayout",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "view",
                        "audienceLayout"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.3.15设置个人布局",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"mode\":\"custom\",\r\n\"subscriber\":{\r\n\"userID\":1\r\n},\r\n\"layout\": {\r\n        \"name\": \"自定义布局\",\r\n        \"type\": \"2*2\",\r\n        \"pictures\": [\r\n            {\r\n                \"index\": 1,\r\n                \"subscribeType\": \"users\",\r\n                \"subscribeToUsers\": [\r\n                    {\r\n                        \"userID\": 1,\r\n                        \"subjectID\": \"3cd40dee99284e74ad23882261b9a173c\"\r\n                    }\r\n                ]\r\n            },\r\n            {\r\n                \"index\": 2,\r\n                \"subscribeType\": \"users\",\r\n                \"subscribeToUsers\": [\r\n                    {\r\n                        \"userID\": 1,\r\n                        \"subjectID\": \"3cd40dee99284e74ad23882261b9a173\"\r\n                    }\r\n                ]\r\n            },\r\n            {\r\n                \"index\": 3,\r\n                \"subscribeType\": \"users\",\r\n                \"subscribeToUsers\": [\r\n                    {\r\n                        \"userID\": 1,\r\n                        \"subjectID\": \"3cd40dee99284e74ad23882261b9a173\"\r\n                    }\r\n                ]\r\n            },\r\n            {\r\n                \"index\": 4,\r\n                \"subscribeType\": \"users\",\r\n                \"subscribeToUsers\": [\r\n                    {\r\n                        \"userID\": 1,\r\n                        \"subjectID\": \"3cd40dee99284e74ad23882261b9a173\"\r\n                    }\r\n                ]\r\n                \r\n            }\r\n        ],\r\n        \"pollSeconds\": 15,\r\n        \"pollCount\": -1\r\n    }\r\n    }",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666620000/view/personalLayout",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666620000",
                        "view",
                        "personalLayout"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.3.16删除个人布局",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"subscriber\":{\r\n        \"userID\":1\r\n    }\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/view/personalLayout/delete",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "view",
                        "personalLayout",
                        "delete"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.3.17 删除字幕",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666670320/barrage",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666670320",
                        "barrage"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.3.18设置语音激励时长",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"speakerSwitchDuration\":3\r\n}"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666620000/speakerSwitchDuration",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666620000",
                        "speakerSwitchDuration"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.3.19 设置会议主题",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"subject\":\"修改会议主题\"\r\n}"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666670320/subject",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666670320",
                        "subject"
                      ]
                    }
                  },
                  "response": []
                }
              ],
              "event": [
                {
                  "listen": "prerequest",
                  "script": {
                    "type": "text/javascript",
                    "exec": [
                      ""
                    ]
                  }
                },
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "exec": [
                      ""
                    ]
                  }
                }
              ]
            },
            {
              "name": "7.4用户操作",
              "item": [
                {
                  "name": "7.4.1踢人",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "value": "application/json",
                        "type": "text"
                      },
                      {
                        "key": "nonce",
                        "value": "{{$guid}}",
                        "type": "text"
                      },
                      {
                        "key": "timestamp",
                        "value": "{{$timestamp}}000",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/users/5",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "users",
                        "5"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.4.2禁言",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/users/6/mute",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "users",
                        "6",
                        "mute"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.4.3解除禁言",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/users/6/unmute",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "users",
                        "6",
                        "unmute"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.4.4关闭视频",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/users/6/muteVideo",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "users",
                        "6",
                        "muteVideo"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.4.5请求打开视频",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/users/6/unmuteVideo",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "users",
                        "6",
                        "unmuteVideo"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.4.6切换大厅状态",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"isInLobby\":false\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/users/6/lobbyState",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "users",
                        "6",
                        "lobbyState"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.4.7单个拒绝/允许(申请发言模式)",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"permit\": false\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/users/6/replyHandUp",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "users",
                        "6",
                        "replyHandUp"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.4.8摄像头控制",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"action\":\"panLeft\",\r\n\"actionPlayTimes\":1\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/users/8/fecc",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "users",
                        "8",
                        "fecc"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.4.9用户改名",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"displayName\":\"测试用户名\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/users/8/displayName",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "users",
                        "8",
                        "displayName"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.4.10用户角色设置",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"role\":\"coHost\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/users/8/role",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "users",
                        "8",
                        "role"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.4.11关闭辅流",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Bearer {{access_token}}",
                        "type": "text"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json",
                        "type": "text"
                      },
                      {
                        "key": "nonce",
                        "value": "{{$guid}}",
                        "type": "text"
                      },
                      {
                        "key": "timestamp",
                        "value": "{{$timestamp}}000",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"role\":\"attendee\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/users/2/stopShare",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "users",
                        "2",
                        "stopShare"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.4.12 暂停音频",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666620000/users/8/pauseAudio",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666620000",
                        "users",
                        "8",
                        "pauseAudio"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.4.13 恢复音频",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666620000/users/8/resumeAudio",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666620000",
                        "users",
                        "8",
                        "resumeAudio"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.4.14 暂停视频",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Bearer {{access_token}}",
                        "type": "text"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json",
                        "type": "text"
                      },
                      {
                        "key": "nonce",
                        "value": "{{$guid}}",
                        "type": "text"
                      },
                      {
                        "key": "timestamp",
                        "value": "{{$timestamp}}000",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n  \"deviceInfo\": \"UME Rooms(Android) 26.0.19\",\r\n  \"shareSources\": [\r\n    {\r\n      \"id\": 204,\r\n      \"name\": \"有线投屏器\",\r\n      \"picture\": \"\"\r\n    }\r\n  ]\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666620000/users/8/blockVideo",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666620000",
                        "users",
                        "8",
                        "blockVideo"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.4.15 恢复视频",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666620000/users/8/unblockVideo",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666620000",
                        "users",
                        "8",
                        "unblockVideo"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.4.17 请求终端辅流源",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Bearer {{access_token}}",
                        "type": "text"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json",
                        "type": "text"
                      },
                      {
                        "key": "nonce",
                        "value": "{{$guid}}",
                        "type": "text"
                      },
                      {
                        "key": "timestamp",
                        "value": "{{$timestamp}}000",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/10000/users/2/shareSources",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "10000",
                        "users",
                        "2",
                        "shareSources"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.4.18 上报终端辅流源",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Bearer {{access_token}}",
                        "type": "text"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json",
                        "type": "text"
                      },
                      {
                        "key": "nonce",
                        "value": "{{$guid}}",
                        "type": "text"
                      },
                      {
                        "key": "timestamp",
                        "value": "{{$timestamp}}000",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"deviceInfo\": \"UME Rooms(Android) 26.0.19\",\r\n    \"shareSources\": [\r\n        {\r\n            \"id\": \"204\",\r\n            \"name\": \"有线投屏器\",\r\n            \"picture\": \"\"\r\n        }\r\n    ]\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/10000/users/2/reportShareSources",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "10000",
                        "users",
                        "2",
                        "reportShareSources"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.4.19 开启指定终端辅流",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Bearer {{access_token}}",
                        "type": "text"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json",
                        "type": "text"
                      },
                      {
                        "key": "nonce",
                        "value": "{{$guid}}",
                        "type": "text"
                      },
                      {
                        "key": "timestamp",
                        "value": "{{$timestamp}}000",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"shareSourceID\": \"204\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/10000/users/2/remoteShare",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "10000",
                        "users",
                        "2",
                        "remoteShare"
                      ]
                    }
                  },
                  "response": []
                }
              ]
            },
            {
              "name": "7.5会议录制",
              "item": [
                {
                  "name": "7.5.1设置会议录制状态",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"action\":\"stop\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/recordings/status",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "recordings",
                        "status"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.5.2设置录制布局",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"mode\":\"basic\",\r\n    \"layout\": {\r\n        \"type\": \"pip\"\r\n    }\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/recording/layout",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "recording",
                        "layout"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.5.3查询会议录制状态",
                  "protocolProfileBehavior": {
                    "disableBodyPruning": true
                  },
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666620000/recordings/status",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666620000",
                        "recordings",
                        "status"
                      ]
                    }
                  },
                  "response": []
                }
              ],
              "event": [
                {
                  "listen": "prerequest",
                  "script": {
                    "type": "text/javascript",
                    "exec": [
                      ""
                    ]
                  }
                },
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "exec": [
                      ""
                    ]
                  }
                }
              ]
            },
            {
              "name": "7.6会议直播",
              "item": [
                {
                  "name": "7.6.1设置直播状态",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"platform\":\"thirdParty\",\r\n\"action\": \"start\",\r\n\"data\": {\r\n\"index\":1,\r\n\"title\":\"tttt\",\r\n\"liveURL\":\"rtmp://livepush.wxworklive.com/activitylive/74617_0bb4476a2187ec5de858a1c277b03d86?txSecret=735da24a4643df2f4f92a5e534104857&txTime=64c25c40\",\r\n\"shareUrl\":\"rtmp://livepush.wxworklive.com/activitylive/74617_0c9853002741af91413a772c49f44e91?txSecret=c9a0e04165dd37b4a2094acc8c91eed5&txTime=64c25c40\"\r\n}\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/66666630000/liveStream/status",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "66666630000",
                        "liveStream",
                        "status"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.6.2设置直播地址",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"index\":1,\r\n    \"liveUrl\":\"rtmp://livepush.wxworklive.com/activitylive/74617_4d0cc185fe5ea891f2034900bc4dcc3d?txSecret=98603eddae136fc6deb9750dd401a996&txTime=62fccee0\"\r\n}\r\n",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666620000/liveStream/liveURL",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666620000",
                        "liveStream",
                        "liveURL"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.6.3设置第三方直播布局",
                  "protocolProfileBehavior": {
                    "disableBodyPruning": true
                  },
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"platform\": \"thirdParty\",\r\n    \"index\": 1,\r\n    \"mode\": \"basic\",\r\n    \"layout\": {\r\n        \"type\": \"pip\"\r\n    }\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/86666620000/liveStream/layout",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "86666620000",
                        "liveStream",
                        "layout"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.6.10获取直播详情",
                  "request": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Bearer {{access_token}}",
                        "type": "text"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json",
                        "type": "text"
                      },
                      {
                        "key": "nonce",
                        "value": "{{$guid}}",
                        "type": "text"
                      },
                      {
                        "key": "timestamp",
                        "value": "{{$timestamp}}000",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"platform\":\"aliyun\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/50000/liveStream/detail",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "50000",
                        "liveStream",
                        "detail"
                      ]
                    }
                  },
                  "response": []
                }
              ]
            },
            {
              "name": "7.7权限管理",
              "item": [
                {
                  "name": "7.7.1启用/关闭大厅",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"enabled\":false,\r\n\"autoAdmitted\":0\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/lobbySetting",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "lobbySetting"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.7.2入会自动静音",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"muteOnJoin\":true\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/muteOnJoin",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "muteOnJoin"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.7.3设置发言权限",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"speakingMode\":\"handUp\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/speakingMode",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "speakingMode"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.7.4设置共享权限",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Bearer {{access_token}}",
                        "type": "text"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json",
                        "type": "text"
                      },
                      {
                        "key": "nonce",
                        "value": "{{$guid}}",
                        "type": "text"
                      },
                      {
                        "key": "timestamp",
                        "value": "{{$timestamp}}000",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"sharePermission\":\"hostGrab\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/sharePermission",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "sharePermission"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.7.5设置聊天权限",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"attendeePermission\":\"all\",\r\n    \"audiencePermission\":\"public\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/chatSetting",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "chatSetting"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.7.6设置批注权限",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"annotationPermission\":\"sharerHost\"\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/annotationPermission",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "annotationPermission"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "7.7.7与会者改名",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"allowRenameSelf\":false\r\n}",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/{{meetingNumber}}/allowRenameSelf",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "{{meetingNumber}}",
                        "allowRenameSelf"
                      ]
                    },
                    "description": "设置与会者是否可以自定义名称"
                  },
                  "response": []
                }
              ],
              "event": [
                {
                  "listen": "prerequest",
                  "script": {
                    "type": "text/javascript",
                    "exec": [
                      ""
                    ]
                  }
                },
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "exec": [
                      ""
                    ]
                  }
                }
              ]
            },
            {
              "name": "7.8会议操作日志",
              "item": [
                {
                  "name": "7.8.1查询会议操作日志列表",
                  "protocolProfileBehavior": {
                    "disableBodyPruning": true
                  },
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "",
                      "options": {
                        "raw": {
                          "language": "json"
                        }
                      }
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/ctrl/meetings/209263204736667666168/operation-log",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "ctrl",
                        "meetings",
                        "209263204736667666168",
                        "operation-log"
                      ],
                      "query": [
                        {
                          "key": "role",
                          "value": "2",
                          "description": "操作者角色， 0： 组织者； 1： 主持人； 2： 参会者； 3： 观众； 4： 无效；",
                          "disabled": true
                        },
                        {
                          "key": "opModule",
                          "value": "",
                          "description": "操作模块， joinLeave： 进出会议； recording： 录制操作； liveStream： 直播操\n作； permissionManager： 权限管理； meetingCtrl： 会议控制；\nmemberManager： 成员管理；",
                          "disabled": true
                        },
                        {
                          "key": "opResult",
                          "value": "true",
                          "description": "操作结果",
                          "disabled": true
                        },
                        {
                          "key": "limit",
                          "value": "10",
                          "disabled": true
                        },
                        {
                          "key": "offset",
                          "value": "0",
                          "disabled": true
                        }
                      ]
                    }
                  },
                  "response": []
                }
              ],
              "event": [
                {
                  "listen": "prerequest",
                  "script": {
                    "type": "text/javascript",
                    "exec": [
                      ""
                    ]
                  }
                },
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "exec": [
                      ""
                    ]
                  }
                }
              ]
            }
          ]
        },
        {
          "name": "08.录制管理",
          "item": [
            {
              "name": "8.1查询企业录制记录列表",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/recordings?from=1770971220000&to=1773973781000",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "recordings"
                  ],
                  "query": [
                    {
                      "key": "from",
                      "value": "1770971220000"
                    },
                    {
                      "key": "to",
                      "value": "1773973781000"
                    },
                    {
                      "key": "limit",
                      "value": "10",
                      "disabled": true
                    },
                    {
                      "key": "offset",
                      "value": "0",
                      "disabled": true
                    },
                    {
                      "key": "meetingNumber",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "meetingName",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "8.2更新企业录制记录名称",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n  \"name\":\"api修改名称2\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/recordings/{{recordingId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "recordings",
                    "{{recordingId}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "8.3移动企业录制记录至回收站",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/recordings/xxxxx",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "recordings",
                    "xxxxx"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "8.4查询企业录制文件详情",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/recording-files/{{recordingFileId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "recording-files",
                    "{{recordingFileId}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "8.5查询企业录制文件下载地址",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  },
                  {
                    "key": "Referer",
                    "value": "{{open-host}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/recording-files/{{recordingFileId}}/download-url",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "recording-files",
                    "{{recordingFileId}}",
                    "download-url"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "8.6移动企业录制文件至回收站",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/recording-files/{{recordingFileId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "recording-files",
                    "{{recordingFileId}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "8.7查询个人录制记录列表",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/recordings?from=1657863040000&to=1657866640000&limit=10&offset=0",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "recordings"
                  ],
                  "query": [
                    {
                      "key": "from",
                      "value": "1657863040000"
                    },
                    {
                      "key": "to",
                      "value": "1657866640000"
                    },
                    {
                      "key": "limit",
                      "value": "10"
                    },
                    {
                      "key": "offset",
                      "value": "0"
                    },
                    {
                      "key": "meetingNumber",
                      "value": null,
                      "disabled": true
                    },
                    {
                      "key": "meetingName",
                      "value": null,
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "8.8更新个人录制记录名称",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n  \"name\":\"测试更新个人录制记录名称\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/recordings/{{recordingId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "recordings",
                    "{{recordingId}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "8.9移动个人录制记录至回收站",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/recordings/{{recordingId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "recordings",
                    "{{recordingId}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "8.10查询个人录制文件详情",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/recording-files/{{recordingFileId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "recording-files",
                    "{{recordingFileId}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "8.11查询个人录制文件下载地址",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Referer",
                    "value": "https://uc4xdemo.yealinkops.com",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/recording-files/{{recordingFileId}}/download-url",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "recording-files",
                    "{{recordingFileId}}",
                    "download-url"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "8.12移动个人录制文件至回收站",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/recording-files/{{recordingFileId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "recording-files",
                    "{{recordingFileId}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "8.13.1录制文件上传（获取上传url）",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Referer",
                    "value": "{{open-host}}/{{open_api_version}}/users/{{userId}}/recording-files/upload",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"parentFileId\": \"84a83f84d49a4e21b09424b7a5eefbfc\",\r\n    \"fileName\": \"test-upload.mp4\",\r\n    \"format\": \"mp4\",\r\n    \"size\": 338837,\r\n    \"duration\": 10000\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/recording-files/upload",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "recording-files",
                    "upload"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "8.13.2录制文件上传（上传本地文件）",
              "protocolProfileBehavior": {
                "disabledSystemHeaders": {
                  "content-type": true
                }
              },
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/octet-stream",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "file",
                  "file": {
                    "src": "test-upload.mp4"
                  }
                },
                "url": {
                  "raw": "https://uc4xdemo.yealinkops.com/ydfs/api/v1/files/4b1555878ce045c09e7e01c99efaa135.mp4?ydfs-access-key=uss&ydfs-signature-version=v2&ydfs-expires=1660126129256&ydfs-signature=V8QZa24KQ%2FfGCj6Yqqg%2F%2B9N%2Fie%2F8j9WvF8lmbL1VlnA%3D",
                  "protocol": "https",
                  "host": [
                    "uc4xdemo",
                    "yealinkops",
                    "com"
                  ],
                  "path": [
                    "ydfs",
                    "api",
                    "v1",
                    "files",
                    "4b1555878ce045c09e7e01c99efaa135.mp4"
                  ],
                  "query": [
                    {
                      "key": "ydfs-access-key",
                      "value": "uss"
                    },
                    {
                      "key": "ydfs-signature-version",
                      "value": "v2"
                    },
                    {
                      "key": "ydfs-expires",
                      "value": "1660126129256"
                    },
                    {
                      "key": "ydfs-signature",
                      "value": "V8QZa24KQ%2FfGCj6Yqqg%2F%2B9N%2Fie%2F8j9WvF8lmbL1VlnA%3D"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "8.14 根据录制Id查询企业录制文件详情",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Referer",
                    "value": "http://uc4xdemo.yealinkops.com",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/recording-files?recordingId=100deb03ebcd4855bf0afedd1f8d55ca",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "recording-files"
                  ],
                  "query": [
                    {
                      "key": "recordingId",
                      "value": "100deb03ebcd4855bf0afedd1f8d55ca"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "8.15 根据录制Id查询个人录制文件详情",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Referer",
                    "value": "http://yms.yealinkops.com",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/recording-files?recordingId=100deb03ebcd4855bf0afedd1f8d55ca",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "recording-files"
                  ],
                  "query": [
                    {
                      "key": "recordingId",
                      "value": "100deb03ebcd4855bf0afedd1f8d55ca"
                    }
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "09.个人信息管理",
          "item": [
            {
              "name": "9.1 查询个人设置详情",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/settings",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "settings"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "9.2编辑个人设置",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"meetingSetting\": {\r\n        \"enableJoinAutoMute\": true,\r\n        \"voicePromptMode\": 1,\r\n        \"forwardMeetingTime\": 30,\r\n        \"meetNowPassword\": \"\",\r\n        \"scheduledPassword\": \"\",\r\n        \"meetNowPasswordCreateType\": 1,\r\n        \"scheduledPasswordCreateType\": 1,\r\n        \"enableAutoInvite\": false,\r\n        \"enableWaitingRoom\": false,\r\n        \"waitingRoomMode\": 3,\r\n        \"enableScreenShareWatermark\": false,\r\n        \"enableOnlyLoginUserJoin\": false,\r\n        \"speakMode\": 0,\r\n        \"attendeesDefaultLayout\": 1,\r\n        \"chatPermissionsByAttendees\": 0,\r\n        \"sharePermissions\": 0,\r\n        \"annotationPermissions\": 0,\r\n        \"enableRenamePermissions\": true,\r\n        \"enableUnmuteRequiresUserConsent\": false,\r\n        \"enableOpenVideoRequiresUserConsent\": false,\r\n        \"enableChatHistoryExport\": true,\r\n        \"enableShowRoomName\": true,\r\n        \"enableRoomNameStyleCustom\": false,\r\n        \"enableShowRoomStateIcon\": true,\r\n        \"enableAutoRecord\": false,\r\n        \"recordTypeList\": [\r\n            0\r\n        ],\r\n        \"rtmpLayout\": 1,\r\n        \"enableRtmp\": false,\r\n        \"enableForwardMeetingTime\": false\r\n    }\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/settings",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "settings"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "10.企业信息管理",
          "item": [
            {
              "name": "10.1查询企业信息详情",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/profile",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "profile"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "10.2编辑企业会议设置",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"meetingSetting\": {\r\n        \"meetNowPassword\": \"123456\",\r\n        \"scheduledPassword\": \"123456\",\r\n        \"enableJoinForwardModerator\": true,\r\n        \"forwardMeetingTime\": 30,\r\n        \"enableScreenShareWatermark\": false,\r\n        \"enableOnlyLoginUserJoin\": false,\r\n        \"enableJoinAutoMute\": false,\r\n        \"voicePromptMode\": 1,\r\n        \"speakMode\": 0,\r\n        \"enableUniqueParticipantResidenceTime\": false,\r\n        \"enableNoModeratorTime\": false,\r\n        \"attendeesDefaultLayout\": 1,\r\n        \"maxVideoResolution\": \"1080P/30FPS\",\r\n        \"maxSecondaryFlowResolution\": \"1080P/30FPS\",\r\n        \"maxBandwidth\": \"2Mbps\",\r\n        \"chatPermissionsByAttendees\": 0,\r\n        \"sharePermissions\": 0,\r\n        \"annotationPermissions\": 0,\r\n        \"enableRenamePermissions\": true,\r\n        \"enableUnmuteRequiresUserConsent\": false,\r\n        \"enableOpenVideoRequiresUserConsent\": false,\r\n        \"enableChatHistoryExport\": true,\r\n        \"enableShowRoomName\": true,\r\n        \"enableRoomNameStyleCustom\": false,\r\n        \"enableShowRoomStateIcon\": true,\r\n        \"enableDisplayLocalScreen\": false,\r\n        \"enableVoiceActivatedDisplayLocalScreen\": false,\r\n        \"sipH323MaxLayoutStyle\": \"1+0\",\r\n        \"enableAutoRecord\": false,\r\n        \"recordTypeList\": [\r\n            0\r\n        ],\r\n        \"recordResolutionFps\": \"1080P/30FPS\",\r\n        \"enableRecordTimestamp\": true,\r\n        \"enableRecordWatermark\": true,\r\n        \"singleRecordedFileSize\": 2,\r\n        \"recycleBinretainsDays\": 7,\r\n        \"recordMultifileResolutions\": false\r\n    }\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/enterprise/settings",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "enterprise",
                    "settings"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "10.3查询企业会议设置",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": ""
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/enterprise/settings",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "enterprise",
                    "settings"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "11.基础信息",
          "item": [
            {
              "name": "11.1查询国家列表",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/references/countries",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "references",
                    "countries"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "11.2查询时区列表",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/references/timezones",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "references",
                    "timezones"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "12.用户账号管理",
          "item": [
            {
              "name": "12.1根据用户账号查询用户",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/accounts/users?account=8666669999",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "accounts",
                    "users"
                  ],
                  "query": [
                    {
                      "key": "account",
                      "value": "8666669999"
                    },
                    {
                      "key": "accountType",
                      "value": "",
                      "description": "账号类型，非必填, 默认为企业成员信息的 number 类型。可填：0 邮箱账号，1 手机号，13 第三方账号\n类型",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "12.2获取用户账号鉴权码",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n\t\"password\":\"65a0ec385ca6a0c1e20d1f8270c28303\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/accounts/auth-code?account=8666669999",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "accounts",
                    "auth-code"
                  ],
                  "query": [
                    {
                      "key": "account",
                      "value": "8666669999"
                    }
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "13.企业子管理员管理",
          "item": [
            {
              "name": "13.1查询子管理员列表",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/sub-managers?limit=20&offset=0",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "sub-managers"
                  ],
                  "query": [
                    {
                      "key": "limit",
                      "value": "20"
                    },
                    {
                      "key": "offset",
                      "value": "0"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "13.2添加子管理员",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n\t\"id\":\"0f1f0a59e5324ee6931ec14e4069a86a\",\r\n    \"role\":\"DEFAULT_ROLE_CUSTOMIZE\",\r\n    \"permissions\": [\r\n        {\r\n            \"menuId\": 1000,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 100,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 200,\r\n            \"levels\": [\r\n                0,\r\n                1\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 300,\r\n            \"levels\": [\r\n                0,\r\n                1\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 201,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 400,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 202,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 203,\r\n            \"levels\": [\r\n                0,\r\n                1\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 600,\r\n            \"levels\": [\r\n                0,\r\n                1\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 204,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 700,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 601,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 701,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 602,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 702,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 705,\r\n            \"levels\": [\r\n                0,\r\n                1\r\n            ]\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/sub-managers",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "sub-managers"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "13.3查询子管理员详情",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/sub-managers/{{subManagerId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "sub-managers",
                    "{{subManagerId}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "13.4编辑子管理员",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"role\":\"DEFAULT_ROLE_CUSTOMIZE\",\r\n    \"permissions\": [\r\n        {\r\n            \"menuId\": 1000,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 100,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 200,\r\n            \"levels\": [\r\n                0,\r\n                1\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 300,\r\n            \"levels\": [\r\n                0,\r\n                1\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 201,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 400,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 202,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 203,\r\n            \"levels\": [\r\n                0,\r\n                1\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 600,\r\n            \"levels\": [\r\n                0,\r\n                1\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 204,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 700,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 601,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 701,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 602,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 702,\r\n            \"levels\": [\r\n                1,\r\n                0\r\n            ]\r\n        },\r\n        {\r\n            \"menuId\": 705,\r\n            \"levels\": [\r\n                0,\r\n                1\r\n            ]\r\n        }\r\n    ]\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/sub-managers/{{subManagerId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "sub-managers",
                    "{{subManagerId}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "13.5删除子管理员",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": ""
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/sub-managers/{{subManagerId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "sub-managers",
                    "{{subManagerId}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "14.统计分析",
          "item": [
            {
              "name": "14.1查询企业通话记录列表",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/metrics/calls?from=1651854640000&to=1657899040000&peerType=2&type&callerType&calleeType&limit=100&offset=0",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "metrics",
                    "calls"
                  ],
                  "query": [
                    {
                      "key": "from",
                      "value": "1651854640000",
                      "description": "UNIX时间戳（http://tool.chinaz.com/Tools/unixtime.aspx）单位：毫秒"
                    },
                    {
                      "key": "to",
                      "value": "1657899040000"
                    },
                    {
                      "key": "peerType",
                      "value": "2",
                      "description": "1：会议 2：p2p"
                    },
                    {
                      "key": "type",
                      "value": null
                    },
                    {
                      "key": "callerType",
                      "value": null
                    },
                    {
                      "key": "calleeType",
                      "value": null
                    },
                    {
                      "key": "limit",
                      "value": "100"
                    },
                    {
                      "key": "offset",
                      "value": "0"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "14.2查询企业通话记录详情",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/metrics/calls/{{callId}}?peerType=2",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "metrics",
                    "calls",
                    "{{callId}}"
                  ],
                  "query": [
                    {
                      "key": "peerType",
                      "value": "2",
                      "description": "通话类型， 1： meeting； 2： p2p"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "14.3查询企业视频会议通话记录参会成员列表",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/metrics/calls/103020405286765666168/participants?peerType=1&limit&offset",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "metrics",
                    "calls",
                    "103020405286765666168",
                    "participants"
                  ],
                  "query": [
                    {
                      "key": "peerType",
                      "value": "1",
                      "description": "此值不可更改"
                    },
                    {
                      "key": "limit",
                      "value": null
                    },
                    {
                      "key": "offset",
                      "value": null
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "14.4查询个人通话记录列表",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/metrics/calls?from=1651854640000&to=1657899040000&peerType=1&limit=100&offset=0",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "metrics",
                    "calls"
                  ],
                  "query": [
                    {
                      "key": "from",
                      "value": "1651854640000"
                    },
                    {
                      "key": "to",
                      "value": "1657899040000"
                    },
                    {
                      "key": "peerType",
                      "value": "1",
                      "description": "1：会议 2：p2p"
                    },
                    {
                      "key": "type",
                      "value": "1",
                      "disabled": true
                    },
                    {
                      "key": "callerType",
                      "value": "user",
                      "disabled": true
                    },
                    {
                      "key": "calleeType",
                      "value": "user",
                      "disabled": true
                    },
                    {
                      "key": "limit",
                      "value": "100"
                    },
                    {
                      "key": "offset",
                      "value": "0"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "14.5查询个人通话记录详情",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/metrics/calls/103020405286765666168?peerType=1",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "metrics",
                    "calls",
                    "103020405286765666168"
                  ],
                  "query": [
                    {
                      "key": "peerType",
                      "value": "1",
                      "description": "1：会议 2：p2p"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "14.6查询个人视频会议通话记录参会成员列表",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/metrics/calls/103020405286765666168/participants?peerType=1",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "metrics",
                    "calls",
                    "103020405286765666168",
                    "participants"
                  ],
                  "query": [
                    {
                      "key": "peerType",
                      "value": "1",
                      "description": "此值不可更改"
                    }
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "15.系统管理（系统级接口）",
          "item": [
            {
              "name": "15.1节点管理",
              "item": [
                {
                  "name": "15.1.1查询节点信息",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/platform/nodes",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "platform",
                        "nodes"
                      ]
                    }
                  },
                  "response": []
                }
              ]
            },
            {
              "name": "15.2告警事件管理",
              "item": [
                {
                  "name": "15.2.1查询告警事件列表",
                  "protocolProfileBehavior": {
                    "strictSSL": false
                  },
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "language",
                        "value": "zh",
                        "description": "修改响应参数alarmTypeName（告警类型名称）的语言，默认为英文，中文：zh,英文：en",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/platform/alarm-events?limit=10&offset=0",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "platform",
                        "alarm-events"
                      ],
                      "query": [
                        {
                          "key": "limit",
                          "value": "10"
                        },
                        {
                          "key": "offset",
                          "value": "0"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "15.2.2编辑告警事件",
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"level\": 2,\r\n    \"notifyEnable\": true,\r\n    \"threshold\": null,\r\n    \"notifyInterval\": null\r\n}"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/platform/alarm-events/{{alarmEventId}}",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "platform",
                        "alarm-events",
                        "{{alarmEventId}}"
                      ]
                    }
                  },
                  "response": []
                }
              ]
            },
            {
              "name": "15.3告警记录管理",
              "item": [
                {
                  "name": "15.3.1查询告警记录列表",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "language",
                        "value": "zh",
                        "description": "修改响应参数alarmTypeName（告警类型名称）的语言，默认为英文，中文：zh,英文：en",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/platform/alarm-records?limit=10&offset=0",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "platform",
                        "alarm-records"
                      ],
                      "query": [
                        {
                          "key": "limit",
                          "value": "10"
                        },
                        {
                          "key": "offset",
                          "value": "0"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "15.3.2查询告警记录详情",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "language",
                        "value": "zh",
                        "description": "修改响应参数alarmTypeName（告警类型名称）的语言，默认为英文，中文：zh,英文：en",
                        "type": "text"
                      }
                    ],
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/platform/alarm-records/{{alarmRecordId}}",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "platform",
                        "alarm-records",
                        "{{alarmRecordId}}"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "15.3.3删除告警记录",
                  "request": {
                    "method": "DELETE",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      }
                    ],
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/platform/alarm-records/{{alarmRecordId}}",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "platform",
                        "alarm-records",
                        "{{alarmRecordId}}"
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "17.号码段资源管理",
          "item": [
            {
              "name": "17.1 查询号码段资源列表",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/number-resources?limit=100&offset=0",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "number-resources"
                  ],
                  "query": [
                    {
                      "key": "limit",
                      "value": "100"
                    },
                    {
                      "key": "offset",
                      "value": "0"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "17.2 添加号码段资源",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"type\": 0,\r\n    \"startValue\": \"00000000\",\r\n    \"endValue\": \"99999999\",\r\n    \"remark\": \"api接口调用添加测试(8位数用户账号)\"\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/number-resources",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "number-resources"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "17.3 编辑号码段资源",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"type\": 0,\r\n    \"startValue\": \"00000000\",\r\n    \"endValue\": \"99999999\",\r\n    \"remark\": \"api接口调用添加测试修改备注(7位数用户账号)\"\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/number-resources/{{numberResourceId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "number-resources",
                    "{{numberResourceId}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "17.4 删除号码段资源",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/number-resources/{{numberResourceId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "number-resources",
                    "{{numberResourceId}}"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "18.会议模板",
          "item": [
            {
              "name": "18.1添加会议模板",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      "var data = JSON.parse(responseBody);\r",
                      "if (data.id) {\r",
                      "    tests[\"Body has id\"] = true;\r",
                      "    postman.setEnvironmentVariable(\"meetingTemplateId\", data.id);\r",
                      "}\r",
                      "else {\r",
                      "    tests[\"Body has id\"] = false;\r",
                      "}"
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"name\": \"openapi会议模板\",\r\n    \"profile\": 0,\r\n    \"organizerId\": \"3cd40dee99284e74ad23882261b9a173\",\r\n    \"participants\": [\r\n        {\r\n            \"identifier\": \"3cd40dee99284e74ad23882261b9a173\",\r\n            \"role\": 0,\r\n            \"type\": 0\r\n        },\r\n        {\r\n            \"identifier\": \"0f1f0a59e5324ee6931ec14e4069a86a\",\r\n            \"role\": 2,\r\n            \"type\": 0\r\n        }\r\n    ],\r\n    \"scheduledPassword\": \"-1\",\r\n    \"scheduledPasswordType\": 1,\r\n    \"speakMode\": 0,\r\n    \"enableJoinAutoMute\": false,\r\n    \"voicePromptMode\": 1,\r\n    \"enableShowRoomName\": true,\r\n    \"enableShowRoomStateIcon\": true,\r\n    \"enableUniqueParticipantResidenceTime\": false,\r\n    \"enableJoinForwardModerator\": false,\r\n    \"enableWaitingRoom\": false,\r\n    \"waitingRoomMode\": 3,\r\n    \"enableForwardMeetingTime\": false,\r\n    \"enableOpenVideoRequiresUserConsent\": false,\r\n    \"roomNameFontSize\": 36,\r\n    \"roomNameFontColor\": 4,\r\n    \"roomNameBackgroundColor\": 3,\r\n    \"roomNameVerticalPosition\": 1,\r\n    \"roomNameHorizontalPosition\": 0,\r\n    \"forwardMeetingTime\": 30,\r\n    \"enableScreenShareWatermark\": false,\r\n    \"enableOnlyLoginUserJoin\": false,\r\n    \"chatPermissionsByAttendees\": 0,\r\n    \"sharePermissions\": 0,\r\n    \"annotationPermissions\": 0,\r\n    \"enableRenamePermissions\": true,\r\n    \"enableUnmuteRequiresUserConsent\": false,\r\n    \"enableRtmp\": false,\r\n    \"enableAutoRecord\": false,\r\n    \"recordTypeList\": [\r\n        0,\r\n        1,\r\n        2,\r\n        3\r\n    ],\r\n    \"recordLayout\": 1,\r\n    \"rtmpLayout\": 1,\r\n    \"attendeesDefaultLayout\": 1,\r\n    \"enableRoomNameStyleCustom\": true,\r\n    \"enableScheduledPassword\": true\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/meeting-templates",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "meeting-templates"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "18.1编辑会议模板",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"name\": \"openapi会议模板编辑1\",\r\n    \"profile\": 0,\r\n    \"organizerId\": \"3cd40dee99284e74ad23882261b9a173\",\r\n    \"participants\": [\r\n        {\r\n            \"identifier\": \"3cd40dee99284e74ad23882261b9a173\",\r\n            \"role\": 0,\r\n            \"type\": 0\r\n        },\r\n        {\r\n            \"identifier\": \"0f1f0a59e5324ee6931ec14e4069a86a\",\r\n            \"role\": 2,\r\n            \"type\": 0\r\n        }\r\n    ],\r\n    \"scheduledPassword\": \"-1\",\r\n    \"scheduledPasswordType\": 1,\r\n    \"speakMode\": 0,\r\n    \"enableJoinAutoMute\": false,\r\n    \"voicePromptMode\": 1,\r\n    \"enableShowRoomName\": true,\r\n    \"enableShowRoomStateIcon\": true,\r\n    \"enableUniqueParticipantResidenceTime\": false,\r\n    \"enableJoinForwardModerator\": false,\r\n    \"enableWaitingRoom\": false,\r\n    \"waitingRoomMode\": 3,\r\n    \"enableForwardMeetingTime\": false,\r\n    \"enableOpenVideoRequiresUserConsent\": false,\r\n    \"roomNameFontSize\": 36,\r\n    \"roomNameFontColor\": 4,\r\n    \"roomNameBackgroundColor\": 3,\r\n    \"roomNameVerticalPosition\": 1,\r\n    \"roomNameHorizontalPosition\": 0,\r\n    \"forwardMeetingTime\": 30,\r\n    \"enableScreenShareWatermark\": false,\r\n    \"enableOnlyLoginUserJoin\": false,\r\n    \"chatPermissionsByAttendees\": 0,\r\n    \"sharePermissions\": 0,\r\n    \"annotationPermissions\": 0,\r\n    \"enableRenamePermissions\": true,\r\n    \"enableUnmuteRequiresUserConsent\": false,\r\n    \"enableRtmp\": false,\r\n    \"enableAutoRecord\": false,\r\n    \"recordTypeList\": [\r\n        0,\r\n        1,\r\n        2,\r\n        3\r\n    ],\r\n    \"recordLayout\": 1,\r\n    \"rtmpLayout\": 1,\r\n    \"attendeesDefaultLayout\": 1,\r\n    \"enableRoomNameStyleCustom\": true,\r\n    \"enableScheduledPassword\": true\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/meeting-templates/{{meetingTemplateId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "meeting-templates",
                    "{{meetingTemplateId}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "18.3删除会议模板",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/meeting-templates/{{meetingTemplateId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "meeting-templates",
                    "{{meetingTemplateId}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "18.4查询会议模板列表",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/meeting-templates?limit=100&skip=0",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "meeting-templates"
                  ],
                  "query": [
                    {
                      "key": "limit",
                      "value": "100"
                    },
                    {
                      "key": "skip",
                      "value": "0"
                    }
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "19.企业管理(系统级接口)",
          "item": [
            {
              "name": "19.1添加企业",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      "var data = JSON.parse(responseBody);\r",
                      "if (data.id) {\r",
                      "    tests[\"Body has id\"] = true;\r",
                      "    postman.setEnvironmentVariable(\"enterpriseId\", data.id);\r",
                      "}\r",
                      "else {\r",
                      "    tests[\"Body has id\"] = false;\r",
                      "}"
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"name\": \"测试企业\",\r\n    \"country\": \"CN\",\r\n    \"partyNumber\": \"852664\",\r\n    \"managerName\": \"openapi管理员\",\r\n    \"extension\": \"9999\",\r\n    \"numberResourceEnable\": true,\r\n    \"accountConfig\": {\r\n        \"maxGroupAmount\": 300,\r\n        \"maxVmrAmount\": 200,\r\n        \"maxStaffAmount\": 6000,\r\n        \"maxDeviceAmount\": 6000,\r\n        \"maxThirdPartyDeviceAmount\": 6000,\r\n        \"phoneBookCacheShardLevel\": 0,\r\n        \"phoneBookPushBulkLevel\": 0\r\n    },\r\n    \"conferenceConfig\": {\r\n        \"maxScheduledConfDuration\": 24,\r\n        \"maxRecurrenceConfAmount\": 101,\r\n        \"maxRecurrenceConfEndTime\": 2,\r\n        \"maxRecurrenceConfParticipantAmount\": 1000,\r\n        \"enableOpenApi\": true,\r\n        \"enableLdap\": false\r\n    },\r\n    \"dataAccessConfig\": {\r\n        \"maxPersonalCdrViewableDuration\": 24,\r\n        \"maxPersonalCdrViewableAmount\": 5000,\r\n        \"maxConfCtrlViewableDuration\": 365,\r\n        \"maxConfCtrlViewableAmount\": 20000,\r\n        \"confScheduleViewableRangeStart\": 24,\r\n        \"confScheduleViewableRangeEnd\": 2\r\n    }\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/platform/enterprises",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "platform",
                    "enterprises"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "19.2编辑企业",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"name\": \"企业编辑1\",\r\n    \"country\": \"CN\",\r\n    \"partyNumber\": \"852664\",\r\n    \"managerName\": \"openapi管理员\",\r\n    \"extension\": \"9999\",\r\n    \"numberResourceEnable\": true,\r\n    \"accountConfig\": {\r\n        \"maxGroupAmount\": 300,\r\n        \"maxVmrAmount\": 200,\r\n        \"maxStaffAmount\": 6000,\r\n        \"maxDeviceAmount\": 6000,\r\n        \"maxThirdPartyDeviceAmount\": 6000,\r\n        \"phoneBookCacheShardLevel\": 0,\r\n        \"phoneBookPushBulkLevel\": 0\r\n    },\r\n    \"conferenceConfig\": {\r\n        \"maxScheduledConfDuration\": 24,\r\n        \"maxRecurrenceConfAmount\": 101,\r\n        \"maxRecurrenceConfEndTime\": 2,\r\n        \"maxRecurrenceConfParticipantAmount\": 1000,\r\n        \"enableOpenApi\": true,\r\n        \"enableLdap\": false\r\n    },\r\n    \"dataAccessConfig\": {\r\n        \"maxPersonalCdrViewableDuration\": 24,\r\n        \"maxPersonalCdrViewableAmount\": 5000,\r\n        \"maxConfCtrlViewableDuration\": 365,\r\n        \"maxConfCtrlViewableAmount\": 20000,\r\n        \"confScheduleViewableRangeStart\": 24,\r\n        \"confScheduleViewableRangeEnd\": 2\r\n    }\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/platform/enterprises/{{enterpriseId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "platform",
                    "enterprises",
                    "{{enterpriseId}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "19.3冻结企业",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/platform/enterprises/{{enterpriseId}}/freeze",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "platform",
                    "enterprises",
                    "{{enterpriseId}}",
                    "freeze"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "19.4解冻企业",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/platform/enterprises/{{enterpriseId}}/unfreeze",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "platform",
                    "enterprises",
                    "{{enterpriseId}}",
                    "unfreeze"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "19.5删除企业",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/platform/enterprises/{{enterpriseId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "platform",
                    "enterprises",
                    "{{enterpriseId}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "19.6 查询企业详情",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/platform/enterprises/212467cdf1bb461e95e18b001983af2a",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "platform",
                    "enterprises",
                    "212467cdf1bb461e95e18b001983af2a"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "19.7 企业列表",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/platform/enterprises",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "platform",
                    "enterprises"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "20.服务单管理(系统级接口)",
          "item": [
            {
              "name": "20.1创建服务单",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"commercialType\": 1,\r\n    \"packages\": [\r\n        {\r\n            \"category\": 14,\r\n            \"amount\": 1,\r\n            \"specValues\": {\r\n                \"port_number\": 10,\r\n                \"validity_duration\": 3,\r\n                \"validity_duration_unit\": 1\r\n            }\r\n        },\r\n        {\r\n            \"category\": 18,\r\n            \"amount\": 1,\r\n            \"specValues\": {\r\n                \"port_number\": 10,\r\n                \"validity_duration\": 3,\r\n                \"validity_duration_unit\": 1\r\n            }\r\n        },\r\n        {\r\n            \"category\": 7,\r\n            \"amount\": 1,\r\n            \"specValues\": {\r\n                \"storage_size\": 10\r\n            }\r\n        },\r\n        {\r\n            \"category\": 20,\r\n            \"amount\": 1,\r\n            \"specValues\": {\r\n                \"port_number\": 10,\r\n                \"validity_duration\": 3,\r\n                \"validity_duration_unit\": 1\r\n            }\r\n        },\r\n        {\r\n            \"category\": 21,\r\n            \"amount\": 1,\r\n            \"specValues\": {\r\n                \"port_number\": 10,\r\n                \"validity_duration\": 3,\r\n                \"validity_duration_unit\": 1\r\n            }\r\n        },\r\n        {\r\n            \"category\": 17,\r\n            \"amount\": 1,\r\n            \"specValues\": {\r\n                \"port_number\": 10,\r\n                \"validity_duration\": 3,\r\n                \"validity_duration_unit\": 1\r\n            }\r\n        },\r\n        {\r\n            \"category\": 16,\r\n            \"amount\": 1,\r\n            \"specValues\": {\r\n                \"port_number\": 10,\r\n                \"validity_duration\": 3,\r\n                \"validity_duration_unit\": 1\r\n            }\r\n        },\r\n        {\r\n            \"category\": 23,\r\n            \"amount\": 1,\r\n            \"specValues\": {\r\n                \"validity_duration\": 3,\r\n                \"validity_duration_unit\": 1\r\n            }\r\n        },\r\n        {\r\n            \"category\": 19,\r\n            \"amount\": 1,\r\n            \"specValues\": {\r\n                \"validity_duration\": 3,\r\n                \"validity_duration_unit\": 1\r\n            }\r\n        },\r\n        {\r\n            \"category\": 22,\r\n            \"amount\": 1,\r\n            \"specValues\": {\r\n                \"port_number\": 10,\r\n                \"validity_duration\": 3,\r\n                \"validity_duration_unit\": 1\r\n            }\r\n        }\r\n    ],\r\n    \"createReason\": 1,\r\n    \"targets\": [\r\n        \"5ee42b3143bc47d1968e3776e5b44a3c\"\r\n    ]\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/platform/service-tickets",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "platform",
                    "service-tickets"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "20.2关闭服务单",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n\"ids\": [\r\n\"5e6a1072fa324ed5a3fb95bb29d78d94\",\r\n\"019d50e7621e4bf49a3e4791aaf8a5b2\"\r\n]\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/platform/service-tickets/close",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "platform",
                    "service-tickets",
                    "close"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "21.IM",
          "item": [
            {
              "name": "21.1.1发送文字消息",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n\"msgType\": 1,\r\n\"body\": \"hello\",\r\n\"receiverId\": \"3cd40dee99284e74ad23882261b9a173\"\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/messages",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "messages"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "21.1.2发送卡片消息(跳转百度界面卡片消息)",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"msgType\": 4,\r\n    \"body\":\"{\\\"header\\\":{\\\"title\\\":{\\\"tag\\\": \\\"plainText\\\",\\\"content\\\":\\\"hello card!\\\"},\\\"theme\\\":\\\"blue\\\"},\\\"elements\\\": [{\\\"tag\\\": \\\"image\\\",\\\"imageId\\\": \\\"333320716e9240b0aec21096f1d5565c\\\"},{\\\"tag\\\":\\\"markdown\\\",\\\"content\\\": \\\"[跳转至百度界面]($urlVal)\\\",\\\"href\\\":{\\\"urlVal\\\":{\\\"tag\\\": \\\"url\\\",\\\"url\\\": \\\"https://www.baidu.com\\\",\\\"pcUrl\\\":\\\"https://www.baidu.com\\\"}}}]}\",\r\n        \"receiverId\": \"3cd40dee99284e74ad23882261b9a173\"\r\n    }"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/messages",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "messages"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "21.2.1批量发送文字消息",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"msgType\": 1,\r\n    \"body\": \"hello\",\r\n    \"receiverIds\": [\r\n        \"3cd40dee99284e74ad23882261b9a173\",\r\n        \"4f2649a2a8ee4b5b82e1bf2ab30c259c\"\r\n    ]\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/messages/batch-send",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "messages",
                    "batch-send"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "21.2.2批量发送卡片消息(跳转百度界面卡片消息)",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"msgType\": 4,\r\n    \"body\": \"{\\\"header\\\":{\\\"title\\\":{\\\"tag\\\": \\\"plainText\\\",\\\"content\\\":\\\"hello card!\\\"},\\\"theme\\\":\\\"blue\\\"},\\\"elements\\\": [{\\\"tag\\\": \\\"image\\\",\\\"imageId\\\": \\\"333320716e9240b0aec21096f1d5565c\\\"},{\\\"tag\\\":\\\"markdown\\\",\\\"content\\\": \\\"[跳转至百度界面]($urlVal)\\\",\\\"href\\\":{\\\"urlVal\\\":{\\\"tag\\\": \\\"url\\\",\\\"url\\\": \\\"https://www.baidu.com\\\",\\\"pcUrl\\\":\\\"https://www.baidu.com\\\"}}}]}\",\r\n    \"receiverIds\": [\r\n        \"3cd40dee99284e74ad23882261b9a173\",\r\n        \"4f2649a2a8ee4b5b82e1bf2ab30c259c\"\r\n    ]\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/messages/batch-send",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "messages",
                    "batch-send"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "21.3更新卡片消息(暂未支持)",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"msgId\": 502024381029941248,\r\n    \"sessionId\": 7372198331829804007,\r\n    \"body\": \"{\\\"header\\\":{\\\"title\\\":{\\\"tag\\\": \\\"plainText\\\",\\\"content\\\":\\\"hello card!\\\"},\\\"theme\\\":\\\"blue\\\"},\\\"elements\\\": [{\\\"tag\\\":\\\"markdown\\\",\\\"content\\\": \\\"[跳转至百度界面t]($urlVal)\\\",\\\"href\\\":{\\\"urlVal\\\":{\\\"tag\\\": \\\"url\\\",\\\"url\\\": \\\"https://www.yealink.com\\\",\\\"pcUrl\\\":\\\"https://www.baidu.com\\\"}}}]}\",\r\n    \"targetIds\": [\r\n        \"3cd40dee99284e74ad23882261b9a173\"\r\n    ]\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/messages",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "messages"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "21.4.1预签上传(获取fileId和上传地址链接)",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      "var data = JSON.parse(responseBody);\r",
                      "if (data.fileId) {\r",
                      "    tests[\"Body has fileId\"] = true;\r",
                      "    postman.setEnvironmentVariable(\"fileId\", data.fileId);\r",
                      "}\r",
                      "else {\r",
                      "    tests[\"Body has fileId\"] = false;\r",
                      "}\r",
                      "var data = JSON.parse(responseBody);\r",
                      "if (data.url) {\r",
                      "    tests[\"Body has url\"] = true;\r",
                      "    postman.setEnvironmentVariable(\"url\", data.url);\r",
                      "}\r",
                      "else {\r",
                      "    tests[\"Body has url\"] = false;\r",
                      "}"
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  },
                  {
                    "key": "Referer",
                    "value": "https://uc4xdemo.yealinkops.com/open/api/v2/im-files/upload/pre-sign",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"fileType\": 1,\r\n    \"fileName\": \"nopabeng3.png\",\r\n    \"fileSize\": 24541\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/im-files/upload/pre-sign",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "im-files",
                    "upload",
                    "pre-sign"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "21.4.2预签上传(上传图片)",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "protocolProfileBehavior": {
                "disabledSystemHeaders": {
                  "content-type": true
                }
              },
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/octet-stream"
                  }
                ],
                "body": {
                  "mode": "file",
                  "file": {
                    "src": "nopabeng3.png"
                  }
                },
                "url": {
                  "raw": "https://uc4xdemo.yealinkops.com/ydfs/api/v1/files/d86470f7ac7f48dbbcd51fa8c38febc5.png?ydfs-size=24541&ydfs-img-wh=true&ydfs-access-key=uss&ydfs-signature-version=v2&ydfs-expires=1660016760810&ydfs-signature=Cmg3cM4NI6kckF5qVYvpchuEFDGHo6Kuk6alEB8OSk4%3D",
                  "protocol": "https",
                  "host": [
                    "uc4xdemo",
                    "yealinkops",
                    "com"
                  ],
                  "path": [
                    "ydfs",
                    "api",
                    "v1",
                    "files",
                    "d86470f7ac7f48dbbcd51fa8c38febc5.png"
                  ],
                  "query": [
                    {
                      "key": "ydfs-size",
                      "value": "24541"
                    },
                    {
                      "key": "ydfs-img-wh",
                      "value": "true"
                    },
                    {
                      "key": "ydfs-access-key",
                      "value": "uss"
                    },
                    {
                      "key": "ydfs-signature-version",
                      "value": "v2"
                    },
                    {
                      "key": "ydfs-expires",
                      "value": "1660016760810"
                    },
                    {
                      "key": "ydfs-signature",
                      "value": "Cmg3cM4NI6kckF5qVYvpchuEFDGHo6Kuk6alEB8OSk4%3D"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "21.5预签下载",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  },
                  {
                    "key": "Referer",
                    "value": "http://uc4xdemo.yealinkops.com",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/im-files/download/pre-sign?fileId={{fileId}}",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "im-files",
                    "download",
                    "pre-sign"
                  ],
                  "query": [
                    {
                      "key": "fileId",
                      "value": "{{fileId}}"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "21.6获取applink所需的host",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/messages/app-link/host",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "messages",
                    "app-link",
                    "host"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "21.6.1发送包含AppLink的卡片消息",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"msgType\": 4,\r\n    \"body\":\"{\\\"header\\\":{\\\"title\\\":{\\\"tag\\\": \\\"plainText\\\",\\\"content\\\":\\\"hello card!\\\"},\\\"theme\\\":\\\"blue\\\"},\\\"elements\\\": [{\\\"tag\\\":\\\"markdown\\\",\\\"content\\\": \\\"[跳转至指定问卷界面]($urlVal)\\\",\\\"href\\\":{\\\"urlVal\\\":{\\\"tag\\\": \\\"url\\\",\\\"url\\\": \\\"https://uc4xdemo.yealinkops.com:443/ume/client/webapp/open?clientId=6f823df6f49c42f8bc31ab95a3d4f2b4&mode=browser&path=/ume/survey/pc/detail&id=15452e6a928e4234b9ad0c18967ed17d\\\",\\\"pcUrl\\\":\\\"https://uc4xdemo.yealinkops.com:443/ume/client/webapp/open?clientId=6f823df6f49c42f8bc31ab95a3d4f2b4&mode=browser&path=/ume/survey/pc/detail&id=15452e6a928e4234b9ad0c18967ed17d\\\"}}}]}\",\r\n        \"receiverId\": \"3cd40dee99284e74ad23882261b9a173\"\r\n    }"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/messages",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "messages"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "21.7 创建会话",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"sessionType\": \"group\",\r\n    \"sessionName\": \"测试群\",\r\n    \"description\": \"这是测试群\",\r\n    \"isPersistent\": false,\r\n    \"isPublic\": false,\r\n    \"members\": [\r\n        \"3cd40dee99284e74ad23882261b9a173\",\r\n        \"4f2649a2a8ee4b5b82e1bf2ab30c259c\",\r\n        \"045fa69d15174d41be5e19a89701917a\",\r\n        \"2b1b1e9ddf3e4b52a9f682b9ae97e7bb\"\r\n    ]\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/sessions",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "sessions"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "21.8 批量获取成员id集合",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"sessionIds\": [\r\n        537507684604706816,\r\n        537507946736123904\r\n    ]\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/sessions/members/member-ids",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "sessions",
                    "members",
                    "member-ids"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "21.9 获取会话成员人数限制",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"sessionIds\": [\r\n        537507684604706816,\r\n        537507946736123904\r\n    ]\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/sessions/members/number-limit?sessionType=single",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "sessions",
                    "members",
                    "number-limit"
                  ],
                  "query": [
                    {
                      "key": "sessionType",
                      "value": "single",
                      "description": "会话类型(单聊：single, 群聊：group)"
                    }
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "22. 录音文件管理",
          "item": [
            {
              "name": "22.1 查询企业录音文件列表",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/p2p-media?from=1660033844000&to=1660037444000&limit=100&offset=0",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "p2p-media"
                  ],
                  "query": [
                    {
                      "key": "from",
                      "value": "1660033844000"
                    },
                    {
                      "key": "to",
                      "value": "1660037444000"
                    },
                    {
                      "key": "limit",
                      "value": "100"
                    },
                    {
                      "key": "offset",
                      "value": "0"
                    },
                    {
                      "key": "name",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "number",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "22.2 删除企业录音文件",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"ids\": [\r\n        \"c266d63faa544a9ea95a13c7766a707c\",\r\n        \"ef7338058261417ea135d9643d9374cf\"\r\n    ]\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/p2p-media",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "p2p-media"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "22.3 查询企业录音文件下载地址",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  },
                  {
                    "key": "Referer",
                    "value": "{{open-host}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/p2p-media/download-url?fileId=c0e0a07a82f64f19a81170193b7cb79a",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "p2p-media",
                    "download-url"
                  ],
                  "query": [
                    {
                      "key": "fileId",
                      "value": "c0e0a07a82f64f19a81170193b7cb79a"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "22.4 查询个人录音文件列表",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/p2p-media?from=1660033844000&to=1660037444000&limit=100&offset=0",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "p2p-media"
                  ],
                  "query": [
                    {
                      "key": "from",
                      "value": "1660033844000"
                    },
                    {
                      "key": "to",
                      "value": "1660037444000"
                    },
                    {
                      "key": "limit",
                      "value": "100"
                    },
                    {
                      "key": "offset",
                      "value": "0"
                    },
                    {
                      "key": "name",
                      "value": "",
                      "disabled": true
                    },
                    {
                      "key": "number",
                      "value": "",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "22.5 删除个人录音文件",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"ids\": [\r\n        \"c266d63faa544a9ea95a13c7766a707c\",\r\n        \"ef7338058261417ea135d9643d9374cf\"\r\n    ]\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/p2p-media",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "p2p-media"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "22.6 查询个人录音文件下载地址",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      ""
                    ],
                    "type": "text/javascript"
                  }
                }
              ],
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "type": "text",
                    "value": "Bearer {{access_token}}"
                  },
                  {
                    "key": "nonce",
                    "type": "text",
                    "value": "{{$guid}}"
                  },
                  {
                    "key": "timestamp",
                    "type": "text",
                    "value": "{{$timestamp}}000"
                  },
                  {
                    "key": "Content-Type",
                    "name": "Content-Type",
                    "type": "text",
                    "value": "application/json"
                  },
                  {
                    "key": "Referer",
                    "value": "{{open-host}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/users/{{userId}}/p2p-media/download-url?fileId=c0e0a07a82f64f19a81170193b7cb79a",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "users",
                    "{{userId}}",
                    "p2p-media",
                    "download-url"
                  ],
                  "query": [
                    {
                      "key": "fileId",
                      "value": "c0e0a07a82f64f19a81170193b7cb79a"
                    }
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "23. Phone呼叫控制",
          "item": [
            {
              "name": "23.1 注册信息查询",
              "item": [
                {
                  "name": "23.1.1 查询企业在线账号",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          ""
                        ],
                        "type": "text/javascript",
                        "packages": {},
                        "requests": {}
                      }
                    }
                  ],
                  "request": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Bearer {{access_token}}",
                        "type": "text"
                      },
                      {
                        "key": "nonce",
                        "value": "{{$guid}}",
                        "type": "text"
                      },
                      {
                        "key": "timestamp",
                        "value": "{{$timestamp}}000",
                        "type": "text"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"partyId\": \"0941da1669224a11a3efeffe410be07c\",\r\n    \"limit\": 100,\r\n    \"offset\": 0\r\n}"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/phone/registers/byPartyId/query",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "phone",
                        "registers",
                        "byPartyId",
                        "query"
                      ],
                      "query": [
                        {
                          "key": "name",
                          "value": "",
                          "disabled": true
                        },
                        {
                          "key": "number",
                          "value": "",
                          "disabled": true
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "23.1.2 根据registerId查询账号信息",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          ""
                        ],
                        "type": "text/javascript",
                        "packages": {},
                        "requests": {}
                      }
                    }
                  ],
                  "request": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Bearer {{access_token}}",
                        "type": "text"
                      },
                      {
                        "key": "nonce",
                        "value": "{{$guid}}",
                        "type": "text"
                      },
                      {
                        "key": "timestamp",
                        "value": "{{$timestamp}}000",
                        "type": "text"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"registerId\": \"sip:5010@10.121.0.172.xip.io;gr=urn:uuid:00000000-0000-0000-0000-94d4690c4588\"\r\n}\r\n"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/phone/registers/byRegisterId/query",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "phone",
                        "registers",
                        "byRegisterId",
                        "query"
                      ]
                    }
                  },
                  "response": []
                }
              ]
            },
            {
              "name": "23.2 通话信息查询",
              "item": [
                {
                  "name": "23.2.1 查询通话消息接口",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          ""
                        ],
                        "type": "text/javascript"
                      }
                    }
                  ],
                  "request": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"callId\": \"3cd40dee99284e74ad23882261b9a173\"\r\n}"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/phone/calls/byCallId/query",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "phone",
                        "calls",
                        "byCallId",
                        "query"
                      ]
                    }
                  },
                  "response": []
                }
              ]
            },
            {
              "name": "23.3 服务端呼叫控制",
              "item": [
                {
                  "name": "23.3.1 呼叫代拨",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          ""
                        ],
                        "type": "text/javascript",
                        "packages": {},
                        "requests": {}
                      }
                    }
                  ],
                  "request": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Authorization",
                        "value": "Bearer {{access_token}}",
                        "type": "text"
                      },
                      {
                        "key": "nonce",
                        "value": "{{$guid}}",
                        "type": "text"
                      },
                      {
                        "key": "timestamp",
                        "value": "{{$timestamp}}000",
                        "type": "text"
                      },
                      {
                        "key": "Content-Type",
                        "value": "application/json",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"caller\":\"5000\",\r\n\"callerAdvInfo\":{\r\n\"userAgents\":[\r\n\"^Yealink\",\r\n\"^Polycom\"\r\n]\r\n},\r\n\"callee\":\"5010\",\r\n\"calleeAdvInfo\":{\r\n\"registerId\":\"sip:5010@10.121.0.172.xip.io;gr=urn:uuid:00000000-0000-0000-0000-94d4690c4588\"\r\n},\r\n\"autoAnswer\" : true,\r\n\"method\": \"default\"\r\n}"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/phone/calls/make",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "phone",
                        "calls",
                        "make"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "23.3.2 结束通话",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          ""
                        ],
                        "type": "text/javascript"
                      }
                    }
                  ],
                  "request": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"callId\":\"2_1248860572@10.50.196.37_11tCshwdSZ6CwAAAA--_1248807212\"\r\n}"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/phone/calls/byCallId/end",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "phone",
                        "calls",
                        "byCallId",
                        "end"
                      ]
                    }
                  },
                  "response": []
                }
              ]
            },
            {
              "name": "23.4 csta呼叫控制",
              "item": [
                {
                  "name": "23.4.1 呼叫代拨",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          ""
                        ],
                        "type": "text/javascript"
                      }
                    }
                  ],
                  "request": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"registerId\":\"sip:1111@866666.uc4xdemo.yealinkops.com;gr=urn:uuid:1512f67a-579a-5b50-965e-f51c4f95363f\",\r\n\"number\":\"8666662222\"\r\n}"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/phone/csta/byRegisterId/calls/make",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "phone",
                        "csta",
                        "byRegisterId",
                        "calls",
                        "make"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "23.4.2 接受来电",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          ""
                        ],
                        "type": "text/javascript"
                      }
                    }
                  ],
                  "request": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"registerId\":\"sip:2222@866666.uc4xdemo.yealinkops.com;gr=urn:uuid:b5a8ba6a-fbce-55d6-9080-368c29007ff5\",\r\n\"cstaCallId\":\"32775\"\r\n}"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/phone/csta/byRegisterId/calls/byCallId/answer",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "phone",
                        "csta",
                        "byRegisterId",
                        "calls",
                        "byCallId",
                        "answer"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "23.4.3 结束通话",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          ""
                        ],
                        "type": "text/javascript"
                      }
                    }
                  ],
                  "request": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"registerId\": \"sip:1111@866666.uc4xdemo.yealinkops.com;gr=urn:uuid:1512f67a-579a-5b50-965e-f51c4f95363f\",\r\n    \"cstaCallId\": \"33673\"\r\n}"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/phone/csta/byRegisterId/calls/byCallId/end",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "phone",
                        "csta",
                        "byRegisterId",
                        "calls",
                        "byCallId",
                        "end"
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        },
        {
          "name": "24.企业终端管理",
          "item": [
            {
              "name": "22.1.1 设备列表信息获取",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/dm/devices",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "dm",
                    "devices"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "22.2.1 告警列表",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"offset\": 0,\r\n    \"limit\": 10,\r\n    \"autoCount\": \"true\",\r\n    \"filter\": {\r\n        \"mac\": \"2\",\r\n        \"deviceType\": 1\r\n    }\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/dm/listAlarms",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "dm",
                    "listAlarms"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "22.2.2 查看告警详情",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/dm/alarms/e43042e8e1ba419a9ccee4cd0692d779",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "dm",
                    "alarms",
                    "e43042e8e1ba419a9ccee4cd0692d779"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "22.2.3 修改告警状态",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"ids\": [\r\n        \"569bdc76b32f473b9a71e55557b3ccea\"\r\n    ],\r\n    \"status\": 2\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/dm/alarm/changeStatus",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "dm",
                    "alarm",
                    "changeStatus"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "22.2.4 删除告警",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"ids\": [\r\n        \"569bdc76b32f473b9a71e55557b3ccea\"\r\n    ]\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/dm/delAlarms",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "dm",
                    "delAlarms"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "22.3.1 通知策略列表",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"offset\": 0,\r\n    \"limit\": 10,\r\n    \"autoCount\": \"true\",\r\n    \"filter\": {\r\n \r\n    }\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/dm/listNoticeStrategies",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "dm",
                    "listNoticeStrategies"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "22.3.2 添加通知策略",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"name\": \"qqq1\",\r\n    \"modes\": [1,2],\r\n    \"cycle\": 1,\r\n    \"enable\": false,\r\n    \"contentType\": 1,\r\n    \"content\": {\r\n        \"critical\":[\r\n            \"Bad quality call\",\"Offline\",\"Register failure\",\"Offline device back online\"\r\n        ],\r\n        \"major\": [\"Update Firmware failure\",\"Update Configuration failure\"],\r\n        \"minor\": [\"Call fail\"]\r\n    },\r\n    \"deviceRange\": {\r\n        \"deviceIds\": [\"1b3dc62e6bf04a0e892c2d565b7a9404\"]\r\n    },\r\n    \"receivers\": [\r\n        \"43a8c7a49fac4e7b97ef84f1a2b6bdec\"\r\n    ],\r\n    \"deviceType\": 1\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/dm/noticeStrategy",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "dm",
                    "noticeStrategy"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "22.3.3 编辑通知策略",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"name\": \"qs1\",\r\n    \"modes\": [1,2],\r\n    \"cycle\": 1,\r\n    \"enable\": false,\r\n    \"contentType\": 1,\r\n    \"content\": {\r\n        \"critical\":[\r\n            \"Bad quality call\",\"Offline\",\"Register failure\",\"Offline device back online\"\r\n        ],\r\n        \"major\": [],\r\n        \"minor\": [\"Call fail\"]\r\n    },\r\n    \"deviceRange\": {\r\n        \"deviceIds\": [\"1b3dc62e6bf04a0e892c2d565b7a9404\"]\r\n    },\r\n    \"receivers\": [\r\n        \"43a8c7a49fac4e7b97ef84f1a2b6bdec\"\r\n    ],\r\n    \"deviceType\": 1\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/dm/noticeStrategies/b7a33ba4ca844a9e82f785b1243e0aed",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "dm",
                    "noticeStrategies",
                    "b7a33ba4ca844a9e82f785b1243e0aed"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "22.3.4 修改通知策略开关",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"enable\": false\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/dm/noticeStrategies/b7a33ba4ca844a9e82f785b1243e0aed/enable",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "dm",
                    "noticeStrategies",
                    "b7a33ba4ca844a9e82f785b1243e0aed",
                    "enable"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "22.3.5 查看通知策略",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"type\": 0,\r\n    \"startValue\": \"00000000\",\r\n    \"endValue\": \"99999999\",\r\n    \"remark\": \"api接口调用添加测试(8位数用户账号)\"\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/dm/noticeStrategies/b7a33ba4ca844a9e82f785b1243e0aed",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "dm",
                    "noticeStrategies",
                    "b7a33ba4ca844a9e82f785b1243e0aed"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "22.3.6 删除通知策略",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"type\": 0,\r\n    \"startValue\": \"00000000\",\r\n    \"endValue\": \"99999999\",\r\n    \"remark\": \"api接口调用添加测试(8位数用户账号)\"\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/dm/noticeStrategies/bfc318bed437479e9b4c2d2883f8c021",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "dm",
                    "noticeStrategies",
                    "bfc318bed437479e9b4c2d2883f8c021"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "22.3.7 通知接收人列表",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"offset\": 0,\r\n    \"limit\": 20,\r\n    \"autoCount\": true,\r\n    \"filter\": {\r\n        \"searchKey\": \"\"\r\n    }\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/dm/listNoticeRecipients",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "dm",
                    "listNoticeRecipients"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "34.巡检平台",
          "item": [
            {
              "name": "34.1查询任务列表",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"subType\":[\"system_deploy\"],\r\n    \"cycle\": 4,\r\n    \"orderbys\":[\r\n        {\r\n            \"field\":\"create_time\",\r\n            \"order\":1\r\n        }\r\n    ],\r\n    \"searchKey\":\"\",\r\n    \"skip\":0,\r\n    \"limit\":10\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/diagnostics/diagTasks/list",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "diagnostics",
                    "diagTasks",
                    "list"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "34.2创建任务",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"taskName\": \"6\",\r\n    \"cycle\": 4,\r\n    \"day\": \"1,4,5\",\r\n    \"triggerTime\": \"15:40:59\",\r\n    \"creator\": \"admin\",\r\n    \"description\": \"任务描述edd\",\r\n    \"diagType\": \"inspection\",\r\n    \"subType\": [\r\n        \"system_deploy\",\r\n        \"system_status\",\r\n        \"service_status\"\r\n    ],\r\n    \"status\": 1,\r\n    \"notify\": 1,\r\n    \"notifyConfig\": {\r\n        \"weChat\": {\r\n            \"enable\": true\r\n        },\r\n        \"mail\": {\r\n            \"enable\": true,\r\n            \"attachments\": true,\r\n            \"addresses\": [\r\n                \"18514@qq.com\"\r\n            ]\r\n        },\r\n        \"sms\": {\r\n            \"enable\": true,\r\n            \"phones\": [\r\n                \"18514@qq.com\"\r\n            ]\r\n        }\r\n    }\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/diagnostics/diagTasks/add",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "diagnostics",
                    "diagTasks",
                    "add"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "34.3修改任务",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"taskName\": \"辣辣辣\",\r\n    \"triggerTime\": \"2026-03-31 14:27:44\",\r\n    \"createTime\": 1773296749690,\r\n    \"creator\": \"admin\",\r\n    \"cycle\": 1,\r\n    \"day\": \"\",\r\n    \"description\": \"\",\r\n    \"diagTaskId\": \"bd8cb5b4-8674-fb13-4822-1d9e97519c96\",\r\n    \"diagType\": \"inspection\",\r\n    \"notify\": 0,\r\n    \"notifyConfig\": {\r\n        \"mail\": {\r\n            \"addresses\": [\r\n                \"\"\r\n            ],\r\n            \"attachments\": false,\r\n            \"enable\": false\r\n        },\r\n        \"sms\": {\r\n            \"enable\": false,\r\n            \"phones\": [\r\n                \"+86\"\r\n            ]\r\n        },\r\n        \"weChat\": {\r\n            \"enable\": false\r\n        }\r\n    },\r\n    \"status\": 3,\r\n    \"subType\": [\r\n        \"system_deploy\",\r\n        \"system_status\",\r\n        \"service_status\",\r\n        \"service_phone\",\r\n        \"service_extranet\"\r\n    ]\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/diagnostics/diagTasks/update",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "diagnostics",
                    "diagTasks",
                    "update"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "34.4删除任务",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"diagTaskId\":\"31f7dfcb-497c-5e0d-eadc-dcb85bc1096d\"\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/diagnostics/diagTasks/delete",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "diagnostics",
                    "diagTasks",
                    "delete"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "34.5停止任务",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"diagTaskId\":\"5cf69b52-5989-4478-ee44-a02bea24a7dc\"\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/diagnostics/diagTasks/stop",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "diagnostics",
                    "diagTasks",
                    "stop"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "34.6查询巡检记录列表",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"searchKey\": \"\",\r\n    \"skip\": 0,\r\n    \"limit\": 10,\r\n    \"orderbys\": [\r\n        {\r\n            \"field\": \"start_time\",\r\n            \"order\": 1\r\n        }\r\n    ],\r\n    \"status\": \"success\",\r\n    \"result\": 0,\r\n    \"cycle\": 0,\r\n    \"subType\": [\r\n        \"service_extranet\"\r\n    ]\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/diagnostics/diagSessions/history/list",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "diagnostics",
                    "diagSessions",
                    "history",
                    "list"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "34.7获取巡检记录详情信息",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"diagSessionId\":\"11f44295-7a34-4dcb-35f7-874619438be8\"\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/diagnostics/diagSessions/history/bySessionId/getResult",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "diagnostics",
                    "diagSessions",
                    "history",
                    "bySessionId",
                    "getResult"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "34.8获取所有巡检项风险等级",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"diagSessionId\":\"2d5400ce-bcca-cdef-0d7e-095b4d6a742b\"\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/diagnostics/diagSessions/bySessionId/inspection/items/getSeverityLevel",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "diagnostics",
                    "diagSessions",
                    "bySessionId",
                    "inspection",
                    "items",
                    "getSeverityLevel"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "34.9获取巡检项介绍信息",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"item\":\"system_deploy.inspect_abnormal_ip_security\"\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/diagnostics/diagSessions/bySessionId/inspection/item/byItemName/getHelpInfo",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "diagnostics",
                    "diagSessions",
                    "bySessionId",
                    "inspection",
                    "item",
                    "byItemName",
                    "getHelpInfo"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "34.10获取巡检项巡检结果",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"diagSessionId\":\"2d5400ce-bcca-cdef-0d7e-095b4d6a742b\",\r\n    \"item\":\"service_extranet.inspect_huawei_push_service\",\r\n    \"severity_level\":\"\",\r\n    \"skip\":0,\r\n    \"limit\":10\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/diagnostics/diagSessions/bySessionId/inspection/item/byItemName/getResult",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "diagnostics",
                    "diagSessions",
                    "bySessionId",
                    "inspection",
                    "item",
                    "byItemName",
                    "getResult"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "34.11获取巡检记录配置",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"diagSessionId\":\"360ab891-3b85-9999-666b-0f84486dada1\"\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/diagnostics/config?module=application",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "diagnostics",
                    "config"
                  ],
                  "query": [
                    {
                      "key": "module",
                      "value": "application"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "34.12修改巡检记录配置",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"cache_time\": \"8\"\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/diagnostics/config?module=application",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "diagnostics",
                    "config"
                  ],
                  "query": [
                    {
                      "key": "module",
                      "value": "application"
                    }
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "35.运维平台",
          "item": [
            {
              "name": "35.1分页式获取告警配置信息",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"skip\": 0,\r\n    \"limit\": 10,\r\n    \"orderbys\": [\r\n        {\r\n            \"order\": 1,\r\n            \"field\": \"alarm_event_id\"\r\n        }\r\n    ],\r\n    \"search_key\": \"\",\r\n    \"alarm_event_id_list\": [\"AE000001\"],\r\n    \"level_list\": [],\r\n    \"alarm_category_list\": []\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/ysmp/alarm/event_info/page",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "ysmp",
                    "alarm",
                    "event_info",
                    "page"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "35.2获取告警配置信息",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": ""
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/ysmp/alarm/event_info?alarm_type_id=SM_SYSTEM_CPU_WARNING",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "ysmp",
                    "alarm",
                    "event_info"
                  ],
                  "query": [
                    {
                      "key": "alarm_type_id",
                      "value": "SM_SYSTEM_CPU_WARNING"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "35.3修改告警配置信息",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"alarm_type_id\": \"SM_NET_USAGE_INCREASE\",\r\n    \"level\": 2,\r\n    \"notify_interval\": \"225\",\r\n    \"report_times\": \"2\",\r\n    \"report_interval\": \"25\",\r\n    \"threshold\": \"6\",\r\n    \"increase_sample_window\": \"23\"\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/ysmp/alarm/event_info",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "ysmp",
                    "alarm",
                    "event_info"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "35.4控制告警配置开关",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"alarm_type_id\": \"SM_NET_USAGE_INCREASE\",\r\n    \"alarm_enable\": false,\r\n    \"notification_enable\": true\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/ysmp/alarm/event_info/enable",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "ysmp",
                    "alarm",
                    "event_info",
                    "enable"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "35.5分页式获取告警信息列表",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"skip\":0,\r\n    \"limit\":10,\r\n    \"orderbys\": [\r\n        {\r\n            \"order\": -1,\r\n            \"field\": \"last_alarm_time\"\r\n        }\r\n    ],\r\n    \"search_key\": \"AE000003202603231112000002\",\r\n    \"alarm_event_id_list\": [],\r\n    \"level_list\": [1],\r\n    \"status_list\": [0]\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/ysmp/alarm/info/page",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "ysmp",
                    "alarm",
                    "info",
                    "page"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "35.6获取告警信息列表",
              "protocolProfileBehavior": {
                "disableBodyPruning": true
              },
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"cache_time\": \"8\"\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/ysmp/alarm/info?id=b9d739a5-8aee-6efd-181c-55af3c10a3a1",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "ysmp",
                    "alarm",
                    "info"
                  ],
                  "query": [
                    {
                      "key": "id",
                      "value": "b9d739a5-8aee-6efd-181c-55af3c10a3a1"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "35.7处理告警信息",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{access_token}}",
                    "type": "text"
                  },
                  {
                    "key": "nonce",
                    "value": "{{$guid}}",
                    "type": "text"
                  },
                  {
                    "key": "timestamp",
                    "value": "{{$timestamp}}000",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"list\": [\r\n        {\r\n            \"id\":\"b9d739a5-8aee-6efd-181c-55af3c10a3a1\",\r\n            \"status\": 2,\r\n            \"additional_suggestion\":\"sss22sss\",\r\n            \"user\":\"admin\"\r\n        }\r\n    ]\r\n}"
                },
                "url": {
                  "raw": "{{open-host}}/{{open_api_version}}/ysmp/alarm/info",
                  "host": [
                    "{{open-host}}"
                  ],
                  "path": [
                    "{{open_api_version}}",
                    "ysmp",
                    "alarm",
                    "info"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "最佳实践",
          "item": [
            {
              "name": "单点登录",
              "item": [
                {
                  "name": "获取token（单点登录场景验证使用）",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          "var data = JSON.parse(responseBody);",
                          "if (data.access_token) {",
                          "    tests[\"Body has token\"] = true;",
                          "    postman.setEnvironmentVariable(\"access_token\", data.access_token);",
                          "}",
                          "else {",
                          "    tests[\"Body has token\"] = false;",
                          "}"
                        ],
                        "type": "text/javascript"
                      }
                    }
                  ],
                  "protocolProfileBehavior": {
                    "strictSSL": false
                  },
                  "request": {
                    "auth": {
                      "type": "basic",
                      "basic": [
                        {
                          "key": "password",
                          "value": "{{AccessKey Secret}}",
                          "type": "string"
                        },
                        {
                          "key": "username",
                          "value": "{{AccessKey ID}}",
                          "type": "string"
                        }
                      ]
                    },
                    "method": "POST",
                    "header": [
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "",
                        "value": "",
                        "type": "text",
                        "disabled": true
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"grant_type\": \"authorization_code\",\r\n\"code\": \"f292054d5fed4a7296f58c0783518928\",\r\n\"redirect_uri\":\"https://www.baidu.com\"\r\n}"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/token",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "token"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "查询登录用户详情",
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/users/me",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "users",
                        "me"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "刷新token（建议获取token40分钟后再刷新获取新token）",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          "var data = JSON.parse(responseBody);",
                          "if (data.access_token) {",
                          "    tests[\"Body has token\"] = true;",
                          "    postman.setEnvironmentVariable(\"access_token\", data.access_token);",
                          "}",
                          "else {",
                          "    tests[\"Body has token\"] = false;",
                          "}"
                        ],
                        "type": "text/javascript"
                      }
                    }
                  ],
                  "protocolProfileBehavior": {
                    "strictSSL": false
                  },
                  "request": {
                    "auth": {
                      "type": "basic",
                      "basic": [
                        {
                          "key": "password",
                          "value": "{{AccessKey Secret}}",
                          "type": "string"
                        },
                        {
                          "key": "username",
                          "value": "{{AccessKey ID}}",
                          "type": "string"
                        }
                      ]
                    },
                    "method": "POST",
                    "header": [
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "",
                        "value": "",
                        "type": "text",
                        "disabled": true
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"grant_type\": \"refresh_token\",\r\n\"refresh_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhcmVhIjoiQ04tRkoiLCJjb3VudHJ5IjoiQ04iLCJqdCI6InJlZnJlc2hfdG9rZW4iLCJwaWQiOiI1MmI2YTdlMjMwM2Q0MzM2OWYzOGY5N2NhOGJmY2U4MiIsImd0IjoxLCJhdCI6MCwicyI6MiwiYXVzaWQiOiIzY2Q0MGRlZTk5Mjg0ZTc0YWQyMzg4MjI2MWI5YTE3MyIsImF1cGlkIjoiNTJiNmE3ZTIzMDNkNDMzNjlmMzhmOTdjYThiZmNlODIiLCJleHAiOjE2NjAwMTM3OTksInJlZ2lvbiI6ImNuLXNoYW5naGFpIiwic28iOjEsImFpZCI6ImNiNzkwZWJmYmQ0YzRjZjRiMjU2OTdkZTQxNDk5OWRkIiwianRpIjoiNzNhYTgzZWZlNjYwNDk4YWJhOTVhYTMyMjc3YmFhYjMiLCJkaWQiOiI0YmZhMTU2NTNmNzA0YWI0ODIyMThkOTQ2NWJmZjMxMiIsImNpZCI6IjM3ZmUzYjZlMTE1NzRhMDA5MjE5NWFhNjMxYjI3MWI4In0.HY6AbOnUytPND9IpMGnqZZmS4lzsV7Ky9AUbmX6TQybWsTdB6cxl0LzxaEpxlmr-hWmq1vwtor8s_Bw1gzN3tCykp3DGp4dLkECS5z1HL4AiRihBsbAJW702Bdi8uMccyCJ3ZEsiKoxazaZjsx3VXifFwndTECrSE7EVUIm5PBI\"\r\n}"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/token",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "token"
                      ]
                    }
                  },
                  "response": []
                }
              ]
            },
            {
              "name": "IM（发送带图片的卡片消息） Copy",
              "item": [
                {
                  "name": "获取token（发送IM消息验证使用）",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          "var data = JSON.parse(responseBody);",
                          "if (data.access_token) {",
                          "    tests[\"Body has token\"] = true;",
                          "    postman.setEnvironmentVariable(\"access_token\", data.access_token);",
                          "}",
                          "else {",
                          "    tests[\"Body has token\"] = false;",
                          "}"
                        ],
                        "type": "text/javascript"
                      }
                    }
                  ],
                  "protocolProfileBehavior": {
                    "strictSSL": false
                  },
                  "request": {
                    "auth": {
                      "type": "basic",
                      "basic": [
                        {
                          "key": "password",
                          "value": "{{AccessKey Secret}}",
                          "type": "string"
                        },
                        {
                          "key": "username",
                          "value": "{{AccessKey ID}}",
                          "type": "string"
                        }
                      ]
                    },
                    "method": "POST",
                    "header": [
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "",
                        "value": "",
                        "type": "text",
                        "disabled": true
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n\"grant_type\": \"client_credentials\"\r\n}"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/token",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "token"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "查询用户列表（获取要接收消息的用户Id）",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          ""
                        ],
                        "type": "text/javascript"
                      }
                    }
                  ],
                  "request": {
                    "method": "GET",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      }
                    ],
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/users?limit=100&offset=0",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "users"
                      ],
                      "query": [
                        {
                          "key": "limit",
                          "value": "100"
                        },
                        {
                          "key": "offset",
                          "value": "0"
                        },
                        {
                          "key": "groupId",
                          "value": "",
                          "disabled": true
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "预签上传(获取上传地址链接和fileId)",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          "var data = JSON.parse(responseBody);\r",
                          "if (data.fileId) {\r",
                          "    tests[\"Body has fileId\"] = true;\r",
                          "    postman.setEnvironmentVariable(\"fileId\", data.fileId);\r",
                          "}\r",
                          "else {\r",
                          "    tests[\"Body has fileId\"] = false;\r",
                          "}\r",
                          "var data = JSON.parse(responseBody);\r",
                          "if (data.url) {\r",
                          "    tests[\"Body has url\"] = true;\r",
                          "    postman.setEnvironmentVariable(\"url\", data.url);\r",
                          "}\r",
                          "else {\r",
                          "    tests[\"Body has url\"] = false;\r",
                          "}"
                        ],
                        "type": "text/javascript"
                      }
                    }
                  ],
                  "request": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      },
                      {
                        "key": "Referer",
                        "value": "{{open-host}}/{{open_api_version}}/im-files/upload/pre-sign",
                        "type": "text"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"fileType\": 1,\r\n    \"fileName\": \"nopabeng4.png\",\r\n    \"fileSize\": 24541\r\n}"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/im-files/upload/pre-sign",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "im-files",
                        "upload",
                        "pre-sign"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "预签上传(上传本地图片至UC)",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          ""
                        ],
                        "type": "text/javascript"
                      }
                    }
                  ],
                  "protocolProfileBehavior": {
                    "disabledSystemHeaders": {
                      "content-type": true
                    }
                  },
                  "request": {
                    "method": "PUT",
                    "header": [
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/octet-stream"
                      }
                    ],
                    "body": {
                      "mode": "file",
                      "file": {
                        "src": "nopabeng4.png"
                      }
                    },
                    "url": {
                      "raw": "https://uc4xdemo.yealinkops.com/ydfs/api/v1/files/41d1049b87f346008baecac9a400c5cf.png?ydfs-size=24541&ydfs-img-wh=true&ydfs-access-key=uss&ydfs-signature-version=v2&ydfs-expires=1660561920799&ydfs-signature=cSVX2LYnUxGpkQXLI3%2FeiABH6mMmbzVWUr0TMvUhy5c%3D",
                      "protocol": "https",
                      "host": [
                        "uc4xdemo",
                        "yealinkops",
                        "com"
                      ],
                      "path": [
                        "ydfs",
                        "api",
                        "v1",
                        "files",
                        "41d1049b87f346008baecac9a400c5cf.png"
                      ],
                      "query": [
                        {
                          "key": "ydfs-size",
                          "value": "24541"
                        },
                        {
                          "key": "ydfs-img-wh",
                          "value": "true"
                        },
                        {
                          "key": "ydfs-access-key",
                          "value": "uss"
                        },
                        {
                          "key": "ydfs-signature-version",
                          "value": "v2"
                        },
                        {
                          "key": "ydfs-expires",
                          "value": "1660561920799"
                        },
                        {
                          "key": "ydfs-signature",
                          "value": "cSVX2LYnUxGpkQXLI3%2FeiABH6mMmbzVWUr0TMvUhy5c%3D"
                        }
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "发送卡片消息(带图片)",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          ""
                        ],
                        "type": "text/javascript"
                      }
                    }
                  ],
                  "request": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"msgType\": 4,\r\n    \"body\":\"{\\\"header\\\":{\\\"title\\\":{\\\"tag\\\": \\\"plainText\\\",\\\"content\\\":\\\"hello card!\\\"},\\\"theme\\\":\\\"blue\\\"},\\\"elements\\\": [{\\\"tag\\\": \\\"image\\\",\\\"imageId\\\": \\\"f34af27d14cf4386b2cb7f36526f96ed\\\"},{\\\"tag\\\":\\\"markdown\\\",\\\"content\\\": \\\"[跳转至百度界面]($urlVal)\\\",\\\"href\\\":{\\\"urlVal\\\":{\\\"tag\\\": \\\"url\\\",\\\"url\\\": \\\"https://www.baidu.com\\\",\\\"pcUrl\\\":\\\"https://www.baidu.com\\\"}}}]}\",\r\n        \"receiverId\": \"3cd40dee99284e74ad23882261b9a173\"\r\n    }"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/messages",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "messages"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "发送卡片消息(新闻文章模板)",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          ""
                        ],
                        "type": "text/javascript"
                      }
                    }
                  ],
                  "request": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"msgType\": 4,\r\n    \"body\":\"{\\\"header\\\": {\\\"title\\\":{\\\"tag\\\": \\\"plainText\\\",\\\"content\\\":\\\"如果表格权限更细化，你希望怎么用它？\\\"},\\\"theme\\\": \\\"green\\\"},\\\"elements\\\": [{\\\"tag\\\": \\\"markdown\\\",\\\"content\\\": \\\"![图片](f34af27d14cf4386b2cb7f36526f96ed)\\\\n关于服务台功能的小讨论\\\\n[点击查看>](https://www.yealink.com.cn/)\\\\n --------------\\\\n表格权限能否更精细化？————快来分享你的使用场景\\\\n[点击查看>](https://www.yealink.com.cn/)\\\\n --------------\\\\n企业百科怎么玩？大家的经验分享~\\\\n[点击查看>](https://www.yealink.com.cn/)\\\"}],\\\"preview\\\": \\\"如果表格权限更细化，你希望怎么用它？\\\",\\\"keyword\\\": \\\"如果表格权限更细化，你希望怎么用它？\\\",\\\"link\\\": {\\\"tag\\\": \\\"url\\\",\\\"url\\\": \\\"https://www.yealink.com.cn/\\\",\\\"iosUrl\\\": \\\"https://www.yealink.com.cn/\\\",\\\"androidUrl\\\": \\\"https://www.baidu.com/\\\",\\\"pcUrl\\\": \\\"https://www.yealink.com.cn/\\\"}}\",\r\n        \"receiverId\": \"3cd40dee99284e74ad23882261b9a173\"\r\n    }"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/messages",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "messages"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "发送卡片消息(问卷调查模板)",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          ""
                        ],
                        "type": "text/javascript"
                      }
                    }
                  ],
                  "request": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"msgType\": 4,\r\n    \"body\":\"{\\\"header\\\": {\\\"title\\\": {\\\"tag\\\": \\\"plainText\\\",\\\"content\\\": \\\"2022年5月生日礼物问卷\\\"},\\\"theme\\\": \\\"orange\\\"},\\\"elements\\\": [{\\\"tag\\\": \\\"div\\\",\\\"fields\\\": [{\\\"tag\\\": \\\"field\\\",\\\"isShort\\\": false,\\\"text\\\": {\\\"tag\\\": \\\"simpleMd\\\",\\\"content\\\": \\\"发布者：<at id=\\\\\\\"3cd40dee99284e74ad23882261b9a173\\\\\\\">hwj</at>\\\"}}]},{\\\"tag\\\": \\\"div\\\",\\\"fields\\\": [{\\\"tag\\\": \\\"field\\\",\\\"isShort\\\": false,\\\"text\\\": {\\\"tag\\\": \\\"simpleMd\\\",\\\"content\\\": \\\"截止时间：2022-06-09 12:34\\\"}}]}],\\\"preview\\\": \\\"2022年5月生日礼物问卷\\\",\\\"keyword\\\": \\\"2022年5月生日礼物问卷\\\",\\\"link\\\": {\\\"tag\\\": \\\"url\\\",\\\"url\\\": \\\"https://www.yealink.com.cn/\\\",\\\"iosUrl\\\": \\\"https://www.yealink.com.cn/\\\",\\\"androidUrl\\\": \\\"https://www.yealink.com.cn/\\\",\\\"pcUrl\\\": \\\"https://www.yealink.com.cn/\\\"}}\",\r\n        \"receiverId\": \"3cd40dee99284e74ad23882261b9a173\"\r\n    }"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/messages",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "messages"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "发送卡片消息(公告模板)",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          ""
                        ],
                        "type": "text/javascript"
                      }
                    }
                  ],
                  "request": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"msgType\": 4,\r\n    \"body\":\"{\\\"header\\\": {\\\"title\\\": {\\\"tag\\\": \\\"plainText\\\",\\\"content\\\": \\\"2022年清明放假安排\\\"},\\\"theme\\\": \\\"green\\\"},\\\"elements\\\": [{\\\"tag\\\": \\\"div\\\",\\\"fields\\\": [{\\\"tag\\\": \\\"field\\\",\\\"isShort\\\": false,\\\"text\\\": {\\\"tag\\\": \\\"simpleMd\\\",\\\"content\\\": \\\"发布者：<at id=\\\\\\\"3cd40dee99284e74ad23882261b9a173\\\\\\\">hwj</at>\\\"}}]},{\\\"tag\\\": \\\"div\\\",\\\"fields\\\": [{\\\"tag\\\": \\\"field\\\",\\\"isShort\\\": false,\\\"text\\\": {\\\"tag\\\": \\\"simpleMd\\\",\\\"content\\\": \\\"发布时间：08-17 08:30\\\"}}]}],\\\"preview\\\": \\\"2022年清明放假安排\\\",\\\"keyword\\\": \\\"2022年清明放假安排\\\",\\\"link\\\": {\\\"tag\\\": \\\"url\\\",\\\"url\\\": \\\"https://www.yealink.com.cn/\\\",\\\"iosUrl\\\": \\\"https://www.yealink.com.cn/\\\",\\\"androidUrl\\\": \\\"https://www.yealink.com.cn/\\\",\\\"pcUrl\\\": \\\"https://www.yealink.com.cn/\\\"}}\",\r\n        \"receiverId\": \"3cd40dee99284e74ad23882261b9a173\"\r\n    }"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/messages",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "messages"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "发送卡片消息(活动通知模板)",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          ""
                        ],
                        "type": "text/javascript"
                      }
                    }
                  ],
                  "request": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"msgType\": 4,\r\n    \"body\":\"{\\\"header\\\": {\\\"title\\\": {\\\"tag\\\": \\\"plainText\\\",\\\"content\\\": \\\"🎁叮~你有一份圣诞邀请函待查收~\\\"},\\\"theme\\\": \\\"blue\\\"},\\\"elements\\\": [{\\\"tag\\\": \\\"image\\\",\\\"imageId\\\": \\\"f34af27d14cf4386b2cb7f36526f96ed\\\"},{\\\"tag\\\": \\\"div\\\",\\\"fields\\\": [{\\\"tag\\\": \\\"field\\\",\\\"isShort\\\": false,\\\"text\\\": {\\\"tag\\\": \\\"plainText\\\",\\\"content\\\": \\\"圣诞老人赶着麋鹿在平安夜悄悄光临办公楼，为大家带来了丰盛的下午茶🎅🏻\\\\nBUT...圣诞老人走得太急，忘记带礼物了！！\\\"}}]},{\\\"tag\\\": \\\"div\\\",\\\"fields\\\": [{\\\"tag\\\": \\\"field\\\",\\\"isShort\\\": false,\\\"text\\\": {\\\"tag\\\": \\\"plainText\\\",\\\"content\\\": \\\"为活跃办公室气氛，增加同事间的友谊，我们将举行圣诞礼物交换派对~！🎁\\\"}}]},{\\\"tag\\\": \\\"div\\\",\\\"fields\\\": [{\\\"tag\\\": \\\"field\\\",\\\"isShort\\\": false,\\\"text\\\": {\\\"tag\\\": \\\"plainText\\\",\\\"content\\\": \\\"圣诞派对时间：12月24日 14:00~17:00\\\"}}]},{\\\"tag\\\": \\\"div\\\",\\\"fields\\\": [{\\\"tag\\\": \\\"field\\\",\\\"isShort\\\": false,\\\"text\\\": {\\\"tag\\\": \\\"plainText\\\",\\\"content\\\": \\\"礼物交换方式：请各位小伙伴在包装好你准备的礼物之后，附上卡片祝福语，在12月23日下午14:00前交给前台，我们会统一交到圣诞老人手里~\\\"}}]}],\\\"preview\\\": \\\"🎁叮~你有一份圣诞邀请函待查收~\\\",\\\"keyword\\\": \\\"🎁叮~你有一份圣诞邀请函待查收~\\\",\\\"link\\\": {\\\"tag\\\": \\\"url\\\",\\\"url\\\": \\\"https://www.yealink.com.cn/\\\",\\\"iosUrl\\\": \\\"https://www.yealink.com.cn/\\\",\\\"androidUrl\\\": \\\"https://www.yealink.com.cn/\\\",\\\"pcUrl\\\": \\\"https://www.yealink.com.cn/\\\"}}\",\r\n        \"receiverId\": \"3cd40dee99284e74ad23882261b9a173\"\r\n}"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/messages",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "messages"
                      ]
                    }
                  },
                  "response": []
                },
                {
                  "name": "发送卡片消息(任务指派模板)",
                  "event": [
                    {
                      "listen": "test",
                      "script": {
                        "exec": [
                          ""
                        ],
                        "type": "text/javascript"
                      }
                    }
                  ],
                  "request": {
                    "method": "POST",
                    "header": [
                      {
                        "key": "Authorization",
                        "type": "text",
                        "value": "Bearer {{access_token}}"
                      },
                      {
                        "key": "nonce",
                        "type": "text",
                        "value": "{{$guid}}"
                      },
                      {
                        "key": "timestamp",
                        "type": "text",
                        "value": "{{$timestamp}}000"
                      },
                      {
                        "key": "Content-Type",
                        "name": "Content-Type",
                        "type": "text",
                        "value": "application/json"
                      }
                    ],
                    "body": {
                      "mode": "raw",
                      "raw": "{\r\n    \"msgType\": 4,\r\n    \"body\":\"{\\\"header\\\": {\\\"title\\\": {\\\"tag\\\": \\\"plainText\\\",\\\"content\\\": \\\"你有一个Bug需要处理！\\\"},\\\"theme\\\": \\\"orange\\\"},\\\"elements\\\": [{\\\"tag\\\": \\\"div\\\",\\\"fields\\\": [{\\\"tag\\\": \\\"field\\\",\\\"isShort\\\": false,\\\"text\\\": {\\\"tag\\\": \\\"simpleMd\\\",\\\"content\\\": \\\"[【iOS】与安卓端P2P或会议大图显示为安卓端，看对端画面铺不满](https://www.yealink.com.cn/)\\\"}}]},{\\\"tag\\\": \\\"div\\\",\\\"fields\\\": [{\\\"tag\\\": \\\"field\\\",\\\"isShort\\\": false,\\\"text\\\": {\\\"tag\\\": \\\"plainText\\\",\\\"content\\\": \\\"Bug ID：888888\\\"}}]},{\\\"tag\\\": \\\"div\\\",\\\"fields\\\": [{\\\"tag\\\": \\\"field\\\",\\\"isShort\\\": false,\\\"text\\\": {\\\"tag\\\": \\\"plainText\\\",\\\"content\\\": \\\"项目：软端-UCV41 Beta SP3\\\"}}]},{\\\"tag\\\": \\\"div\\\",\\\"fields\\\": [{\\\"tag\\\": \\\"field\\\",\\\"isShort\\\": false,\\\"text\\\": {\\\"tag\\\": \\\"simpleMd\\\",\\\"content\\\":\\\"指派者： <at id=\\\\\\\"3cd40dee99284e74ad23882261b9a173\\\\\\\">hwj</at>\\\"}}]}],\\\"preview\\\": \\\"你有一个Bug需要处理！\\\",\\\"keyword\\\": \\\"你有一个Bug需要处理！\\\",\\\"link\\\": {\\\"tag\\\": \\\"url\\\",\\\"url\\\": \\\"https://www.yealink.com.cn/\\\",\\\"iosUrl\\\": \\\"https://www.yealink.com.cn/\\\",\\\"androidUrl\\\": \\\"https://www.yealink.com.cn/\\\",\\\"pcUrl\\\": \\\"https://www.yealink.com.cn/\\\"}}\",\r\n        \"receiverId\": \"3cd40dee99284e74ad23882261b9a173\"\r\n}"
                    },
                    "url": {
                      "raw": "{{open-host}}/{{open_api_version}}/messages",
                      "host": [
                        "{{open-host}}"
                      ],
                      "path": [
                        "{{open_api_version}}",
                        "messages"
                      ]
                    }
                  },
                  "response": []
                }
              ]
            }
          ]
        }
      ],
      "event": [
        {
          "listen": "prerequest",
          "script": {
            "type": "text/javascript",
            "exec": [
              ""
            ]
          }
        },
        {
          "listen": "test",
          "script": {
            "type": "text/javascript",
            "exec": [
              ""
            ]
          }
        }
      ]
    },
    {
      "name": "32.消息推送",
      "item": [
        {
          "name": "推送消息到设备",
          "event": [
            {
              "listen": "test",
              "script": {
                "exec": [
                  ""
                ],
                "type": "text/javascript",
                "packages": {},
                "requests": {}
              }
            }
          ],
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{access_token}}",
                "type": "text"
              },
              {
                "key": "nonce",
                "value": "{{$guid}}",
                "type": "text"
              },
              {
                "key": "timestamp",
                "value": "{{$timestamp}}000",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\r\n    \"messageType\": \"popup\",\r\n    \"payload\": {\r\n        \"title\": \"会议通知 (Mefion)\",\r\n        \"content\": \"wwweeeeerr33333333333333eeeeeeeeeeeeww\"\r\n    },\r\n    \"devices\": [\r\n        {\r\n            \"vendor\": \"cisco\",\r\n            \"ip\": \"10.59.21.5\"\r\n        },\r\n        {\r\n            \"vendor\": \"yealink\",\r\n            \"ip\": \"10.50.181.90\"\r\n        },\r\n        {\r\n            \"vendor\": \"yealink\",\r\n            \"ip\": \"10.50.181.164\"\r\n        }\r\n    ]\r\n}\r\n"
            },
            "url": {
              "raw": "{{open-host}}/{{open_api_version}}/push/devices/messages",
              "host": [
                "{{open-host}}"
              ],
              "path": [
                "{{open_api_version}}",
                "push",
                "devices",
                "messages"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "disabled": true
                },
                {
                  "key": "number",
                  "value": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        }
      ]
    }
  ],
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "type": "text/javascript",
        "exec": [
          ""
        ]
      }
    },
    {
      "listen": "test",
      "script": {
        "type": "text/javascript",
        "exec": [
          ""
        ]
      }
    }
  ],
  "variable": [
    {
      "key": "user",
      "value": "http://localhost:9998/user-manager",
      "type": "string"
    },
    {
      "key": "appid",
      "value": "1d5c367981d84cae9371cc9e6f073709",
      "type": "string"
    },
    {
      "key": "secret",
      "value": "f2da9f0de81e47deb9ac010ccdd7dc77",
      "type": "string"
    },
    {
      "key": "appid_secret",
      "value": "MWQ1YzM2Nzk4MWQ4NGNhZTkzNzFjYzllNmYwNzM3MDk6ZjJkYTlmMGRlODFlNDdkZWI5YWMwMTBjY2RkN2RjNzc=",
      "type": "string"
    },
    {
      "key": "user_dev",
      "value": "https://c30dev-ygateway.yealinkops.com",
      "type": "string"
    }
  ]
}