Get Unresolved Messages


Get the list of unresolved messages that are reported for the applications.

Prerequisites


Your organization has acquired the applications.

Request Format


POST https://{apigw-address}/app-portal-service/v2.2/message/unresolved/list

Request Parameters (Body)


Name Mandatory/Optional Data Type Description
accessKey Mandatory String The service account of the application. The application authenticates with accessKey to obtain the data that it is authorized to access. How to get accessKey>>
orgId Mandatory String The organization ID. How to get orgId>>
pagination Optional Pagination Request Struct Lists the paging requirements in a request. If not specified, the default pagination size is 1000 pages, starting from 0. For more details, see Pagination Request Struct

Response Parameters


Name Data Type Description
data Data Struct The pagination and list of unresolved messages

Data Struct


Name Data Type Description
pagination Pagination Struct The pagination information
ids List<String> The list of message IDs

Error Codes


Code Description
31400 Application or Organization ID is required
31404 The application or organization does not exist, or the application is not acquired

Samples

Request Sample


url: https://{apigw-address}/app-portal-service/v2.2/message/unresolved/list

method: POST

requestBody:
{
  "accessKey":"your_access_key",
  "orgId":"your_org_id",
  "pagination":{
    "pageNo":0,
    "pageSize":1000
  }
}

Return Sample


{
    "code": 0,
    "message": "OK",
    "data": {
        "pagination": {
            "totalElements": 15094,
            "PageNo": 0,
            "PageSize": 1000
        },
        "ids": [
            "cjj-1",
            "cjj01",
            "cjj010",
            "cjj011",
            "cjj012",
            "..."
        ]
    }
}