Replicate Player
    • PDF

    Replicate Player

    • PDF

    Article summary

    The following describes how to replicate an existing a player.

    Requests

    POST {API_URL}/players/{player_no}/clone
    

    Request Parameters

    Field nameRequirement statusTypeRestrictionsDescription
    player_noYIntegerPath ParameterPlayer number
    nameYStringEnglish letters and numbers only. Must be between 3 and 30 characters in length.Player’s name to create
    Enable to verify it through the "Verify Player Name" API
    versionYStringLatest default versionSDK version list can be viewed through API
    auto_updateNStringdefault "N"Automatic updates (Y/N)

    Success code

    HttpStatusCodeCodeMessage
    200200ok

    Errors

    HttpStatusCodeCodeMessageDescription
    2004100No version information.
    2004601Query string player_no is missing.
    2004801No player information.
    2004802This player already exists.
    2004803The number of players exceeded the limit.Limited to 1 when free
    2004805The player name already exists.

    Request Examples

    POST /api/v1/player
    HOST: vpe.apigw.ntruss.com
    Content-Type: application/json
    x-ncp-apigw-timestamp:1521787414578
    x-ncp-iam-access-key:6uxz1nKkcYwUjWRG5Q1V7NsW0i5jErlu2NjBXXgy
    x-ncp-apigw-signature-v2:iJFK773KH0WwQ79PasqJ+ZGixtpDQ/abS57WGQdld2M=
    x-ncp-region_code:KR
    
    Request body
    {
      "auto_update": "N",
      "name": "testVPE",
      "version": "1.0.0"
    }
    

    Response examples

    HTTP/1.1 200 OK
    Date: Fri, 26 Feb 2021 09:53:32 GMT
    Content-Type: application/json;charset=utf-8
    Connection: keep-alive
    Access-Control-Allow-Origin: *
    x-ncp-trace-id: 36c9k60om4p3238cpmc9gm4cj4
    
    // Upon success
    {
      "code": "200",
      "message": "ok"
    }
    
    // Upon failure
    "error": {
        "errorCode": "4802",
        "message": "This player already exists."
      }
    }
    

    Was this article helpful?

    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.