Skip to main content
PATCH
/
auth
/
profile
Update current user profile
curl --request PATCH \
  --url https://api.engagefabric.com/auth/profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "John Doe",
  "avatarUrl": "https://example.com/avatar.jpg"
}
'

Authorizations

Authorization
string
header
required

JWT token for admin console authentication

Body

application/json
name
string

User full name

Required string length: 2 - 255
Example:

"John Doe"

avatarUrl
string

Avatar URL

Maximum string length: 500
Example:

"https://example.com/avatar.jpg"

Response

Profile updated successfully