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

ワークスペースのグループからメンバーを削除する

DELETE https://deploygate.com/api/enterprises/{WORKSPACE_NAME}/organizations/{ORGANIZATION_NAME}/users/{USER_NAME}

ワークスペース内のそのグループに所属しているユーザーをグループから削除します。ワークスペースからは削除されません。


Path Params

NameTypeRequiredDescription
WORKSPACE_NAMEstringtrueワークスペース名
ORGANIZATION_NAMEstringtrueグループ名
USER_NAMEstringtrue削除する対象ユーザのユーザー名

Example

curl \
-X DELETE \
--url "https://deploygate.com/api/enterprises/${WORKSPACE_NAME}/organizations/${ORGANIZATION_NAME}/users/${USER_NAME}" \
-H "Accept: application/json" \
-H "Authorization: Bearer ${API_TOKEN}"

Result 200

{
"error": false,
"message": "${USER_NAME} was removed from ${ORGANIZATION_NAME}(${WORKSPACE_NAME})"
}