# Querying the Review Status of a Specified Released Review Sheet

This API allows you to query the status of a specified released review sheet after Submitting Code for Review.

# Request Address

POST https://api.weixin.qq.com/wxa/get_auditstatus?access_token=ACCESS_TOKEN

# Request Parameters

Parameter Type Required Description
access_token String Yes Mini Program API Call Token
auditid String Yes The review ID that is obtained upon submission for review

POST data example

{
  "auditid": 1234567
}

# Response Parameters

Parameter Type Description
errcode number Error code
errmsg string Error message
status Number Review status
reason String The rejection reason that is returned when the review is rejected
screenshot String A sample screenshot of rejection of the Mini Program. It is a list of media_id separated by using |. The screenshot content can be obtained via the "Obtain Permanent Media" API.

# Review status

Status Value Description
0 Approved
1 Rejected.
2 Under review
3 Withdrawn

Example of returned result

{
  "errcode": 0,
  "errmsg": "ok",
  "status": 1,
  "reason": "Account information does not meet the criteria.",
  "screenshot": "xxx|yyy|zzz"
}

# Error Code

Error Code Description
-1 The system is busy.
0 Successful
86000 It is not called by a third party on behalf of the Mini Program.
86001 No third-party code is submitted.
85012 The review ID is invalid.