グループのメンバーを削除する
DELETE
https://deploygate.com/api/organizations/{ORGANIZATION_NAME}/members/{USER_NAME}
グループに所属しているユーザーをメンバーから削除します。
招待中のユーザの削除
DeployGateへのサインアップが完了していないユーザの招待を取り消す場合は、URLのid
にメールアドレスを指定することで、対象ユーザーをメンバーから削除することができます。
Path Params
Name | Type | Required | Description |
---|---|---|---|
ORGANIZATION_NAME | string | true | グループ名 |
USER_NAME | string | true | 削除する対象ユーザのユーザー名、もしくはメールアドレス |
Example
curl \
-X DELETE \
--url "https://deploygate.com/api/organizations/${ORGANIZATION_NAME}/members/${USER_NAME}" \
-H "Accept: application/json" \
-H "Authorization: Bearer ${API_TOKEN}"
Result 200
{
"error": false,
"message": "invitee was removed from ${ORGANIZATION_NAME}"
}
Result 400
{}