Skip to main content

List Teams of App

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

This operation is allowed to Organization managed App only.


Path Params

NameTypeRequiredDescription
ORGANIZATION_NAMEstringtrueOrganization Name
PLATFORM_TYPEstringtrueios or android
APP_IDstringtrueApp's package name (Example: 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": "Name of Team",
"role": "owner",
"member_count": 1
}
]
}