Apply to open WeChat by shaking


Apply to activate the function


1475201772314357.jpg
##ParametersDescriptionapply_timeTime stamp of submitting applicationaudit_statusAudit status. 0: Review failed, 1: Review in progress, 2: Review passed; the review will be completed within three working daysaudit_commentAudit notes, including review Reason for failureaudit_time Determine the timestamp of the audit result; if the status is under review, the time value is 0


Interface Description

Apply to activate the shake peripheral function. After the application request is successfully submitted, the staff will complete the review within three working days. If the review fails, you can resubmit the application request. If it is under review, please wait patiently for the staff to review it. Application requests cannot be submitted while it is under review.

Interface call description

http请求方式: POST(请使用https协议)https://api.weixin.qq.com/shakearound/account/register?access_token=ACCESS_TOKENPOST数据格式:json
POST数据例子:
{
  "name": "zhang_san",
  "phone_number": "13512345678",
  "email": "weixin123@qq.com",
  "industry_id": "0118",
  "qualification_cert_urls": [
  "http://shp.qpic.cn/wx_shake_bus/0/1428565236d03d864b7f43db9ce34df5f720509d0e/0",
  "http://shp.qpic.cn/wx_shake_bus/0/1428565236d03d864b7f43db9ce34df5f720509d0e/0"
  ],
  "apply_reason": "test"
}

Parameter description

##email isContact Email##industry_idIndustry Code
ParameterIs it requiredDescription
access_tokenYesCall interface credentials
name is the contact name of , not exceeding 20 Chinese characters or 40 English letters
phone_number is Contact phone number
is the industry code defined by the platform. For details, please check the link
qualification_cert_urls is the image url of related qualification documents. The image needs to be uploaded to the WeChat server first. Use "Material Management-Upload Image Materials" "Interface uploads images, and the returned image URL is configured here;

When no qualification documents are required, the url does not need to be filled in the array

apply_reason NoReason for application, no more than 250 Chinese characters or 500 English letters

Return instructions

Normal return JSON data packet example:

{
   "data": {
       
   },
   "errcode": 0,
   "errmsg": "success."
}

Query audit status

Interface Description Query the review status of the submitted application for activating the shake peripheral function. After the application is submitted, the staff will complete the review within three working days.

Interface call description

http请求方式:(请使用https协议)https://api.weixin.qq.com/shakearound/account/auditstatus?access_token=ACCESS_TOKEN

Return description Normal return JSON data packet example:

{
    "data": {
        "apply_time": 1432026025,
        "audit_comment": "test",
        "audit_status": 1,
        "audit_time": 0
    },
    "errcode": 0,
    "errmsg": "success."
}


Parameter description

ParameterDescription
apply_timeSubmit Timestamp of application
audit_statusAudit status. 0: Review failed, 1: Review in progress, 2: Review passed; the review will be completed within three working days
audit_commentAudit notes, including review Reason for failure
audit_time Determine the timestamp of the audit result; if the status is under review, the time value is 0

Query review status

Interface description

Query the submitted shake peripherals The review status of the feature request. After the application is submitted, the staff will complete the review within three working days.

Interface call description

http请求方式:(请使用https协议)https://api.weixin.qq.com/shakearound/account/auditstatus?access_token=ACCESS_TOKEN

Return description

Example of normal return JSON data packet:

{
    "data": {
        "apply_time": 1432026025,
        "audit_comment": "test",
        "audit_status": 1,
        "audit_time": 0
    },
    "errcode": 0,
    "errmsg": "success."
}

Parameter Description

ParametersDescription
apply_timeTime stamp of submitting application
audit_statusAudit status. 0: Review failed, 1: Review in progress, 2: Review passed; the review will be completed within three working days
audit_commentAudit notes, including review Reason for failure
audit_time Determine the timestamp of the audit result; if the status is under review, the time value is 0


##