From 439106b42fdaca934ad9171583064722eeba7eb9 Mon Sep 17 00:00:00 2001 From: YoungJun Park Date: Fri, 8 Jul 2022 02:14:21 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20=ED=9A=8C=EC=9B=90=EA=B0=80?= =?UTF-8?q?=EC=9E=85=20HTTP=20Client=20=ED=98=B8=EC=B6=9C=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80(#3)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- http/01_Member.http | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 http/01_Member.http diff --git a/http/01_Member.http b/http/01_Member.http new file mode 100644 index 0000000..ff16804 --- /dev/null +++ b/http/01_Member.http @@ -0,0 +1,20 @@ +### 1. 회원가입 API (USER) +POST http://localhost:8080/v1/member +Content-Type: application/json + +{ + "name": "박영준", + "email": "youngjun108059@gmail.com", + "type": "USER" +} + +### 1-1.회원가입 API (COMPANY) +POST http://localhost:8080/v1/member +Content-Type: application/json + +{ + "name": "영준 엔터", + "email": "yj@company.com", + "type": "COMPANY" +} +