Skip to main content
POST
/
user
/
update-username
Update username
curl --request POST \
  --url https://jamquest-dev.techboo.net/api/v1/user/update-username \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "username": "DJ Cool"
}
'
{
  "status": "ok",
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Access token obtained during login or registration. Use this token in the Authorization header for authenticated requests.

Body

application/json
username
string
required
Example:

"DJ Cool"

Response

Username updated successfully

status
string
Example:

"ok"

message
string