Skip to main content
POST
/
api
/
v1
/
me
Update user profile
curl --request POST \
  --url https://ai-loop.alpeadria.com/api/v1/me \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "surname": "<string>",
  "jobTitle": "<string>",
  "city": "<string>",
  "country": "<string>"
}
'
{
  "message": "Profile updated successfully"
}
Updates the current user’s profile information.

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
surname
string
jobTitle
string
city
string
country
string

Response

Profile updated successfully.

message
string