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

アプリに参加しているチーム一覧を取得する

GET 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)

Example

curl \
--url "https://deploygate.com/api/organizations/${ORGANIZATION_NAME}/platforms/${PLATFORM_TYPE}/apps/${APP_ID}/shared_teams" \
-H "Authorization: Bearer ${TOKEN}" \
-X GET

Result 200

{
"error": false,
"teams": [
{
"name": "チーム名",
"role": "owner",
"member_count": 1
}
]
}