Skip to content

Get Window Browser Grouping

Request method and path

html
POST http://localhost:[Port]/openapi/window/group/lists?ticket=[OpenApiTicket]

Interface Function Description

Used to obtain window browser groups.

Request parameter

None.

Return data

Successful Response Example

json
{
  "code": "00000",
  "message": "Success",
  "data": {
    "status": "success",
    "errorCode": "",
    "errorMsg": "",
    "result": []
  }
}
json
{
  "code": "00000",
  "message": "Success",
  "data": {
    "status": "success",
    "errorCode": "",
    "errorMsg": "",
    "result": [
      {
        "index": 1,
        "templateName": "113",
        "isDefault": false,
        "enable": true,
        "createdAt": "2024/3/22 10:40:14",
        "updatedAt": "2024/3/22 10:40:14"
      },
      {
        "index": 2,
        "templateName": "114",
        "isDefault": true,
        "enable": false,
        "createdAt": "2024/3/22 10:40:14",
        "updatedAt": "2024/3/22 10:40:14"
      }
    ]
  }
}

Example of failed response



Failed to call interface

When the interface response status code is not '00000', the interface call fails.
The specific reasons for interface call errors can be found in the Interface Response Status Code Information Comparison Table for querying.

json
{
  "code": "00001",
  "message": "Unknown error occurred, please provide feedback to official customer service!",
  "data": {}
}