Get support notice

Prev Next

Available in Classic and VPC

Get the details of the notice on the Support page.

Request

This section describes the request format. The method and URI are as follows:

Method URI
GET /v2/story/{boardId}/{storyId}

Request headers

For information about the headers common to all GAMEPOT 3.0 APIs, see GAMEPOT 3.0 request headers.

Request path parameters

You can use the following path parameters with your request:

Field Type Required Description
boardId String Required Board ID
  • cs_notice (valid value)
storyId String Required Notice ID

Request example

The request example is as follows:

curl --location --request GET 'https://dashboard-api.gamepot.ntruss.com/v2/story/cs_notice/e5d72544-****-****-****-b9cbbfd0859b' \
--header 'x-api-key: {API Key}' \
--header 'x-project-id: {Project ID}' \
--header 'Accept: application/json'

Response

This section describes the response format.

Response body

The response body includes the following data:

Field Type Required Description
required Boolean - Whether it is required
  • true | false
    • true: Required
    • false: Not required
hit Integer - Number of views
_id String - Object ID
title Array - Notice title: title
category_id String - Board ID
status Integer - Notice usage
  • 1 | 0
    • 1: Enabled
    • 0: Disabled
text Array - Notice content: text
project_id String - Project ID
author_id String - Creator ID
id String - Notice ID
createdAt String - Notice creation date and time
  • ISO 8601 format
updatedAt String - Notice modification date and time
  • ISO 8601 format
__v Integer - Version key
Note

_id and __v are fields that can be displayed in the response results but does not affect the service use.

title

The following describes title.

Field Type Required Description
lang String - Language code
value String - Notice title
default Boolean - Whether it is in default language
  • true | false
    • true: Default language
    • false: Not default language

text

The following describes text.

Field Type Required Description
lang String - Language code
value String - Notice content
default Boolean - Whether it is in default language
  • true | false
    • true: Default language
    • false: Not default language

Response status codes

For information about the response status codes common to all GAMEPOT 3.0 APIs, see GAMEPOT 3.0 response status codes.

Response example

The response example is as follows:

{
  "required": false,
  "hit": 0,
  "_id": "68d096fdc9abf71dd89dacac",
  "title": [
    {
      "lang": "ko",
      "value": "Announcement",
      "default": true
    },
    {
      "lang": "en",
      "value": "Announcement",
      "default": false
    }
  ],
  "category_id": "cs_notice",
  "status": 1,
  "text": [
    {
      "lang": "ko",
      "value": "<p>Dear users,</p>\n<p>&nbsp;</p>\n<p>Hi. This is the announcement.</p>\n<p>&nbsp;</p>\n<p>Thank you.</p>",
      "default": true
    },
    {
      "lang": "en",
      "value": "<p>Dear User,</p>\n<p>&nbsp;</p>\n<p>Hello. This article is about the announcement.</p>\n<p>&nbsp;</p>\n<p>Thank you.</p>",
      "default": false
    }
  ],
  "project_id": "fccec9bc-****-****-****-d2df78e0d987",
  "author_id": "b2dfa23b-****-****-****-0f392a4175fb",
  "id": "e5d72544-****-****-****-b9cbbfd0859b",
  "createdAt": "2025-09-22T00:23:25.230Z",
  "updatedAt": "2025-09-26T00:05:32.708Z",
  "__v": 0
}