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" +} +