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
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) |
Body
Name | Type | Required | Description |
---|---|---|---|
team | string | true | Name 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