Skip to content

[GET] 버킷 상세 조회

Gyunny edited this page Jun 6, 2021 · 5 revisions
메소드 경로 설명
GET /api/v2/buckets/{bucketId} 버킷 상세 조회

스크린샷 2021-06-06 오후 12 43 50

Request Header

{
    "Content-Type": "application/json",
    "accessToken": "access Token"
}

Response

< Success >

  • 버킷 상세 조회
{
    "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"
            }
        ]
    }
}

< Fail >

  • 서버 에러
{
  "message": "Server Error",
  "status": 500,
  "errors": [],
  "code": "C004"
}