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

POST /CCSQM/rest/ccisqm/v1/qualitytask/modifyResultQualityTask

Scenario

This interface is invoked to modify the inspection result.

Method

POST

URI

https://Domain name/apiaccess/CCSQM/rest/ccisqm/v1/qualitytask/modifyResultQualityTask (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

Yes

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

isGroup

Boolean

Yes

Whether the call is in a call group

1.2

ruleType

Number

Yes

Rule type

1.3

taskId

String

Yes

Task ID

1.4

uuid

String

Yes

Call UUID

1.5

ruleInfo

Object

Yes

Rule information

1.5.1

description

String

Yes

Sample inspection remarks

1.5.2

revise

Number

Yes

Sample inspection result. The options are 1 (valid) and 0 (invalid).

1.5.3

reviseId

Number

Yes

Rule ID

Response Description

  • Status code: 200
Table 3 Response body parameters

No.

Parameter

Type

Mandatory or Not

Description

1.1

resultCode

String

No

Return code

  • 0409000: success
  • Others: failure

1.2

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: Modify the inspection result.

    Request header:

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

    Request parameters:

    {
    	"isGroup": false,
    	"ruleType": 60,
    	"taskId": "951849982538539011",
    	"uuid": "6e587bea-d752-4cd7-8ce4-96b6e4c9258a",
    	"ruleInfo": {
    		"description": "5454",
    		"revise": 1,
    		"reviseId": "sentitiveWordRule735bd2f5-0037-4b22-8eb5-49e354e3bac9"
    	}
    }

    Response parameters:

    {
        "resultCode": 0409000,
    	"resultDesc": "success"
    }