アプリに共有チームを追加する
POST
https://deploygate.com/api/organizations/{ORGANIZATION_NAME}/platforms/{PLATFORM_TYPE}/apps/{APP_ID}/shared_teams
この操作はエンタープライズグループが所有するアプリにのみ使用できます。
Path Params
Name | Type | Required | Description |
---|---|---|---|
ORGANIZATION_NAME | string | true | グループ名 |
PLATFORM_TYPE | string | true | ios もしくは android |
APP_ID | string | true | アプリのパッケージ名 (例: com.deploygate.android) |
Body
Name | Type | Required | Description |
---|---|---|---|
team | string | true | 追加するチーム名 |
Example
curl \
--url "https://deploygate.com/api/organizations/${ORGANIZATION_NAME}/platforms/${PLATFORM_TYPE}/apps/${APP_ID}/shared_teams" \
-H "Authorization: Bearer ${TOKEN}" \
-X GET \
--form-string "team=${TEAM_NAME}"
Result 201