All checks were successful
kiz-shop-pipeline/pipeline/head This commit looks good
17 lines
335 B
ReStructuredText
17 lines
335 B
ReStructuredText
@endpoint = http://mindol.synology.me:60000/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
|