Remove Shared Team from App
DELETE
https://deploygate.com/api/organizations/{ORGANIZATION_NAME}/platforms/{PLATFORM_TYPE}/apps/{APP_ID}/shared_teams/{TEAM_NAME}
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) |
TEAM_NAME | string | true | Name of Team to delete |
Example
curl \
--url "https://deploygate.com/api/organizations/${ORGANIZATION_NAME}/platforms/${PLATFORM_TYPE}/apps/${APP_ID}/shared_teams/${TEAM_NAME}" \
-H "Authorization: Bearer ${TOKEN}" \
-X DELETE
Result 200
{
"error": false,
"message": "Name of Team was leaved from Name of App(Organization Name)"
}