Skip to main content
PUT
/
user
/
account
/
profile
Update profile
curl --request PUT \
  --url https://api.managem.co.uk/user/account/profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "John",
  "familyName": "Doe",
  "username": "johndoe",
  "profile": "Avid collector"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Payload used when updating the user's display name

familyName
string

User's family name

name
string

User's display name

username
string

Public username

profile
string

Brief profile description

Response

204

Profile updated