Updated on 2023-09-27 GMT+08:00

POST /CCSQM/rest/ccisqm/v1/silencerule/querySilenceRules

Scenario

This interface is invoked to query a silent rule list. The query criteria are page (current page number), limit (number of records on each page), and keyword (query keyword).

Method

POST

URI

https://Domain name/apiaccess/CCSQM/rest/ccisqm/v1/silencerule/querySilenceRules (For example, the domain name is service.besclouds.com.)

Request Description

Table 1 Request header parameters

No.

Parameter

Type

Mandatory or Not

Description

1

Content-Type

String

No

The value is fixed to application/json; charset=UTF-8.

2

x-app-key

String

No

App key

3

Authorization

String

Yes

Authentication field. The format is Bearer {Value of AccessToken returned by the tokenByAkSk interface}. (A space is required after Bearer.)

4

x-UserId

String

No

Operator ID

You can sign in to the system and go to the employee management page to view the value of userId returned by an interface.

Table 2 Request body parameters

No.

Parameter

Type

Mandatory or Not

Description

1.1

page

Number

No

Current page number

1.2

limit

Number

Yes

Number of records on each page

1.3

keyword

String (64)

No

Query keyword

Response Description

  • Status code: 200
Table 3 Response body parameters

No.

Parameter

Type

Mandatory or Not

Description

1.1

data

Array [Object]

No

Return information

1.1.1

score

String

No

Rule score

1.1.2

seconds

String

No

Silence duration, in seconds

1.1.3

times

String

No

Number of silence times

1.1.4

silence_id

String

No

Silence rule ID

1.1.5

name

String

No

Rule name

1.2

resultCode

String

No

Return code. The value 0405000 indicates success, and other values indicate failure.

1.3

paging

Object

No

Pagination information

1.3.1

total

Number

No

Total number of records

1.4

resultDesc

String

No

Return description

  • Status code: 400

    Incorrect request. Check the request path and parameters.

  • Status code: 401

    Unauthorized operation. 1. Check whether you have purchased related services. 2. Contact customer service to check the status of your account.

  • Status code: 404

    The requested content is not found. Check the request path.

  • Status code: 500

    Business failure. Check the values of parameters in the request.

Error Codes

None

Example

  • Scenario: Query a silent rule list.

    Request header:

    x-app-key:************************************  
    X-UserID:1611917095665261978  
    Authorization:Bearer ********************************

    Request parameters:

    {
    	"page": 1,
    	"limit": 10
    }

    Response parameters:

    {
    	"data": [{
    		"score": "-5",
    		"seconds": "3",
    		"times": "1",
    		"silence_id": "894378242029391872",
    		"name": "Silence rule name 1"
    	}, {
    		"score": "-3",
    		"seconds": "4",
    		"times": "4",
    		"silence_id": "922671254081638400",
    		"name": "test3"
    	}, {
    		"score": "-5",
    		"seconds": "5",
    		"times": "5",
    		"silence_id": "922671488287379456",
    		"name": "tes4"
    	}, {
    		"score": "-4",
    		"seconds": "5",
    		"times": "4",
    		"silence_id": "922987647176019968",
    		"name": "test34"
    	}, {
    		"score": "-4",
    		"seconds": "5",
    		"times": "4",
    		"silence_id": "922988537635147776",
    		"name": "test35444"
    	}],
    	"resultCode": "0405000",
    	"paging": {
    		"total": 5
    	},
    	"resultDesc": "Operation successful."
    }