POST data format

Certain methods use the HTTP POST method to send data to the server. The client must format all POST data into the JSON format.

For example, the method ValidateProfileData requires two POST parameters: the regCode and the demog. The POST data example:

{
    'regCode': 'value'
    'demog': {
        /* properties */
    }
}