List Builds
asc_list_buildsRetrieve a list of builds for an App Store Connect app, sorted by upload date from newest to oldest. Get version, processing state, expiration details, and paginated results.
Instructions
List builds uploaded for an app, sorted by upload date (newest first).
Args:
appId (string, required): The App Store Connect app ID
limit (number): Maximum number of builds to return (default 20, max 200)
nextUrl (string, optional): Pagination URL returned by a previous call
Returns: { "count": number, "items": [ { "id": string, "version": string, // build number, e.g. "42" "uploadedDate": string, // ISO 8601 "processingState": string, // e.g. "PROCESSING", "VALID", "FAILED", "INVALID" "expired": boolean, "expirationDate": string // ISO 8601 } ], "nextUrl": string | undefined }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | The App Store Connect app ID to list builds for. | |
| limit | No | Maximum number of items to return (default 20, max 200). | |
| nextUrl | No | The nextUrl value returned by a previous call to this tool. Pass it back unchanged to fetch the next page. Omit for the first page. |