get_build_profiles
Retrieve paginated build profiles for your organization. Search by profile name to find specific profiles with platform and repository details.
Instructions
Get build profiles for the current organization (paginated).
Returns a list of build profiles with their IDs, names, platform types, repository information, build status, and configuration details. 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 build profile objects), meta (count, page, page_size, search_term). - Error: success (false), error (tool, type, message, details). Profile objects exclude connectionEnvironmentKey and webhookSecret.
Examples: Get first page (default size 25): get_build_profiles() Get page 2 with 10 items: get_build_profiles(page=2, size=10) Search for iOS profiles: get_build_profiles(search="iOS")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| size | No | ||
| search | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |