이용내역 - Willson-2019/Willson-Server GitHub Wiki

URL

[GET] ~/api/v1/asker/mypage/offer/transaction

REQUEST PARAMETER NAME DESCRIPTION
header x-token 엑세스 토큰 access token

응답예시

성공

{
    "code": "success",
    "message": "success",
    "data": [
        {
            "amount": "꿀단지 14개",
            "total": "남은 꿀단지 326개",
            "action": "환급",
            "date": "20.05.22"
        },
        {
            "amount": "꿀단지 14개",
            "total": "남은 꿀단지 312개",
            "action": "사용",
            "date": "20.05.22"
        },
        {
            "amount": "꿀단지 7개",
            "total": "남은 꿀단지 326개",
            "action": "구매",
            "date": "20.05.22"
        },
        {
            "amount": "꿀단지 12개",
            "total": "남은 꿀단지 319개",
            "action": "구매",
            "date": "20.05.22"
        },
        {
            "amount": "꿀단지 12개",
            "total": "남은 꿀단지 319개",
            "action": "구매",
            "date": "20.05.22"
        },
        {
            "amount": "꿀단지 12개",
            "total": "남은 꿀단지 319개",
            "action": "구매",
            "date": "20.05.22"
        },
        {
            "amount": "꿀단지 12개",
            "total": "남은 꿀단지 307개",
            "action": "구매",
            "date": "20.05.22"
        },
        {
            "amount": "꿀단지 14개",
            "total": "남은 꿀단지 295개",
            "action": "구매",
            "date": "20.05.22"
        },
        {
            "amount": "꿀단지 14개",
            "total": "남은 꿀단지 281개",
            "action": "구매",
            "date": "20.05.22"
        },
        {
            "amount": "꿀단지 14개",
            "total": "남은 꿀단지 267개",
            "action": "구매",
            "date": "20.05.22"
        },
        {
            "amount": "꿀단지 14개",
            "total": "남은 꿀단지 253개",
            "action": "구매",
            "date": "20.05.22"
        },
        {
            "amount": "꿀단지 14개",
            "total": "남은 꿀단지 239개",
            "action": "구매",
            "date": "20.05.22"
        },
        {
            "amount": "꿀단지 14개",
            "total": "남은 꿀단지 225개",
            "action": "구매",
            "date": "20.05.22"
        },
        {
            "amount": "꿀단지 14개",
            "total": "남은 꿀단지 211개",
            "action": "구매",
            "date": "20.05.22"
        },
        {
            "amount": "꿀단지 14개",
            "total": "남은 꿀단지 197개",
            "action": "구매",
            "date": "20.05.22"
        },
        {
            "amount": "꿀단지 14개",
            "total": "남은 꿀단지 183개",
            "action": "구매",
            "date": "20.05.22"
        },
        {
            "amount": "꿀단지 14개",
            "total": "남은 꿀단지 169개",
            "action": "구매",
            "date": "20.05.22"
        }
    ]
}

access token이 만료된 경우

{
    "code": "access_token_expired",
    "message": "Access token expired"
}

결과를 찾지 못한 경우

{
    "code": "not_found",
    "message": "Result not found"
}