17 lines
334 B
ReStructuredText
17 lines
334 B
ReStructuredText
@endpoint = http://mindol.synology.me:8083/api
|
|
|
|
### 회원저장
|
|
POST {{endpoint}}/member HTTP/1.1
|
|
content-type: application/json
|
|
Accept: application/json
|
|
|
|
{
|
|
"memberId": "test444",
|
|
"memberPassword": "test1234",
|
|
"memberName" : "test",
|
|
"email" : "test@test.com"
|
|
}
|
|
|
|
### 회원조회
|
|
GET {{endpoint}}/member/test HTTP/1.1
|