MENU
      リーダーボード
        • PDF

        リーダーボード

        • PDF

        記事の要約

        リーダーボード API

        リーダーボードユーザースコア登録 API

        Request

        • Method : POST
        • URI : https://gamepot.apigw.ntruss.com/gpapps/v2/leaderboardlogs
        POST
        url : https://gamepot.apigw.ntruss.com/gpapps/v2/leaderboardlogs
        Header : 'content-type: application/json'
        Header 'x-api-key: 86dcgffae0xxxxxxxxxxxxxx'
        Header : 'x-project-id: ec8231b2-6b20-4ad1-xxxx-xxxxxxxxx'
        data:
        {
             "leaderboardId" : "leaderboardId",
            "userId" : "70045665-f64a-45c0-xxxx-xxxxxxxxx",
            "score": 10,
            "subscore": 0,
            "metadata": "{\"key\":\"value\"}"
        }
        Plain text
        HeaderTypeRequiredDescription
        X-API-KEYStringOGAMEPOTで発行する認証キー
        X-PROJECT-IDStringOダッシュボードプロジェクト ID
        AttributeTypeRequiredDescription
        leaderboardIdStringOダッシュボードで作成したリーダーボード固有 ID
        userIdStringOユーザー ID
        scoreIntegerXスコア
        subscoreIntegerXサブスコア(必須でない)
        metadataStringX追加情報

        Response

        成功

        {
           "leaderboardlog": {
                "project_id": "ec8231b2-6b20-4ad1-xxxx-xxxxxxxxx",
                "id": "TGVhZGVyYm9hcmRMb2c6NjNkMzRhYTgxxxxxxxxx",
                "user_id": "70045665-f64a-45c0-xxxx-xxxxxxxxx",
                "score": 10,
                "subscore": 0,
                "metadata": "{\"key\":\"value\"}",
                "expiredAt": "2023-01-30T20:00:00-08:00"
            }
        }
        JavaScript
        AttributeTypeDescription
        statusInt結果値 (-1 失敗)
        messageStringエラーメッセージ
        leaderboardlog.project_idStringプロジェクト ID
        leaderboardlog.idString入力 ID
        leaderboardlog.user_idStringユーザー ID
        leaderboardlog.scoreIntスコア
        leaderboardlog.subscoreIntサブスコア
        leaderboardlog.metadataIntユーザー定義データ
        leaderboardlog.expiredAtString満了日

        失敗

        {
            "status": -1,
            "message": "登録失敗"
        }
        JavaScript
        AttributeTypeDescription
        codeInt結果値 (1: 成功、失敗時 Error code参照)
        errorStringエラー内容

        リーダーボードユーザースコア取得 API

        Request

        • Method : GET
        • URI : https://gamepot.apigw.ntruss.com/gpapps/v2/leaderboardlogs
        GET
        url : https://gamepot.apigw.ntruss.com/gpapps/v2/leaderboardlogs
        Header : 'content-type: application/json'
        Header 'x-api-key: 86dcgffae0xxxxxxxxxxxxxx'
        Header : 'x-project-id: ec8231b2-6b20-4ad1-xxxx-xxxxxxxxx'
        data:
        {
             "leaderboardId" : "leaderboardId",
            "offset": 0,
            "per_page": 20
        }
        Plain text
        HeaderTypeRequiredDescription
        X-API-KEYStringOGAMEPOTで発行する認証キー
        X-PROJECT-IDStringOダッシュボードプロジェクト ID
        AttributeTypeRequiredDescription
        leaderboardIdStringOダッシュボードで作成したリーダーボード固有 ID
        offsetIntegerXOFFSET
        per_pageIntegerXLIMIT

        Response

        成功

        [
            {
                "rank": 1,
                "leaderboard_id": "leaderboardId",
                "user_id": "9c510599-f77a-4e3e-xxxxxx-xxxxxxx",
                 "project_id": "ec8231b2-6b20-4ad1-9c59-xxxxxxxxxxx",
                "score": 1100,
                "subscore": 0,
                "metadata": "{\"key\":\"value\"}",
                "expiredAt": "2023-01-30T20:00:00-08:00",
                "updatedAt": "2023-01-26T19:46:07-08:00"
            },
            {
                "rank": 2,
                "leaderboard_id": "leaderboardId",
                "user_id": "63ae4ac9-a0f4-4fba-xxxx-xxxxxxxx",
                "project_id": "ec8231b2-6b20-4ad1-9c59-xxxxxxxxxxx",
                "score": 1000,
                "subscore": 0,
                "metadata": "{\"key\":\"value\"}",
                "expiredAt": "2023-01-30T20:00:00-08:00",
                "updatedAt": "2023-01-26T19:45:58-08:00"
            },
        ]
        JavaScript
        AttributeTypeDescription
        statusInt結果値 (-1 失敗)
        messageStringエラーメッセージ
        rankIntランキング
        project_idStringプロジェクト ID
        leaderboardIdStringダッシュボードで作成したリーダーボード固有 ID
        user_idStringユーザー ID
        scoreIntスコア
        subscoreIntサブスコア
        metadataIntユーザー定義データ
        updatedAtStringアップデート日
        expiredAtString満了日

        失敗

        {
            "status": -1,
            "message": "照会失敗"
        }
        JavaScript
        AttributeTypeDescription
        statusInt結果値 (失敗時 Error code参照)
        messageStringエラー内容

        特定の検索キーワードを利用したスコア取得 API

        Request

        • Method : GET
        • URI : https://gamepot.apigw.ntruss.com/gpapps/v2/leaderboardlogs

        IDによる検索方法

        GET
        url : https://gamepot.apigw.ntruss.com/gpapps/v2/leaderboardlogs
        Header : 'content-type: application/json'
        Header 'x-api-key: 86dcgffae0xxxxxxxxxxxxxx'
        Header : 'x-project-id: ec8231b2-6b20-4ad1-xxxx-xxxxxxxxx'
        data:
        {
             "leaderboardId" : "leaderboardId",
             "search" : "user_id",
             "query" : "f1deb103-cae1-47dd-b0aa-xxxxxxxxxx",
            "offset": 0,
            "per_page": 20
        }
        JavaScript

        SCORE範囲による検索方法

        GET
        url : https://gamepot.apigw.ntruss.com/gpapps/v2/leaderboardlogs
        Header : 'content-type: application/json'
        Header 'x-api-key: 86dcgffae0xxxxxxxxxxxxxx'
        Header : 'x-project-id: ec8231b2-6b20-4ad1-xxxx-xxxxxxxxx'
        data:
        {
             "leaderboardId" : "leaderboardId",
             "search" : "score",
             "query" : "99-120",
            "offset": 0,
            "per_page": 20
        }
        JavaScript
        HeaderTypeRequiredDescription
        X-API-KEYStringOGAMEPOTで発行する認証キー
        X-PROJECT-IDStringOダッシュボードプロジェクト ID
        AttributeTypeRequiredDescription
        leaderboardIdStringOダッシュボードで作成したリーダーボード固有 ID
        offsetIntegerXOFFSET
        per_pageIntegerXLIMIT

        Response

        成功

        [
            {
                "rank": 5,
                "leaderboard_id": "leaderboardId",
                "user_id": "f1deb103-cae1-47dd-b0aa-xxxxxx",
                "project_id": "ec8231b2-6b20-4ad1-9c59-xxxxxxxxx",
                "score": 99,
                "subscore": 100,
                "metadata": "{\"key\":\"value\"}",
                "expiredAt": "2023-01-30T20:00:00-08:00",
                "updatedAt": "2023-01-26T16:23:39-08:00"
            }
        ]
        JavaScript

        失敗

        {
            "status": -1,
            "message": "エラーメッセージ"
        }
        JavaScript
        AttributeTypeDescription
        statusInt結果値 (失敗時 Error code参照)
        messageStringエラー内容

        リーダーボード情報およびユーザー数取得 API

        Request

        • Method : GET
        • URI : https://gamepot.apigw.ntruss.com/gpapps/v2/leaderboards?/{leaderboardId}?offset=0&per_page=10
        GET
        url : https://gamepot.apigw.ntruss.com/gpapps/v2/leaderboard
        Header 'x-api-key: 86dcgffae0xxxxxxxxxxxxxx'
        Header : 'x-project-id: ec8231b2-6b20-4ad1-xxxx-xxxxxxxxx'
        Plain text
        HeaderTypeRequiredDescription
        X-API-KEYStringOGAMEPOTで発行する認証キー
        X-PROJECT-IDStringOダッシュボードプロジェクト ID
        AttributeTypeRequiredDescription
        leaderboardIdStringOダッシュボードで作成したリーダーボード固有 ID
        offsetIntegerXOFFSET
        per_pageIntegerXLIMIT

        Response

        成功

        [
            {
                "status": true,
                "ranking": "best",
                "tie_breaking": "first",
                "id": "TGVhZGVyYm9hcmQ6YXNkYWRhZHNhZHNh",
                "name": "test",
                "description": "TEST",
                "descending": true,
                "resetDay": 0,
                "resetTime": "00:00",
                "resetDate": 1,
                "startedAt": "2023-01-25T12:09:47-08:00",
                "timezone": "America/Kralendijk",
                "project_id": "ec8231b2-6b20-4ad1-9c59-8e183087a742",
                "period_type": "monthly",
                "icon_url": "sdadasds",
                "user_count": 28,
            }
        ]
        JavaScript
        AttributeTypeRequiredDescription
        idStringOリーダーボード固有 ID
        projectIdStringOプロジェクト ID
        statusBooleanO状態
        is_check_userBooleanXユーザー IDチェックの有無
        nameStringXリーダーボード名
        descriptionStringX説明
        icon_urlStringXアイコン URL
        descendingBooleanXソート
        startedAtStringX開始日
        expiredAtStringX終了日(seasonの場合)
        timezoneStringXタイムゾーン
        period_typeStringX周期(daily、weekly、monthly、season)
        resetDayIntegerX初期化曜日1: 日曜日、2. 月曜日、3. 火曜日、4. 水曜日、5. 木曜日、6. 金曜日、7. 土曜日(periodTypeが weeklyの場合)
        resetTimeStringX初期化時間
        resetDateIntegerX初期化日1~31(periodTypeが monthlyの場合)
        rankingStringOランキングアップデート基準(latest、accumulated、best)
        tie_breakingStringO同点者処理基準(first、last)

        失敗

        {
            "status": -1,
            "message": "エラーメッセージ"
        }
        JavaScript
        AttributeTypeDescription
        statusInt結果値 (失敗時 Error code参照)
        messageStringエラー内容

        リーダーボードでユーザースコア照会 API

        Request

        • Method : GET
        • URI : https://gamepot.apigw.ntruss.com/gpapps/v2/leaderboard/{leaderboardID}/user{userid}
        GET
        url : https://gamepot.apigw.ntruss.com/gpapps/v2/leaderboard
        Header 'x-api-key: 86dcgffae0xxxxxxxxxxxxxx'
        Header : 'x-project-id: ec8231b2-6b20-4ad1-xxxx-xxxxxxxxx'
        Plain text
        HeaderTypeRequiredDescription
        X-API-KEYStringOGAMEPOTで発行する認証キー
        X-PROJECT-IDStringOダッシュボードプロジェクト ID
        AttributeTypeRequiredDescription
        leaderboardIDStringOダッシュボードで作成したリーダーボード固有 ID
        useridStringOユーザー ID

        Response

        成功

        {
        	"rank": 1,
        	"leaderboard_id": "leaderboardID",
        	"user_id": "8f372bf4-XXXX-XXXX-XXXX-XXXXXXXX",
        	"project_id": "ec8231b2-6b20-4ad1-XXXX-XXXXXXXX",
        	"score": 1,
        	"prev_score": null,
        	"subscore": 10,
        	"metadata": "",
        	"user_count": 2,
        	"expiredAt": "2023-01-30T17:00:00+09:00",
        	"updatedAt": "2023-01-30T11:55:37+09:00"
        }
        JavaScript
        AttributeTypeDescription
        statusInt結果値 (-1 失敗)
        messageStringエラーメッセージ
        rankIntランキング
        project_idStringプロジェクト ID
        leaderboardIdStringダッシュボードで作成したリーダーボード固有 ID
        user_idStringユーザー ID
        scoreIntスコア
        subscoreIntサブスコア
        metadataIntユーザー定義データ
        updatedAtStringアップデート日
        expiredAtString満了日

        失敗

        {
            "status": -1,
            "message": "エラーメッセージ"
        }
        JavaScript
        AttributeTypeDescription
        statusInt結果値 (失敗時 Error code参照)
        messageStringエラー内容

        リーダーボード登録ユーザー削除 API

        Request

        • Method : DELETE
        • URI : https://gamepot.apigw.ntruss.com/gpapps/v2/leaderboardlogs
        DELETE
        url : https://gamepot.apigw.ntruss.com/gpapps/v2/leaderboardlogs
        Header : 'content-type: application/json'
        Header 'x-api-key: 86dcgffae0xxxxxxxxxxxxxx'
        Header : 'x-project-id: ec8231b2-6b20-4ad1-xxxx-xxxxxxxxx'
        data:
        {
             "leaderboardId" : "leaderboardId",
             "userId" : "560963c3-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
        }
        Plain text
        HeaderTypeRequiredDescription
        X-API-KEYStringOGAMEPOTで発行する認証キー
        X-PROJECT-IDStringOダッシュボードプロジェクト ID
        AttributeTypeRequiredDescription
        leaderboardIdStringXリーダーボード ID
        userIdStringXリーダーボードユーザー ID

        Response

        成功

        [
            {
                "leaderboard_id": "leaderboardId",
                "user_id": "f1deb103-cae1-47dd-b0aa-xxxxxx",
                "project_id": "ec8231b2-6b20-4ad1-9c59-xxxxxxxxx",
                "score": 99,
                "subscore": 100,
                "metadata": "{\"key\":\"value\"}",
                "expiredAt": "2023-01-30T20:00:00-08:00",
                "updatedAt": "2023-01-26T16:23:39-08:00"
            }
        ]
        JavaScript
        AttributeTypeDescription
        statusInt結果値 (-1 失敗)
        messageStringエラーメッセージ
        project_idStringプロジェクト ID
        leaderboardIdStringダッシュボードで作成したリーダーボード固有 ID
        user_idStringユーザー ID
        scoreIntスコア
        subscoreIntサブスコア
        metadataIntユーザー定義データ
        updatedAtStringアップデート日
        expiredAtString満了日

        失敗

        {
            "status": -1,
            "message": "エラーメッセージ"
        }
        JavaScript
        AttributeTypeDescription
        statusInt結果値 (失敗時 Error code参照)
        messageStringエラー内容

        リーダーボード登録 API

        Request

        • Method : POST
        • URI : https://gamepot.apigw.ntruss.com/gpapps/v2/leaderboards
        POST
        url : https://gamepot.apigw.ntruss.com/gpapps/v2/leaderboards
        Header : 'content-type: application/json'
        Header 'x-api-key: 86dcgffae0xxxxxxxxxxxxxx'
        Header : 'x-project-id: ec8231b2-6b20-4ad1-xxxx-xxxxxxxxx'
        data:
        {
            "id" : "leaderboardId",
            "status": true,
            "name": "name",
            "description": "description",
            "iconUrl" : "icon_url",
            "descending": true,
            "startedAt" : "2023-01-22 13:00:00",
            "timezone" : "Asia/Seoul",
            "periodType" : "weekly",
            "resetDay": 1,
            "resetDate": 1,
            "resetTime" : "00:01:01",
            "ranking" : "latest",
            "tie_breaking" : "first"
        }
        Plain text
        HeaderTypeRequiredDescription
        X-API-KEYStringOGAMEPOTで発行する認証キー
        X-PROJECT-IDStringOダッシュボードプロジェクト ID
        AttributeTypeRequiredDescription
        idStringOリーダーボード固有 ID
        projectIdStringOプロジェクト ID
        statusBooleanO状態
        is_check_userBooleanXユーザー IDチェックの有無
        nameStringXリーダーボード名
        descriptionStringX説明
        iconUrlStringXアイコン URL
        descendingBooleanXソート
        startedAtStringX開始日
        expiredAtStringX終了日(seasonの場合)
        timezoneStringXタイムゾーン
        period_typeStringX周期(daily、weekly、monthly、season)
        resetDayIntegerX初期化曜日1: 日曜日、2. 月曜日、3. 火曜日、4. 水曜日、5. 木曜日、6. 金曜日、7. 土曜日(periodTypeが weeklyの場合)
        resetTimeStringX初期化時間
        resetDateIntegerX初期化日1~31(periodTypeが monthlyの場合)
        rankingStringOランキングアップデート基準(latest、accumulated、best)
        tie_breakingStringO同点者処理基準(first、last)

        Response

        成功

        {
           "leaderboard": {
                "status": true,
                "is_check_user": true,
                "ranking": "latest",
                "tie_breaking": "first",
                "id": "TGVhZGVyYm9hcmQ6ZHNzZGFkMTIyMjIyMTJhZA==",
                "name": "name",
                "description": "description",
                "descending": true,
                "resetDay": 1,
                "resetTime": "00:01:01",
                "resetDate": 1,
                "startedAt": "2023-01-22T13:00:00-08:00",
                "expiredAt": "2023-11-22T13:00:00-08:00",
                "timezone": "Asia/Seoul",
                "project_id": "ec8231b2-6b20-4ad1-9c59-8e183087a742",
                "period_type": "weekly",
                "icon_url": "icon_url",
                "user_count": null,
                "updatedAt": "2023-02-01T15:52:24-08:00",
                "createdAt": "2023-02-01T15:52:24-08:00"
            }
        }
        JavaScript
        AttributeTypeRequiredDescription
        idStringOリーダーボード固有 ID
        projectIdStringOプロジェクト ID
        statusBooleanO状態
        is_check_userBooleanXユーザー IDチェックの有無
        nameStringXリーダーボード名
        descriptionStringX説明
        icon_urlStringXアイコン URL
        descendingBooleanXソート
        startedAtStringX開始日
        expiredAtStringX終了日(seasonの場合)
        timezoneStringXタイムゾーン
        period_typeStringX周期(daily、weekly、monthly、season)
        resetDayIntegerX初期化曜日1: 日曜日、2. 月曜日、3. 火曜日、4. 水曜日、5. 木曜日、6. 金曜日、7. 土曜日(periodTypeが weeklyの場合)
        resetTimeStringX初期化時間
        resetDateIntegerX初期化日1~31(periodTypeが monthlyの場合)
        rankingStringOランキングアップデート基準(latest、accumulated、best)
        tie_breakingStringO同点者処理基準(first、last)

        失敗

        "status": -1,
        "message": "エラーメッセージ"
        JavaScript
        AttributeTypeDescription
        codeInt結果値 (1: 成功、失敗時 Error code参照)
        errorStringエラー内容

        リーダーボード変更 API

        Request

        • Method : PUT
        • URI : https://gamepot.apigw.ntruss.com/gpapps/v2/leaderboards/{leaderboardId}
        PUT
        url : https://gamepot.apigw.ntruss.com/gpapps/v2/leaderboards/{leaderboardId}
        Header : 'content-type: application/json'
        Header 'x-api-key: 86dcgffae0xxxxxxxxxxxxxx'
        Header : 'x-project-id: ec8231b2-6b20-4ad1-xxxx-xxxxxxxxx'
        data:
        {
            "status": true,
            "name": "name",
            "description": "description",
            "iconUrl" : "icon_url",
            "descending": true,
            "startedAt" : "2023-01-22 13:00:00",
            "timezone" : "Asia/Seoul",
            "periodType" : "weekly",
            "resetDay": 1,
            "resetDate": 1,
            "resetTime" : "00:01:01",
            "ranking" : "latest",
            "tie_breaking" : "first"
        }
        Plain text
        HeaderTypeRequiredDescription
        X-API-KEYStringOGAMEPOTで発行する認証キー
        X-PROJECT-IDStringOダッシュボードプロジェクト ID
        AttributeTypeRequiredDescription
        leaderboardIdStringOリーダーボード固有 ID
        statusBooleanO状態
        is_check_userBooleanXユーザー IDチェックの有無
        nameStringXリーダーボード名
        descriptionStringX説明
        icon_urlStringXアイコン URL
        descendingBooleanXソート
        startedAtStringX開始日
        expiredAtStringX終了日(seasonの場合)
        timezoneStringXタイムゾーン
        period_typeStringX周期(daily、weekly、monthly、season)
        resetDayIntegerX初期化曜日1: 日曜日、2. 月曜日、3. 火曜日、4. 水曜日、5. 木曜日、6. 金曜日、7. 土曜日(periodTypeが weeklyの場合)
        resetTimeStringX初期化時間
        resetDateIntegerX初期化日1~31(periodTypeが monthlyの場合)
        rankingStringOランキングアップデート基準(latest、accumulated、best)
        tie_breakingStringO同点者処理基準(first、last)

        Response

        成功

        {
           "leaderboard": {
                "status": true,
                "is_check_user": true,
                "ranking": "latest",
                "tie_breaking": "first",
                "id": "TGVhZGVyYm9hcmQ6ZHNzZGFkMTIyMjIyMTJhZA==",
                "name": "name",
                "description": "description",
                "descending": true,
                "resetDay": 1,
                "resetTime": "00:01:01",
                "resetDate": 1,
                "startedAt": "2023-01-22T13:00:00-08:00",
                "expiredAt": "2023-11-22T13:00:00-08:00",
                "timezone": "Asia/Seoul",
                "project_id": "ec8231b2-6b20-4ad1-9c59-8e183087a742",
                "period_type": "weekly",
                "icon_url": "icon_url",
                "user_count": null,
                "updatedAt": "2023-02-01T15:52:24-08:00",
                "createdAt": "2023-02-01T15:52:24-08:00"
            }
        }
        JavaScript
        AttributeTypeRequiredDescription
        idStringOリーダーボード固有 ID
        projectIdStringOプロジェクト ID
        statusBooleanO状態
        is_check_userBooleanXユーザー IDチェックの有無
        nameStringXリーダーボード名
        descriptionStringX説明
        icon_urlStringXアイコン URL
        descendingBooleanXソート
        startedAtStringX開始日
        expiredAtStringX終了日(seasonの場合)
        timezoneStringXタイムゾーン
        period_typeStringX周期(daily、weekly、monthly、season)
        resetDayIntegerX初期化曜日1: 日曜日、2. 月曜日、3. 火曜日、4. 水曜日、5. 木曜日、6. 金曜日、7. 土曜日(periodTypeが weeklyの場合)
        resetTimeStringX初期化時間
        resetDateIntegerX初期化日1~31(periodTypeが monthlyの場合)
        rankingStringOランキングアップデート基準(latest、accumulated、best)
        tie_breakingStringO同点者処理基準(first、last)

        失敗

        "status": -1,
        "message": "エラーメッセージ"
        JavaScript
        AttributeTypeDescription
        codeInt結果値 (1: 成功、失敗時 Error code参照)
        errorStringエラー内容

        リーダーボード削除 API

        Request

        • Method : DELETE
        • URI : https://gamepot.apigw.ntruss.com/gpapps/v2/leaderboards/{leaderboardId}
        DELETE
        url : https://gamepot.apigw.ntruss.com/gpapps/v2/leaderboards/leaderboardId
        Header 'x-api-key: 86dcgffae0xxxxxxxxxxxxxx'
        Header : 'x-project-id: ec8231b2-6b20-4ad1-xxxx-xxxxxxxxx'
        Plain text
        HeaderTypeRequiredDescription
        X-API-KEYStringOGAMEPOTで発行する認証キー
        X-PROJECT-IDStringOダッシュボードプロジェクト ID
        AttributeTypeRequiredDescription
        leaderboardIdStringOリーダーボード固有 ID

        Response

        成功

        {
           "leaderboard": {
                "status": true,
                "is_check_user": true,
                "ranking": "latest",
                "tie_breaking": "first",
                "id": "TGVhZGVyYm9hcmQ6ZHNzZGFkMTIyMjIyMTJhZA==",
                "name": "name",
                "description": "description",
                "descending": true,
                "resetDay": 1,
                "resetTime": "00:01:01",
                "resetDate": 1,
                "startedAt": "2023-01-22T13:00:00-08:00",
                "expiredAt": "2023-11-22T13:00:00-08:00",
                "timezone": "Asia/Seoul",
                "project_id": "ec8231b2-6b20-4ad1-9c59-8e183087a742",
                "period_type": "weekly",
                "icon_url": "icon_url",
                "user_count": null,
                "updatedAt": "2023-02-01T15:52:24-08:00",
                "createdAt": "2023-02-01T15:52:24-08:00"
            }
        }
        JavaScript

        成功

        AttributeTypeRequiredDescription
        idStringOリーダーボード固有 ID
        projectIdStringOプロジェクト ID
        statusBooleanO状態
        is_check_userBooleanXユーザー IDチェックの有無
        nameStringXリーダーボード名
        descriptionStringX説明
        icon_urlStringXアイコン URL
        descendingBooleanXソート
        startedAtStringX開始日
        expiredAtStringX終了日(seasonの場合)
        timezoneStringXタイムゾーン
        period_typeStringX周期(daily、weekly、monthly、season)
        resetDayIntegerX初期化曜日1: 日曜日、2. 月曜日、3. 火曜日、4. 水曜日、5. 木曜日、6. 金曜日、7. 土曜日(periodTypeが weeklyの場合)
        resetTimeStringX初期化時間
        resetDateIntegerX初期化日1~31(periodTypeが monthlyの場合)
        rankingStringOランキングアップデート基準(latest、accumulated、best)
        tie_breakingStringO同点者処理基準(first、last)

        失敗

        "status": -1,
        "message": "エラーメッセージ"
        JavaScript
        AttributeTypeDescription
        codeInt結果値 (1: 成功、失敗時 Error code参照)
        errorStringエラー内容

        この記事は役に立ちましたか?

        Changing your password will log you out immediately. Use the new password to log back in.
        First name must have atleast 2 characters. Numbers and special characters are not allowed.
        Last name must have atleast 1 characters. Numbers and special characters are not allowed.
        Enter a valid email
        Enter a valid password
        Your profile has been successfully updated.