# Get a widget qualification
# Interface call request specification
Access to submitted Mini Program audit qualification
The request category returns multiple requests, and the request brand returns only the last submission
The image has been relinked, please use a higher version of chrome browser to open
The interface returns 1050006 if it was not committed, did not store history files, or failed to fetch
Note: This interface returns the audit that has been submitted in the Mini Program side, non-component audit!
Http request method: POST
https://api.weixin.qq.com/shop/audit/get_miniapp_certificate?access_token=xxxxxxxxx
# Request Parameter Sample
{
"req_type": 2
}
# Return Package Example
{
"errcode": 0,
"brand_info":
{
"brand_wording": "Trademark Name,"
"sale_authorization":
[
"https://store.mp.video.tencent-cloud.com/xxxxxxxxxxxxxxxxxxxxxxxxxx"
],
"trademark_registration_certificate":
[
"https://store.mp.video.tencent-cloud.com/xxxxxxxxxxxxxxxxxxxxxxxxxx"
]
},
"category_info_list": [] // Because category_info_List is an array, so even if empty, it can appear in the return package
}
{
"errcode": 0,
"errmsg": "",
"category_info_list":
[
{
"first_category_id": 304,
"first_category_name": "Business self-management,"
"second_category_id": 321,
"second_category_name": "Food,"
"certificate_url":
[
"https://store.mp.video.tencent-cloud.com/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
]
}
]
}
# Request Parameter Dxplaination
parameter | type | Is it necessary to fill out | Introductions |
---|---|---|---|
req_type | uint32 | yes | REQ_TYPE |
# Enumeration - REQ_TYPE
Enumeration value | Introductions |
---|---|
1 | category |
2 | brand name |
# Return parameter specification
parameter | type | Introductions |
---|---|---|
Errcode | uint32 | Error code |
errmsg | string | Error message |
category_info_list | Array | List of category information |
category_info_list().first_category_id | uint32 | First-level categories of Mini Programs |
category_info_list().first_category_name | string | First-level class name of the Mini Program |
category_info_list().second_category_id | uint32 | Secondary class of Mini Program |
category_info_list().second_category_name | string | Secondary class name of Mini Program |
category_info_list().certificate_url | stringArray | Picture of the day |
brand_info().brand_wording | string | Brand name |
brand_info().sale_authorization | stringArray | Trademark Authorization |
brand_info().trademark_registration_certificate | stringArray | Trademark registration certificate |