Skip to main content
PUT
/
users
/
me
Update current user profile
curl --request PUT \
  --url https://core.cyberun.cloud/api/v1/users/me \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "first_name": "Alice",
  "last_name": "Chen",
  "display_name": "Alice C."
}
'
{
  "id": "019abc12-3456-7890-abcd-ef1234567890"
}

Documentation Index

Fetch the complete documentation index at: https://docs.cyberun.cloud/llms.txt

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

Authorizations

Authorization
string
header
required

User session JWT (Bearer ). Must be paired with the X-Team-ID request header on team-scoped endpoints so the server knows which team's resources to operate on.

Body

application/json
first_name
string
required

Updated first name.

Required string length: 1 - 50
Example:

"Alice"

last_name
string
required

Updated last name.

Required string length: 1 - 50
Example:

"Chen"

display_name
string
required

Updated display name.

Required string length: 1 - 100
Example:

"Alice C."

Response

Profile updated

id
string<uuid>
required

UUID of the created or updated resource.

Example:

"019abc12-3456-7890-abcd-ef1234567890"