Grid-API
+Grid 정보 조회
+HTTP request
+GET /grid HTTP/1.1
+Content-Type: application/json;charset=UTF-8
+Authorization: access token
+Host: localhost:8080
+Request headers
+Name | +Description | +
---|---|
|
+access token |
+
HTTP response
+HTTP/1.1 200 OK
+Content-Type: application/json;charset=UTF-8
+Content-Length: 252
+
+{
+ "gridCheckList" : [ {
+ "gridNum" : 1,
+ "check" : true
+ }, {
+ "gridNum" : 2,
+ "check" : true
+ }, {
+ "gridNum" : 3,
+ "check" : true
+ }, {
+ "gridNum" : 4,
+ "check" : true
+ } ],
+ "gridImageUrl" : "imageurl"
+}
+Response fields
+Path | +Type | +Description | +
---|---|---|
|
+
|
+그리드 체크 여부 |
+
|
+
|
+그리드 번호 |
+
|
+
|
+그리드 이미지 링크 |
+
+
Stamp 정보 조회
+HTTP request
+GET /grid/stamp HTTP/1.1
+Content-Type: application/json;charset=UTF-8
+Authorization: access token
+Host: localhost:8080
+Request headers
+Name | +Description | +
---|---|
|
+access token |
+
HTTP response
+HTTP/1.1 200 OK
+Content-Type: application/json;charset=UTF-8
+Content-Length: 79
+
+{
+ "content" : [ {
+ "stampId" : 1,
+ "imageUrl" : "imageurl"
+ } ]
+}
+Response fields
+Path | +Type | +Description | +
---|---|---|
|
+
|
+스탬프 아이디 |
+
|
+
|
+스탬프 이미지 링크 |
+
+