チームからメンバーを削除する
DELETE
https://deploygate.com/api/organizations/{ORGANIZATION_NAME}/teams/{TEAM_NAME}/users/{USER_NAME}
チームに所属しているユーザーをチームから削除します。
Path Params
Name | Type | Required | Description |
---|---|---|---|
ORGANIZATION_NAME | string | true | グループ名 |
TEAM_NAME | string | true | チーム名 |
USER_NAME | string | true | 削除する対象ユーザのユーザー名 |
Example
curl \
-X DELETE \
--url "https://deploygate.com/api/organizations/${ORGANIZATION_NAME}/teams/${TEAM_NAME}/users/${USER_NAME}" \
-H "Accept: application/json" \
-H "Authorization: Bearer ${API_TOKEN}"
Result 200
{
"error": false,
"message": "invitee was removed from ${TEAM_NAME}(${ORGANIZATION_NAME})"
}