Codemagic integration (Developer Tools). Imported from open-connector.
https://api.codemagic.io/api/v3/user
/api/v3/user/teams
| Param | Type | Required | Description |
|---|---|---|---|
| page | integer | optional | The page number to fetch. |
| page_size | integer | optional | The maximum number of results to return per page. |
/api/v3/user/apps
| Param | Type | Required | Description |
|---|---|---|---|
| page | integer | optional | The page number to fetch. |
| page_size | integer | optional | The maximum number of results to return per page. |
/api/v3/teams/{team_id}/apps
| Param | Type | Required | Description |
|---|---|---|---|
| team_id | string | required | The Codemagic team ID. |
| page | integer | optional | The page number to fetch. |
| page_size | integer | optional | The maximum number of results to return per page. |
| id | array | optional | Optional list of application IDs to filter by. |
/api/v3/teams/{team_id}/builds
| Param | Type | Required | Description |
|---|---|---|---|
| team_id | string | required | The Codemagic team ID. |
| app_id | string | optional | Only return builds for this application ID. |
| status | string | optional | Only return builds with this status. |
| workflow_id | string | optional | Only return builds for this workflow ID. |
| branch | string | optional | Only return builds for this branch. |
| tag | string | optional | Only return builds for this tag. |
| label | array | optional | Only return builds that match these labels. |
| cursor | string | optional | Cursor returned by the previous response to continue listing results. |
| page_size | integer | optional | The maximum number of results to return per page. |
/api/v3/builds/{build_id}
| Param | Type | Required | Description |
|---|---|---|---|
| build_id | string | required | The Codemagic build ID. |
/builds
| Param | Type | Required | Description |
|---|---|---|---|
| appId | string | required | The Codemagic application ID. |
| workflowId | string | required | The workflow identifier as specified in the YAML file. |
| branch | string | optional | Git branch name to build. Either branch or tag is required. |
| tag | string | optional | Git tag name to build. Either branch or tag is required. |
| labels | array | optional | Labels to attach to the build. |
| environment | object | optional | Environment overrides applied when starting a build. |
| instanceType | string | optional | Build machine type, such as mac_mini_m2 or linux_standard. |
/builds/{build_id}/cancel
| Param | Type | Required | Description |
|---|---|---|---|
| build_id | string | required | The Codemagic build ID. |