メインコンテンツまでスキップ

アプリにチームを追加する

POST https://deploygate.com/api/organizations/{ORGANIZATION_NAME}/platforms/{PLATFORM_TYPE}/apps/{APP_ID}/teams

この操作はグループが所有するアプリにのみ使用できます。

Path Params

NameTypeRequiredDescription
ORGANIZATION_NAMEstringtrueグループ名
PLATFORM_TYPEstringtrueios もしくは android
APP_IDstringtrueアプリのパッケージ名 (例: com.deploygate.android)

Body

NameTypeRequiredDescription
teamstringtrue追加するチーム名

Example

curl \
--url "https://deploygate.com/api/organizations/${ORGANIZATION_NAME}/platforms/${PLATFORM_TYPE}/apps/${APP_ID}/teams" \
-H "Authorization: Bearer ${TOKEN}" \
-X POST \
--form-string "team=${TEAM_NAME}"

Result 201