アプリに参加しているチーム一覧を取得する
GET
https://deploygate.com/api/organizations/{ORGANIZATION_NAME}/platforms/{PLATFORM_TYPE}/apps/{APP_ID}/teams
この操作はグループが所有するアプリにのみ使用できます。
Path Params
Name | Type | Required | Description |
---|---|---|---|
ORGANIZATION_NAME | string | true | グループ名 |
PLATFORM_TYPE | string | true | ios もしくは android |
APP_ID | string | true | アプリのパッケージ名 (例: 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
}
]
}