Remove Team from App
DELETE
https://deploygate.com/api/organizations/{ORGANIZATION_NAME}/platforms/{PLATFORM_TYPE}/apps/{APP_ID}/teams/{TEAM_NAME}
This operation is allowed to Organization managed App only.
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) |
TEAM_NAME | string | true | App team to delete |
Example
curl \
--url "https://deploygate.com/api/organizations/${ORGANIZATION_NAME}/platforms/${PLATFORM_TYPE}/apps/${APP_ID}/teams/${TEAM_NAME}" \
-H "Authorization: Bearer ${TOKEN}" \
-X DELETE
Result 200
{
"error": false,
"message": "team name was leaved from app name(organization name)"
}