Skip to main content
PUT
/
auth
/
profile
Update User Profile
curl --request PUT \
  --url https://api.example.com/auth/profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "username": "<string>",
  "email": "jsmith@example.com",
  "full_name": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Body

application/json

User profile update model.

username
string | null
Required string length: 3 - 50
email
string<email> | null
full_name
string | null
Maximum string length: 255

Response

Successful Response