Fumadocs

List of Achievements

Retrieves the list of game achievements the user has earned.

GET
/api/game-link/achieve

Authorization

AuthorizationRequiredBearer <token>

In: header

curl -X GET "https://example.com/api/game-link/achieve" \
  -H "Authorization: Bearer <token>"

조회 성공시.

{
  "size": 1,
  "achieves": [
    {
      "id": "happy_end",
      "name": "해피엔딩",
      "desc": "해피엔딩 보기.",
      "img": "abcd...",
      "regDate": 1671021004000,
      "statId": "minsu_clear",
      "targetStatVal": 10
    }
  ]
}

How is this guide?