USER API
1. CREATE USER
회원가입
1. Success
request-fields
Path | Type | Description |
---|---|---|
|
|
The user’s email address |
|
|
The user’s password |
|
|
The user’s nickname |
|
|
The user’s phone |
Example request
POST /users HTTP/1.1
Content-Type: application/json
Content-Length: 96
Host: localhost:8080
{"nickname":"hong43ok","email":"hong43ok@gmail.com","password":"test1234","phone":"01012345678"}
Example response
HTTP/1.1 201 Created
이메일 중복 검사
1. Success
Parameter | Description |
---|---|
|
이메일 |
Example request
GET /users/user-emails/hong43ok@gmail.com/exists HTTP/1.1
Host: localhost:8080
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 5
false
2. Fail
Parameter | Description |
---|---|
|
이메일 |
Example request
GET /users/user-emails/hong43ok@gmail.com/exists HTTP/1.1
Host: localhost:8080
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 4
true
중복 검사 통과시 false , 중복 검사 실패시 true 리턴 |
닉네임 중복 검사
1. Success
Parameter | Description |
---|---|
|
닉네임 |
Example request
GET /users/user-nicknames/hong43ok/exists HTTP/1.1
Host: localhost:8080
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 5
false
2. Fail
Parameter | Description |
---|---|
|
닉네임 |
Example request
GET /users/user-nicknames/hong43ok/exists HTTP/1.1
Host: localhost:8080
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 4
true
중복 검사 통과시 false , 중복 검사 실패시 true 리턴 |
이메일 인증(토큰)
1. Success : Authentication Successful
request-parameters
Parameter | Description |
---|---|
|
회원가입시 발송되는 랜덤 토큰 |
|
회원가입시 입력한 이메일 |
Example request
GET /users/email-check-token?token=0987dfab-4b6f-4505-b10a-a2257b427119&email=hong43ok%40gmail.com HTTP/1.1
Host: localhost:8080
Example response
HTTP/1.1 200 OK
2. login / logout
로그인
1. Success
request-fields
Path | Type | Description |
---|---|---|
|
|
login ID (email) |
|
|
password |
Example request
POST /users/login HTTP/1.1
Content-Type: application/json
Content-Length: 52
Host: localhost:8080
{"email":"hong43ok@gmail.com","password":"test1234"}
Example response
HTTP/1.1 200 OK
로그아웃
1. Success
Example request
DELETE /users/logout HTTP/1.1
Host: localhost:8080
Example response
HTTP/1.1 200 OK
3. 비밀번호 찾기
회원 리소스
1. successful get resource
Parameter | Description |
---|---|
|
이메일 |
Example request
GET /users/find/hong43ok@gmail.com HTTP/1.1
Host: localhost:8080
Example response
HTTP/1.1 200 OK
Content-Disposition: inline;filename=f.txt
Content-Type: application/json
Content-Length: 52
{"email":"hong43ok@gmail.com","phone":"01012345678"}
이메일 인증
1. Send Email
request-fields
Path | Type | Description |
---|---|---|
|
|
인증번호를 받을 이메일 |
Example request
POST /users/email-certification/sends HTTP/1.1
Content-Type: application/json
Content-Length: 57
Host: localhost:8080
{"email":"hong43ok@gmail.com","certificationNumber":null}
Example response
HTTP/1.1 201 Created
2. resend
Example request
POST /users/resend-email-token HTTP/1.1
Host: localhost:8080
Example response
HTTP/1.1 200 OK
회원가입시 입력한 이메일로 인증 토큰이 전송됩니다. 해당 토큰은 24시간동안 유효하며, 24시간이 경과되었을 경우 토큰 재전송 요청을 진행해야 합니다. |
2. Success : Authentication Successful
request-fields
Path | Type | Description |
---|---|---|
|
|
비밀번호 찾기를 원하는 이메일 |
|
|
사용자가 입력한 인증번호 |
Example request
POST /users/email-certification/confirms HTTP/1.1
Content-Type: application/json
Content-Length: 61
Host: localhost:8080
{"email":"hong43ok@gmail.com","certificationNumber":"123456"}
Example response
HTTP/1.1 200 OK
비밀번호 분실시 이메일 또는 휴대폰중 하나를 선택하여 인증을 진행한 후 비밀번호 변경 가능. 인증 번호는 10분동안 유효하며, 10분이 경과되면 자동으로 Redis 메모리에서 삭제됩니다. |
4. 회원 정보 수정
비밀번호 변경
1. Success
request-fields
Path | Type | Description |
---|---|---|
|
|
비밀번호 변경을 원하는 회원 ID(email |
|
|
변경할 비밀번호 |
|
|
이전 비밀번호 |
Example request
PATCH /users/password HTTP/1.1
Content-Type: application/json
Content-Length: 93
Host: localhost:8080
{"email":"hong43ok@gmail.com","passwordAfter":"test12345","passwordBefore":"newPassword1234"}
Example response
HTTP/1.1 200 OK
환급 계좌 설정
1. get resource
Example request
GET /users/account HTTP/1.1
Content-Type: application/json
Host: localhost:8080
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 68
{"bankName":"국민","accountNumber":"1234","depositor":"홍정완"}
response-fields
Path | Type | Description |
---|---|---|
|
|
은행명 |
|
|
계좌 번호 |
|
|
예금주 |
2. Successful : Modification
request-fields
Path | Type | Description |
---|---|---|
|
|
은행명 |
|
|
계좌 번호 |
|
|
예금주 |
Example request
PATCH /users/account HTTP/1.1
Content-Type: application/json
Content-Length: 68
Host: localhost:8080
{"bankName":"국민","accountNumber":"1234","depositor":"홍정완"}
Example response
HTTP/1.1 200 OK
주소록 설정
1. Successful : add
request-fields
Path | Type | Description |
---|---|---|
|
|
주소록 이름 |
|
|
도로명 주소 |
|
|
상세 주소 |
|
|
우편번호 |
Example request
POST /users/addressBook HTTP/1.1
Content-Type: application/json
Content-Length: 120
Host: localhost:8080
{"id":1,"addressName":"회사","roadNameAddress":"회사로 123","detailedAddress":"456동 123호","postalCode":"23456"}
Example response
HTTP/1.1 200 OK
2. Successful : delete
request-fields
Path | Type | Description |
---|---|---|
|
|
삭제할 주소의 ID[PK] |
Example request
DELETE /users/addressBook HTTP/1.1
Content-Type: application/json
Content-Length: 8
Host: localhost:8080
{"id":2}
Example response
HTTP/1.1 200 OK
3. Successful : Modification
request-fields
Path | Type | Description |
---|---|---|
|
|
ID |
|
|
주소록 이름 |
|
|
도로명 주소 |
|
|
상세 주소 |
|
|
우편번호 |
Example request
PATCH /users/addressBook HTTP/1.1
Content-Type: application/json
Content-Length: 116
Host: localhost:8080
{"id":1,"addressName":"학교","roadNameAddress":"경기로","detailedAddress":"111동 112호","postalCode":"12346"}
Example response
HTTP/1.1 200 OK
5. 마이페이지
1. Success : get myInfo resource
Example request
GET /users/myInfo HTTP/1.1
Content-Type: application/json
Host: localhost:8080
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 95
{"email":"hong43ok@gmail.com","nickname":"hong43ok","phone":"01012345678","userLevel":"UNAUTH"}
response-fields
Path | Type | Description |
---|---|---|
|
|
회원 이메일 |
|
|
회원 닉네임 |
|
|
회원 휴대폰 번호 |
|
|
이메일 인증 여부 |
현재 로그인되어있는 사용자의 myInfo 리소스를 가져옵니다. |
BRAND API
1. 브랜드 조회
특정 브랜드 조회
response-fields
Path | Type | Description |
---|---|---|
|
|
브랜드 ID |
|
|
브랜드 한글명 |
|
|
브랜드 영문명 |
|
|
브랜드 원본 이미지 경로 |
|
|
브랜드 썸네일 이미지 경로 |
Example request
GET /brands/1 HTTP/1.1
Accept: application/json
Host: localhost:8080
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 337
{"id":1,"nameKor":"브랜드 생성","nameEng":"Brand Create Test","originImagePath":"https://hongjungwan-brands-origin-temp.s3.ap-northeast-2.amazonaws.com/9a9cec61-4647-4cf5-968b-cc0e9a946730.jpg","thumbnailImagePath":"https://hongjungwan-brands-thumbnail-temp.s3.ap-northeast-2.amazonaws.com/9a9cec61-4647-4cf5-968b-cc0e9a946730.jpg"}
브랜드 전체 조회
response-fields
Path | Type | Description |
---|---|---|
|
|
브랜드 정보 배열 |
|
|
브랜드 ID |
|
|
브랜드 한글명 |
|
|
브랜드 영문명 |
|
|
브랜드 원본 이미지 경로 |
|
|
브랜드 썸네일 이미지 경로 |
Example request
GET /brands HTTP/1.1
Accept: application/json
Host: localhost:8080
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 679
[{"id":1,"nameKor":"브랜드 생성","nameEng":"Brand Create Test","originImagePath":"https://hongjungwan-brands-origin-temp.s3.ap-northeast-2.amazonaws.com/9a9cec61-4647-4cf5-968b-cc0e9a946730.jpg","thumbnailImagePath":"https://hongjungwan-brands-thumbnail-temp.s3.ap-northeast-2.amazonaws.com/9a9cec61-4647-4cf5-968b-cc0e9a946730.jpg"},{"id":2,"nameKor":"브랜드 생성2","nameEng":"Brand Create Test2","originImagePath":"https://hongjungwan-brands-origin-temp.s3.ap-northeast-2.amazonaws.com/9a9cec61-4647-4cf5-968b-cc0e9a946730.jpg","thumbnailImagePath":"https://hongjungwan-brands-thumbnail-temp.s3.ap-northeast-2.amazonaws.com/9a9cec61-4647-4cf5-968b-cc0e9a946730.jpg"}]
2. 브랜드 생성
request-fields
Path | Type | Description |
---|---|---|
|
|
저장할 브랜드의 한글명 |
|
|
저장할 브랜드의 영문명 |
request-parts (Optional)
Part | Description |
---|---|
|
저장할 브랜드의 이미지 파일 |
Example request
POST /brands HTTP/1.1
Content-Type: multipart/form-data;charset=utf-8; boundary=6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Accept: application/json
Host: localhost:8080
--6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Disposition: form-data; name=requestDto; filename=requestDto
Content-Type: application/json
{"nameKor":"저장","nameEng":"Save Test","originImagePath":null,"thumbnailImagePath":null}
--6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Disposition: form-data; name=brandImage; filename=brandImage
Content-Type: image/png
sample
--6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm--
Example response
HTTP/1.1 201 Created
3. 브랜드 수정
request-fields
Path | Type | Description |
---|---|---|
|
|
수정할 브랜드의 한글명 |
|
|
수정할 브랜드의 영문명 |
|
|
기존 브랜드 원본 이미지 경로(null이라면 기존 이미지 삭제) |
Example request
PATCH /brands/1 HTTP/1.1
Content-Type: multipart/form-data;charset=utf-8; boundary=6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Accept: application/json
Host: localhost:8080
Example response
HTTP/1.1 200 OK
4. 브랜드 삭제
path-parameters
Parameter | Description |
---|---|
|
삭제할 브랜드의 ID |
Example request
DELETE /brands/1 HTTP/1.1
Host: localhost:8080
Example response
HTTP/1.1 200 OK
PRODUCT API
1. 상품 조회
상품 정보 조회
path-parameters
Parameter | Description |
---|---|
|
조회할 상품의 ID |
response-fields
Path | Type | Description |
---|---|---|
|
|
조회한 상품의 ID |
|
|
조회한 상품의 한글명 |
|
|
조회한 상품의 영문명 |
|
|
조회한 상품의 모델 넘버 |
|
|
조회한 상품의 색상 |
|
|
조회한 상품의 출시일 |
|
|
조회한 상품의 출시가 |
|
|
조회한 상품의 발매 통화 |
|
|
조회한 상품의 사이즈 분류 |
|
|
조회한 상품의 사이즈 단위 |
|
|
조회한 상품의 최소 사이즈 |
|
|
조회한 상품의 최대 사이즈 |
|
|
조회한 상품의 사이즈 간격 |
|
|
조회한 상품의 브랜드 |
|
|
조회한 상품의 이미지 경로 |
|
|
판매 입찰 ID |
|
|
판매 입찰 productID |
|
|
판매 입찰 물품 사이즈 |
|
|
판매 입찰 물품 가격 |
|
|
구매 입찰 ID |
|
|
구매 입찰 productId |
|
|
구매 입찰 물품 사이즈 |
|
|
구매 입찰 물품 가격 |
|
|
완료된 거래의 물품 사이즈 |
|
|
완료된 거래의 물품 가격 |
|
|
거래 완료 시간 |
Example request
GET /products/1 HTTP/1.1
Accept: application/json
Host: localhost:8080
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 983
{"id":1,"nameKor":"덩크 로우","nameEng":"Dunk Low","modelNumber":"DD1391-100","color":"WHITE/BLACK","releaseDate":"2022-11-12","releasePrice":119000,"currency":"KRW","sizeClassification":"MENS","sizeUnit":"MM","minSize":240.0,"maxSize":320.0,"sizeGap":5.0,"resizedImagePath":"https://hongjungwan-brands-origin-temp.s3.ap-northeast-2.amazonaws.com/9a9cec61-4647-4cf5-968b-cc0e9a946730.jpg","brand":{"id":null,"nameKor":"나이키","nameEng":"Nike","originImagePath":"https://hongjungwan-brands-origin-temp.s3.ap-northeast-2.amazonaws.com/9a9cec61-4647-4cf5-968b-cc0e9a946730.jpg","thumbnailImagePath":"https://hongjungwan-brands-thumbnail-temp.s3.ap-northeast-2.amazonaws.com/9a9cec61-4647-4cf5-968b-cc0e9a946730.jpg"},"saleBids":[{"tradeId":5,"productId":1,"productSize":260.0,"price":200000}],"purchaseBids":[{"tradeId":5,"productId":1,"productSize":260.0,"price":300000}],"tradeCompleteInfos":[{"productSize":280.0,"price":300000,"completeTime":"2022-11-12T10:11:11.4975403"}]}
조건 별 상품 전체 조회
request-parameters
Parameter | Description |
---|---|
|
조회할 상품 썸네일의 브랜드 ID |
|
조회할 상품의 검색 키워드 |
|
조회할 상품의 정렬 조건 |
response-fields
Path | Type | Description |
---|---|---|
|
|
조회한 상품의 ID |
|
|
조회한 상품의 썸네일 이미지 경로 |
|
|
조회한 상품의 브랜드 썸네일 이미지 경로 |
|
|
조회한 상품의 한글명 |
|
|
조회한 상품의 영문명 |
|
|
조회한 상품의 즉시 구매 최저가 |
Example request
GET /products?brandId=1&keyword=ka&orderStandard=LOW_PRICE HTTP/1.1
Accept: application/json
Host: localhost:8080
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 661
{"content":[{"id":99,"productThumbnailImagePath":"https://hongjungwan-product-origin-temp.s3.ap-northeast-2.amazonaws.com/ec6e5843-8776-4c60-8132-6283b31c18c7.jpg","brandThumbnailImagePath":"https://hongjungwan-brands-origin-temp.s3.ap-northeast-2.amazonaws.com/9a9cec61-4647-4cf5-968b-cc0e9a946730.jpg","nameKor":"맥","nameEng":"Mac","lowestPrice":500000}],"pageable":{"sort":{"sorted":false,"unsorted":true,"empty":true},"offset":0,"pageSize":10,"pageNumber":0,"paged":true,"unpaged":false},"totalPages":1,"totalElements":1,"last":true,"size":10,"number":0,"sort":{"sorted":false,"unsorted":true,"empty":true},"numberOfElements":1,"first":true,"empty":false}
상품 정렬 기준 조회
response-fields
Path | Type | Description |
---|---|---|
|
|
상품의 정렬 기준 목록 |
Example request
GET /products/order-standards HTTP/1.1
Host: localhost:8080
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 41
["LOW_PRICE","HIGH_PRICE","RELEASE_DATE"]
2. 상품 추가
request-fields
Path | Type | Description |
---|---|---|
|
|
저장할 상품의 한글명 |
|
|
저장할 상품의 영문명 |
|
|
저장할 상품의 모델 넘버 |
|
|
저장할 상품의 색상 |
|
|
저장할 상품의 발매일 |
|
|
저장할 상품의 발매가 |
|
|
저장할 상품의 발매 통화 |
|
|
저장할 상품의 사이즈 분류 |
|
|
저장할 상품의 사이즈 단위 |
|
|
저장할 상품의 최소 사이즈 |
|
|
저장할 상품의 최대 사이즈 |
|
|
저장할 상품의 사이즈 간격 |
|
|
저장할 상품의 브랜드 |
Example request
POST /products HTTP/1.1
Content-Type: multipart/form-data;charset=utf-8; boundary=6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Accept: application/json
Host: localhost:8080
--6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Disposition: form-data; name=requestDto; filename=requestDto
Content-Type: application/json
{"nameKor":"덩크 로우","nameEng":"Dunk Low","modelNumber":"DD1391-100","color":"WHITE/BLACK","releaseDate":"2022-11-12","releasePrice":119000,"currency":"KRW","sizeClassification":"MENS","sizeUnit":"MM","minSize":240.0,"maxSize":320.0,"sizeGap":5.0,"brand":{"id":null,"nameKor":"나이키","nameEng":"Nike","originImagePath":"https://hongjungwan-brands-origin-temp.s3.ap-northeast-2.amazonaws.com/9a9cec61-4647-4cf5-968b-cc0e9a946730.jpg","thumbnailImagePath":"https://hongjungwan-brands-thumbnail-temp.s3.ap-northeast-2.amazonaws.com/9a9cec61-4647-4cf5-968b-cc0e9a946730.jpg"},"originImagePath":"https://hongjungwan-brands-origin-temp.s3.ap-northeast-2.amazonaws.com/9a9cec61-4647-4cf5-968b-cc0e9a946730.jpg","thumbnailImagePath":null,"resizedImagePath":null}
--6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Content-Disposition: form-data; name=productImage; filename=productImage
Content-Type: image/png
sample
--6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm--
Example response
HTTP/1.1 201 Created
3. 상품 정보 수정
request-fields
Path | Type | Description |
---|---|---|
|
|
수정할 상품의 한글명 |
|
|
수정할 상품의 영문명 |
|
|
수정할 상품의 모델 넘버 |
|
|
수정할 상품의 색상 |
|
|
수정할 상품의 발매일 |
|
|
수정할 상품의 발매가 |
|
|
수정할 상품의 발매 통화 |
|
|
수정할 상품의 사이즈 분류 |
|
|
수정할 상품의 사이즈 단위 |
|
|
수정할 상품의 최소 사이즈 |
|
|
수정할 상품의 최대 사이즈 |
|
|
수정할 상품의 사이즈 간격 |
|
|
수정할 상품의 브랜드 |
|
|
기존 상품 원본 이미지 경로(null이라면 기존 이미지 삭제) |
Example request
PATCH /products/1 HTTP/1.1
Content-Type: multipart/form-data;charset=utf-8; boundary=6o2knFse3p53ty9dmcQvWAIx1zInP11uCfbm
Accept: application/json
Host: localhost:8080
Example response
HTTP/1.1 200 OK
4. 상품 삭제
path-parameters
Parameter | Description |
---|---|
|
삭제할 상품의 ID |
Example request
DELETE /products/1 HTTP/1.1
Host: localhost:8080
Example response
HTTP/1.1 200 OK
ADMIN API
회원 전체 조회
response-fields
Path | Type | Description |
---|---|---|
|
|
ID |
|
|
|
|
|
userLevel |
example request
GET /admin/users HTTP/1.1
Accept: application/json
Host: localhost:8080
example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 431
{"content":[{"id":0,"email":"hong43ok@gmail.com0","userLevel":"AUTH"},{"id":1,"email":"hong43ok@gmail.com1","userLevel":"AUTH"}],"pageable":{"sort":{"sorted":false,"unsorted":true,"empty":true},"offset":0,"pageSize":10,"pageNumber":0,"paged":true,"unpaged":false},"totalPages":1,"totalElements":2,"last":true,"size":10,"number":0,"sort":{"sorted":false,"unsorted":true,"empty":true},"numberOfElements":2,"first":true,"empty":false}
회원 조회(IDX)
request-parameters
Parameter | Description |
---|---|
|
검색할 회원의 ID[PK] |
response-fields
Path | Type | Description |
---|---|---|
|
|
ID |
|
|
|
|
|
userLevel |
example request
GET /admin/users?id=1 HTTP/1.1
Accept: application/json
Host: localhost:8080
example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 431
{"content":[{"id":0,"email":"hong43ok@gmail.com0","userLevel":"AUTH"},{"id":1,"email":"hong43ok@gmail.com1","userLevel":"AUTH"}],"pageable":{"sort":{"sorted":false,"unsorted":true,"empty":true},"offset":0,"pageSize":10,"pageNumber":0,"paged":true,"unpaged":false},"totalPages":1,"totalElements":2,"last":true,"size":10,"number":0,"sort":{"sorted":false,"unsorted":true,"empty":true},"numberOfElements":2,"first":true,"empty":false}
회원 정지
example request
POST /admin/users/ban HTTP/1.1
Content-Type: application/json
Content-Length: 27
Host: localhost:8080
{"id":1,"userStatus":"BAN"}
example response
HTTP/1.1 200 OK
CART API
장바구니 조회
response-fields
Path | Type | Description |
---|---|---|
|
|
CartProduct ID |
|
|
상품의 ID[PK] |
|
|
상품 이름(한글) |
|
|
상품 이름(영어 |
|
|
브랜드 생성 날짜 |
|
|
브랜드 정보 수정 날짜 |
|
|
브랜드 ID[PK] |
|
|
브랜드 이름(한글) |
|
|
브랜드 이름(영어) |
|
|
브랜드 이미지 경로 |
|
|
브랜드 이미지 경로(썸네일) |
Example request
GET /carts HTTP/1.1
Host: localhost:8080
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 210
[{"id":1,"productId":2,"nameKor":"조던","nameEng":"Jordan","brand":{"createdDate":null,"modifiedDate":null,"id":3,"nameKor":"나이키","nameEng":"nike","originImagePath":"1234","thumbnailImagePath":"5678"}}]
장바구니 추가
request-fields
Path | Type | Description |
---|---|---|
|
|
상품(Product)의 ID[PK] |
Example request
POST /carts HTTP/1.1
Content-Type: application/json
Content-Length: 8
Host: localhost:8080
{"id":1}
Example response
HTTP/1.1 200 OK
장바구니 삭제
request-fields
Path | Type | Description |
---|---|---|
|
|
카트상품(CartProduct)의 ID[PK] |
Example request
DELETE /carts HTTP/1.1
Content-Type: application/json
Content-Length: 8
Host: localhost:8080
{"id":1}
Example response
HTTP/1.1 200 OK
TRADE API
판매 또는 구매 입찰 시 - 필요한 정보 조회
path-parameters
Parameter | Description |
---|---|
|
물품 ID[PK] |
request-parameters
Parameter | Description |
---|---|
|
신발 사이즈 |
example request
GET /trades/1?size=260.0 HTTP/1.1
Accept: application/json
Host: localhost:8080
Example response
HTTP/1.1 200 OK
HTTP/1.1 200 OK