get_store_profile_details
Retrieve an enterprise app store profile by ID, including configuration and paginated app versions. Specify page and size for version pagination.
Instructions
Get a single enterprise app store profile by ID (with optional app versions pagination).
Returns the enterprise app store profile with the given ID, including name, configuration, and a paginated list of app versions. Use page and size to paginate app versions. The returned profile and each app version exclude signedCertThumbPrint.
Args: profile_id: The enterprise app store profile ID (e.g. UUID). page: Page number for app versions (1-based). Default: 1. size: Page size for app versions (1-100). Default: 25. Values above 100 are capped at 100.
Returns: Standard envelope (see docs/tool_contract.md): - Success: success (true), data (single store profile object with appVersions), meta (app-versions pagination). - Error: success (false), error (tool, type, message, details). Profile and app versions exclude signedCertThumbPrint. Meta contains page, page_size, total_count, etc.
Examples: Get profile details: get_store_profile_details(profile_id="uuid-here") Get first page of app versions (5 per page): get_store_profile_details(profile_id="uuid", page=1, size=5)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| size | No | ||
| profile_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |