Skip to main content
PUT
/
user
/
{id}
/
profile
Update User Profile
curl --request PUT \
  --url http://{host}:{port}/{contextPath}/user/{id}/profile \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "jonny1",
  "firstName": "John",
  "lastName": "Doe",
  "email": "aNewEmailAddress"
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The id of the user.

Body

application/json
id
string | null

The id of the user.

firstName
string | null

The first name of the user.

lastName
string | null

The first name of the user.

email
string | null

The email of the user.

Response

Request successful. This method returns no content.