メインコンテンツまでスキップ

チームからメンバーを削除する

DELETE https://deploygate.com/api/organizations/{ORGANIZATION_NAME}/teams/{TEAM_NAME}/users/{USER_NAME}

チームに所属しているユーザーをチームから削除します。


Path Params

NameTypeRequiredDescription
ORGANIZATION_NAMEstringtrueグループ名
TEAM_NAMEstringtrueチーム名
USER_NAMEstringtrue削除する対象ユーザのユーザー名

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})"
}