POST /api/auth/profile/update
Using your personal token, you can update your account info. All parameters are optional. Any unspecified property is left unchanged. To view an example (especially for connections) take a look at /api/user/:id
POST Params
Param: allow_null optional
if true, overwrites all values even if some are set to null (each parameter is no longer optional, useful when having to remove data)
Param: name (max 40) optional
your name as it should be displayed
Param: about optional
profile about in plaintext (max 1500)
Param: about_markdown optional
markdown version of the about info (max 1500)
Param: connections optional
list of connection objects with values: id, display, link
Example of returned JSON
{
"success": true
}