DescribeAIRecognitionTemplates
Last updated: 2025-12-16 15:43:25Download PDF
1. API Description
Domain name for API request: mps.intl.tencentcloudapi.com.
This API is used to get the list of content recognition templates based on unique template ID. The return result includes all eligible custom and preset content recognition templates.
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 Name | Required | Type | Description |
|---|---|---|---|
| Action | Yes | String | Common Params. The value used for this API: DescribeAIRecognitionTemplates. |
| Version | Yes | String | Common Params. The value used for this API: 2019-06-12. |
| Region | No | String | Common Params. This parameter is not required for this API. |
| Definitions.N | No | Array of Integer | Filter condition for the unique identifier of the video content recognition template. The array can contain up to 100 unique identifiers. |
| Offset | No | Integer | Paging offset. Default value: 0. |
| Limit | No | Integer | Number of returned entries. Default value: 10. Maximum value: 50. |
| Type | No | String | The filter for querying templates. If this parameter is left empty, both preset and custom templates are returned. Valid values: * Preset * Custom |
| Name | No | String | Filter condition for video recognition template identifiers, with a length limit of 64 characters. |
3. Output Parameters
| Parameter Name | Type | Description |
|---|---|---|
| TotalCount | Integer | Number of eligible entries. |
| AIRecognitionTemplateSet | Array of AIRecognitionTemplateItem | List of video content recognition template details. |
| RequestId | String | The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem. |
4. Example
Example1 Obtaining a Video Content Recognition Template with the ID of 30
Input Example
https://mps.intl.tencentcloudapi.com/?Action=DescribeAIRecognitionTemplates
&Definitions.0=30
&<Common request parameters>Output Example
{
"Response": {
"TotalCount": 1,
"AIRecognitionTemplateSet": [
{
"Definition": 30,
"Name": "Presetting Template30",
"Comment": "Default template with all recognition switches enabled. Use only user-defined libraries without filter tags.",
"Type": "Preset",
"FaceConfigure": {
"Switch": "ON",
"Score": 95,
"DefaultLibraryLabelSet": [],
"UserDefineLibraryLabelSet": [],
"FaceLibrary": "UserDefine"
},
"OcrFullTextConfigure": {
"Switch": "ON"
},
"OcrWordsConfigure": {
"Switch": "ON",
"LabelSet": []
},
"AsrFullTextConfigure": {
"Switch": "ON",
"SubtitleFormat": "vtt"
},
"AsrWordsConfigure": {
"Switch": "ON",
"LabelSet": []
},
"TranslateConfigure": {
"Switch": "OFF",
"SourceLanguage": "en",
"DestinationLanguage": "zh",
"SubtitleFormat": "vtt"
},
"CreateTime": "2019-06-13T11:07:07+08:00",
"UpdateTime": "2020-01-06T08:21:46+08:00"
}
],
"RequestId": "9a12345af0-4a9c-ae02-704f3d5a8040"
}
}5. Developer Resources
SDK
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
- Tencent Cloud SDK 3.0 for Python
- Tencent Cloud SDK 3.0 for Java
- Tencent Cloud SDK 3.0 for PHP
- Tencent Cloud SDK 3.0 for Go
- Tencent Cloud SDK 3.0 for Node.js
- Tencent Cloud SDK 3.0 for .NET
- Tencent Cloud SDK 3.0 for C++
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 Code | Description |
|---|---|
| FailedOperation.InvalidMpsUser | Operation failed: unauthorized MPS user. |
| InternalError | Internal error. |
| InvalidParameter | Parameter error. |
| InvalidParameterValue.Definitions | Parameter error: Definitions. |
| InvalidParameterValue.Limit | Parameter error: Limit. |
| ResourceNotFound.TemplateNotExist | The resource does not exist: the template does not exist. |