API Description

Applies for activating the Shake Nearby feature. The review will be completed within three business days upon submission of the application. If the application is rejected, you can submit it again. If it is under review, please wait and you cannot submit it again.

API Request Format

HTTP request method: POST(use the HTTPS protocol) https://api.weixin.qq.com/shakearound/account/register?access_token=ACCESS_TOKENPOST Data format: JSON
POST data example:
{
  "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"
}

Parameters

Parameter Required Description
access_token Yes The credential for calling the API
name Yes Contact name, with a maximum length of 20 Chinese characters (40 English characters)
phone_number Yes Phone number of contact
email Yes Email of contact
industry_id Yes Industry ID defined by the platform. For more information, see Industry ID.
qualification_cert_urls Yes Image URL of the relevant qualification document. The image URL for configuration must be the one returned after the image is uploaded to the Weixin server using the "Media Asset Management - Upload Image" API. When the qualification document is not needed, the URL is not required in the array.
apply_reason No Reason for application, with a maximum length of 250 Chinese characters (500 English characters)

Response

Example of JSON packet returned for a successful request:

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

# Querying the Review Status

API Description Queries the review status of the application that has been submitted for activating the Shake Nearby feature. The review will be completed within three business days upon submission.

API Request Format

HTTP request method: POST (use the HTTPS protocol)https://api.weixin.qq.com/shakearound/account/auditstatus?access_token=ACCESS_TOKEN

Response Example of the JSON packet returned for a successful request:

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

Parameters

Parameter Description
apply_time Timestamp for submitting the application
audit_status Review status. 0: Rejected; 1: Under review; 2: Approved. The review will be completed within three business days.
audit_comment Review remarks, including the rejection reason
audit_time Timestamp when the review result is determined. If the status is "Under review", the time value is 0.