-
Notifications
You must be signed in to change notification settings - Fork 0
[GET] 버킷 상세 조회
Gyunny edited this page Jun 6, 2021
·
5 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | /api/v2/buckets/{bucketId} | 버킷 상세 조회 |
{
"Content-Type": "application/json",
"accessToken": "access Token"
}
- 버킷 상세 조회
{
"status": 200,
"message": "버킷 상세 조회 성공입니다",
"data": {
"bucket": {
"id": 1,
"bucketName": "규니",
"createdDate": "2021-06-02 04:35:42",
"endDate": "2020-02-02 00:00:00",
"bucketState": 2,
"categoryId": 2,
"fin": true,
"bookmark": true
},
"images": [
{
"imageUrl": "111"
},
{
"imageUrl": "222"
}
],
"tags": [
{
"id": 1,
"tagName": "태그1"
}
],
"bucketTimelines": [
{
"content": "2021-06-01 00:00:00",
"modifiedDate": "2021-06-05"
},
{
"content": "2021-06-01 00:00:00",
"modifiedDate": "2021-06-05"
}
]
}
}
- 서버 에러
{
"message": "Server Error",
"status": 500,
"errors": [],
"code": "C004"
}