Skip to main content

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

NameTypeRequiredDescription
ORGANIZATION_NAMEstringtrueOrganization Name
PLATFORM_TYPEstringtrueios or android
APP_IDstringtrueApp's package name (Example: com.deploygate.android)
TEAM_NAMEstringtrueApp 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)"
}