get_distribution_profile_details
Retrieve a specific testing distribution profile by ID, including its settings and a paginated list of app versions. Control pagination with page and size parameters.
Instructions
Get a single testing distribution profile by ID (with optional app versions pagination).
Returns the distribution profile with the given ID, including name, settings, and a paginated list of app versions. Use page and size to paginate app versions. The returned profile excludes settings.password.
Args: profile_id: The distribution 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 distribution profile object with appVersions), meta (app-versions pagination). - Error: success (false), error (tool, type, message, details). Profile object excludes settings.password. Meta contains page, page_size, total_count, etc.
Examples: Get profile details: get_distribution_profile_details(profile_id="uuid-here") Get first page of app versions (5 per page): get_distribution_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 |