List Apps
asc_list_appsRetrieve a paginated list of apps in your App Store Connect account, including name, bundle ID, SKU, and locale.
Instructions
List all apps registered in the App Store Connect account.
Args:
limit (number): Maximum number of apps to return (default 20, max 200)
nextUrl (string, optional): Pagination URL returned by a previous call. Pass it back to fetch the next page.
Returns: { "count": number, // number of apps in this response "items": [ { "id": string, // App Store Connect app ID "name": string, "bundleId": string, "sku": string, "primaryLocale": string } ], "nextUrl": string | undefined // pass to a subsequent call to fetch the next page, absent if no more pages }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| 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. |