apps_list
List apps in a developer space with product IDs, keys, and names. Supports cursor-based pagination and optional private app inclusion.
Instructions
Discover apps in this developer space (live API call). Returns productId (UUID — use as filter), appKey, appName, state. CURSOR-paginated: pass cursor (from a prior response's nextCursor) to page forward. In summary mode the result includes nextCursor (null when no more pages). Default (no limit) returns up to 10 (the API's default page size).
📖 Spec (GET /rest/3/product-listing/developer-space/{developerId}): https://developer.atlassian.com/platform/marketplace/rest/v4/api-group-app-listing/#api-rest-3-product-listing-developer-space-developerid-get
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Page size. Omit for the API default (10). Cursor pagination — `offset` is not supported. | |
| cursor | No | Opaque pagination token from a prior response's `nextCursor` (summary mode) or `links.next` (full mode). | |
| includePrivate | No | Include private (unlisted) apps in addition to public ones. Invalid value → HTTP 400. | |
| includeFullPayload | No | If true, return the raw API response ({items, links}). Default false returns a compact summary + nextCursor. |