From 81fd1bde255eec7e232dc7690d9e5228d5da4e9e Mon Sep 17 00:00:00 2001 From: Heidi Date: Sat, 21 Sep 2024 16:01:17 +0900 Subject: [PATCH] =?UTF-8?q?endpoint=20test=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _endpoint_test/member.http | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/_endpoint_test/member.http b/_endpoint_test/member.http index d4709c74..81d9b930 100644 --- a/_endpoint_test/member.http +++ b/_endpoint_test/member.http @@ -32,12 +32,22 @@ Authorization: {{authorization}} ### 친구 관계 생성 API POST {{host}}/member/friend Content-Type: application/json +Authorization: {{authorization}} { "fromMemberId": "22ee8f4c-c2db-49c5-ad5d-22db7bb67796", "toMemberId": "71400a62-b535-48c3-967b-5a25a64137ae" } +### 친구 관계 해제 API +DELETE {{host}}/member/friend +Content-Type: application/json +Authorization: {{authorization}} + +{ + "fromMemberId": "22ee8f4c-c2db-49c5-ad5d-22db7bb67796", + "toMemberId": "71400a62-b535-48c3-967b-5a25a64137ae" +} ### 마이스페이스 내가 받은 픽 조회 API GET {{host}}/member/my-space/pick