# Query a list of quality inspection tasks
# Brief description
- Check the status of submitted quality inspection tasks
- Find out the results of quality inspection tasks
# Request URL
https://minitest.weixin.qq.com/thirdapi/union_plan_list
# How to request
- GET
# parameter
| Parameter Name | Required | type | Introductions |
|---|---|---|---|
| token | yes | string | You can obtain it from "My Information" in the drop-down menu on the right-hand side of your profile in the upper right corner of the page |
| group_en_id | yes | string | Project ID in English, available on item management / product management page |
| page_size | no | int | Return number of pages |
| page_index | no | int | Page number, starting with 1, indicates the number of pages |
| start_day | no | string | Filter options: Task start date, such as '2025-06-30' |
| end_day | no | string | Filter Options: Task End Date, such as '2025-06-30' |
# Query Task Status & Get Task Results
# Brief description
- Check the status of submitted quality inspection tasks
- Find out the results of quality inspection tasks
# Request URL
https://minitest.weixin.qq.com/thirdapi/union_plan
# How to request
- GET
# parameter
| Parameter Name | Required | type | Introductions |
|---|---|---|---|
| token | yes | string | You can obtain it from "My Information" in the drop-down menu on the right-hand side of your profile in the upper right corner of the page |
| group_en_id | yes | string | Project ID in English, available on item management / product management page |
| plan_id | yes | int | Quality check task id |
| full_info | no | int | Yes (1) No (0, default) Require test results details |
# Return an example
{
"data": {
"status": 12,
"evaluate_level": "优秀",
"evaluate_score": 96,
"tasks": [{
"auto_plan_id": 111,
"auto_plan_info": {
"results": []
}
}]
},
"msg": "success",
"rtn": 0
}
# Submission of assignment
# Brief description
- To submit joint tasks, only quality inspection tasks can be submitted at this stage. Make sure you bind the Weixin Mini Program AppID to the project in item management / product management before submitting
# Request URL
https://minitest.weixin.qq.com/thirdapi/union_plan
# How to request
- POST
# parameter
| Parameter Name | Required | type | Introductions |
|---|---|---|---|
| token | yes | string | From the top right corner of the page avatar pull down menu "my information," jump to my information page, view "my Token" |
| group_en_id | yes | string | Project ID in English, available on item management / product management page |
| platforms | yes | string | Operating platform, optional platform: android, ios, multiple platforms can be separated by English comma, such asandroid, ios |
| wx_version | yes | int | Weixin Mini Program version,1: Online version2: Experience version [[ TAG-2-START]] 3`: Development version (If you need to test the experience version or development version of the task, please confirm that the Mini Program has uploaded the experience version or development version) |
| dev_account_no | no | int | When submitting the development version of the test, you need to fill in the account number used, for example, using 'ci robot 1', then pass in 1. |
| virtual_accounts | no | string | Specify either a virtual account or a real account to test. If you specify more than one, split it in English commas.A virtual account needs to fill in the WeChat number of the virtual account, for examplevaccount7, vaccount8, get WeChat ID reference virtual account use .The real account fill in the account nickname. |
| wx_id | no | string | Weixin Mini Program AppID, general items need not be filled out, only third-party service provider items need to be filled out |
| test_plan_id | no | int | In configuring the quality inspection task, customize the test plan for the Monkey task |
| desc | no | string | Descriptions of test tasks, notes, etc. |
| special_cloud | no | string | Ability to pay, such as filling infast_test when using the fast test |
| device_ids | no | string | Pay capacity, specify the model ID test, if you specify more than one, divided by English comma.For example755,1783, the model ID can be obtained from the custom model selection page on the submit test task page. |
| union_type | yes | int | Type of joint mission.1: Quality inspection task (default value) |
# Return an example
{
"data": {
"plan_id": 73, # 质检任务ID。注意保存,用于后续查询质检任务状态使用
"task_msg": "", # 如果任务创建失败,这里返回失败原因
"task_result": True
},
"msg": "创建成功",
"rtn": 0,
"timestamp": 1649313364.4696019
}