Skip to content

Sending game parameters🔗

Study the “General Information” and the “Signature Verification” sections first.

This request allows you to send character information to the MRGS server. The current state of its parameters (Save).

Parameters🔗

Parameter Method Value Mandatory Type Description
action GET user_json_data yes string Command
userId GET 87bdfdc480c8b629e157839e75fdf2e0 yes string Character ID
jsonData POST {'level':5, 'nick':'AKEB'} yes string Character parameters as a JSON string

OR

userId is not sent, but jsonData is sent instead as an array where the key is the character ID, and the value is a string with JSON parameters. This way you can send parameters for several characters

Sent when updating data, but no more than once a minute.

Returns an array or error.

Request example🔗

https://mrgs.astrum.team/pub/s2s.php?action=user_json_data&appId=38&format=json&userId=87bdfdc480c8b629e157839e75fdf2e0&hash=b76d359c200aab069c6173a1eb702199

Response example🔗

{
    "status": 0,
    "error": "",
    "result": {
        "87bdfdc480c8b629e157839e75fdf2e0": true
    }
}

Last update: 2025-01-21
Created: 2020-02-17