Get official template details
POST/api/v1/automation/officialTemplateInfo| Parameter | Type | Required | Description |
|---|---|---|---|
| id | int | Yes | Template ID, which can be obtained from the Official Template List |
{
"id": "mgRg1"
}
{
"code": 200,
"data": {
"info": {
"id": "mgRg1", // ID
"app_id": "qunBQ", // Platform app ID
"name": "Tiktok Login", // Template name
"desc": "xxxxxxx", // Template description
"exception_type": 0, // Exception handling (0: Skip, 1: Abort)
"dump_type": 0, // Dump mode (0: Default, 1: Accessibility)
"config": [ // Variable configuration
{
"key": "username", // Variable name, e.g. Search-Content
"value": "username", // Variable value; when key is file, the value is an array
"type": "string", // Parameter type, e.g. file, textarea (batch text), boolean, number, string, excel (Excel upload)
"required": true, // Whether this field is required; true: Required, false: Optional
"desc": "Enter search contents (search topics):" // Description
},
{
"key": "password",
"value": "password",
"type": "string",
"required": true,
"desc": "Enter search contents (search topics):" // Description
}
]
}
},
"message": "Success"
}