From a484fff1966361df698b1e81ca8e775b0333413b Mon Sep 17 00:00:00 2001 From: Jay Sheen Date: Fri, 14 Nov 2025 18:42:32 +0900 Subject: [PATCH] =?UTF-8?q?=EC=82=AC=EC=9A=A9=EC=9E=90=20=EC=82=AD?= =?UTF-8?q?=EC=A0=9C=20API=20=EB=A9=94=EC=86=8C=EB=93=9C=EB=A5=BC=20POST?= =?UTF-8?q?=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 변경 사항: - axios.delete → axios.post로 변경 - POST /api/v1/nmsa/user/delete/{usrid} - Request Body: { "mid": "xxx", "usrid": "xxx" } 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/entities/user/api/use-user-delete-mutation.ts | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/entities/user/api/use-user-delete-mutation.ts b/src/entities/user/api/use-user-delete-mutation.ts index 6a76244..0fb88fd 100644 --- a/src/entities/user/api/use-user-delete-mutation.ts +++ b/src/entities/user/api/use-user-delete-mutation.ts @@ -33,14 +33,17 @@ export const userDelete = async (params: UserDeleteParams): Promise(API_URL_USER.deleteUser(params.usrid), options); + const response = await axios.post( + API_URL_USER.deleteUser(params.usrid), + { + mid: params.mid, + usrid: params.usrid + }, + options + ); return { status: true, data: response.data }; } catch (error: any) { return {