get_distribution_profiles
Retrieve paginated distribution profiles for testing. Filter by name to find specific profiles for iOS or Android app distribution.
Instructions
Get testing distribution profiles for the current organization (paginated).
Returns a list of distribution profiles with their IDs, names, iOS and Android app versions, settings details, and testing group information. Optionally filter by profile name using the search parameter.
Args: page: Page number (1-based). Default: 1. size: Page size (1-100). Default: 25. Values above 100 are capped at 100. search: Optional search term to filter profiles by name (case-insensitive partial match). For example, search="iOS" will return profiles with "iOS" in their name.
Returns: Standard envelope (see docs/tool_contract.md): - Success: success (true), data (list of distribution profile objects), meta (count, page, page_size, search_term). - Error: success (false), error (tool, type, message, details). Profile objects exclude settings.password.
Examples: Get first page (default size 25): get_distribution_profiles() Get page 2 with 10 items: get_distribution_profiles(page=2, size=10) Search for iOS profiles: get_distribution_profiles(search="iOS")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| size | No | ||
| search | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |