#
Updating profiles
Users can only update the name of their profiles. To update a profile, use the following endpoint:
PUT /api/profile/{serial}
With {serial}
being the serial of the profile to update.
The request body must include a JSON object with the following fields:
{
"name": "string"
}
On success the respone data will be true
. Otherwise the response will be the default API error response.