List Shared Team of App
GET
https://deploygate.com/api/organizations/{ORGANIZATION_NAME}/platforms/{PLATFORM_TYPE}/apps/{APP_ID}/shared_teams
This operation is allowed to Enterprise Organizations.
Path Params
Name | Type | Required | Description |
---|---|---|---|
ORGANIZATION_NAME | string | true | Organization Name |
PLATFORM_TYPE | string | true | ios or android |
APP_ID | string | true | App'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
}
]
}