Fumadocs

List of Achievements

Retrieves the list of game achievements the user has earned.

GET
/api/game-link/achieve

Authorization

AuthorizationRequiredBearer <token>

In: header

Response Body

조회 성공시.

TypeScript Definitions

Use the response body type in TypeScript.

sizeRequirednumber

항목 개수

achievesRequiredarray<object>

항목들

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?