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

ワークスペースのメンバーを削除する

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

ワークスペースに所属しているユーザーをメンバーから削除します。


Path Params

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

Example

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

Result 200

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