Overview
Menu

ModifyContentReviewTemplate

1. API Description

Domain name for API request: mps.tencentcloudapi.com.

This API is used to modify a custom content moderation template.

A maximum of 10 requests can be initiated per second for this API.

We recommend you to use API Explorer
Try it
API Explorer provides a range of capabilities, including online call, signature authentication, SDK code generation, and API quick search. It enables you to view the request, response, and auto-generated examples.

2. Input Parameters

The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.

Parameter NameRequiredTypeDescription
ActionYesStringCommon Params. The value used for this API: ModifyContentReviewTemplate.
VersionYesStringCommon Params. The value used for this API: 2019-06-12.
RegionNoStringCommon Params. This parameter is not required for this API.
DefinitionYesIntegerThe unique ID of the content moderation template.
NameNoStringThe name of the content moderation template. Length limit: 64 characters.
CommentNoStringThe template description. Length limit: 256 characters.
PornConfigureNoPornConfigureInfoForUpdateControl parameter for porn information
TerrorismConfigureNoTerrorismConfigureInfoForUpdateControl parameter for terrorism information
PoliticalConfigureNoPoliticalConfigureInfoForUpdateControl parameter for politically sensitive information
ProhibitedConfigureNoProhibitedConfigureInfoForUpdateControl parameter of prohibited information detection. Prohibited information includes:
  • Abusive;
  • Drug-related.

  • Note: this parameter is not supported yet.
    UserDefineConfigureNoUserDefineConfigureInfoForUpdateCustom content moderation parameters.

    3. Output Parameters

    Parameter NameTypeDescription
    RequestIdStringThe unique request ID, which is returned for each request. RequestId is required for locating a problem.

    4. Example

    Example1 Enabling porn detection in a content moderation template

    This example shows you how to modify a custom content moderation template, enabling porn detection, setting the thresholds for both rule violation and human recognition to the default, and not specifying any labels.

    Input Example

    https://mps.tencentcloudapi.com/?Action=ModifyContentReviewTemplate
    &Definition=30
    &PornConfigure.ImgReviewInfo.Switch=ON
    &<Common request parameters>
    

    Output Example

    {
        "Response": {
            "RequestId": "12ae8d8e-dce3-4151-9d4b-5594145287e1"
        }
    }
    

    Example2 Enabling porn detection in a content moderation template with specified thresholds for rule violation and human recognition

    This example shows you how to modify a custom content moderation template. Porn detection is enabled, thresholds for rule violation and human recognition are 90 and 60 respectively, and no labels are specified.

    Input Example

    https://mps.tencentcloudapi.com/?Action=ModifyContentReviewTemplate
    &Definition=30
    &PornConfigure.ImgReviewInfo.Switch=ON
    &PornConfigure.ImgReviewInfo.BlockConfidence=90
    &PornConfigure.ImgReviewInfo.ReviewConfidence=60
    &<Common request parameters>
    

    Output Example

    {
        "Response": {
            "RequestId": "82ae8d8e-dce3-4151-9d4b-5594145223e1"
        }
    }
    

    Example3 Enabling porn detection in a content moderation template with specified thresholds for rule violation and human recognition and specified labels

    This example shows you how to modify a custom content moderation template, enabling porn detection. The thresholds for rule violation and human recognition are 90 and 60 respectively, and the label used is sexy.

    Input Example

    https://mps.tencentcloudapi.com/?Action=ModifyContentReviewTemplate
    &Definition=30
    &PornConfigure.ImgReviewInfo.Switch=ON
    &PornConfigure.ImgReviewInfo.LabelSet.0=sexy
    &PornConfigure.ImgReviewInfo.BlockConfidence=90
    &PornConfigure.ImgReviewInfo.ReviewConfidence=60
    &<Common request parameters>
    

    Output Example

    {
        "Response": {
            "RequestId": "67ae8d8e-dce3-4151-9d4b-5594145287e1"
        }
    }
    

    5. Developer Resources

    SDK

    TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.

    Command Line Interface

    6. Error Code

    The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.

    Error CodeDescription
    InternalErrorInternal error.
    InvalidParameterParameter error.
    InvalidParameterValue.BlockConfidenceIncorrect parameter value: the value of the BlockConfidence parameter is invalid.
    InvalidParameterValue.CommentParameter error: template description.
    InvalidParameterValue.LabelSetIncorrect parameter value: invalid LabelSet value.
    InvalidParameterValue.NameIncorrect parameter value: Name exceeds the length limit.
    InvalidParameterValue.ReviewConfidenceIncorrect parameter value: The value of the ReviewConfidence parameter is invalid.
    InvalidParameterValue.SwitchIncorrect parameter value: invalid Switch value.
    ResourceNotFound.TemplateNotExistThe resource does not exist: the template does not exist.