# Obtaining a Page List of Uploaded Code

This API allows you to obtain the page list of a Mini Program's code that is uploaded by calling the API for Uploading a Mini Program's Code via a third-party platform. The page list is used for specifying the [Address Parameter of a Review Item To Be Submitted for Review](./submit_audit.md#Review Items).

# Request Address

GET https://api.weixin.qq.com/wxa/get_page?access_token=ACCESS_TOKEN

# Request Parameters

Parameter Type Required Description
access_token String Yes Mini Program API Call Token

# Response Parameters

Parameter Type Description
errcode Number Error code
errmsg String Error message
page_list String Array Page configuration list

Example of returned result

{
  "errcode": 0,
  "errmsg": "ok",
  "page_list": ["index", "page/list", "page/detail"]
}

# 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.