Skip to main content

Add Team to App

POST 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)

Body

NameTypeRequiredDescription
teamstringtrueName of Team

Example

curl \
--url "https://deploygate.com/api/organizations/${ORGANIZATION_NAME}/platforms/${PLATFORM_TYPE}/apps/${APP_ID}/teams" \
-H "Authorization: Bearer ${TOKEN}" \
-X POST \
--form-string "team=${TEAM_NAME}"

Result 201