Page tree
Skip to end of metadata
Go to start of metadata

Description

Updates a user identified via email. Updates all data stored in the attributes with the information saved in the attribute list. This method only changes the information that is explicitly mentioned. Attributes that are not mentioned are not changed (there is also a replace method to change the entire profile of a user and to delete attribute values if the attribute is not mentioned for the user).

Available from

v2

Request path

POST [REST URL]/user/updateProfileByEmail

Query Parameters

Parameter

Type

Description

email

String

Email of the user

Request Body Type

list of Attribute

Example body

[
{"name" : "user.firstname", "value" : "FirstName"},
{"name" : "user.lastname", "value" : "LastName"}
]

Example body 2 - erease mobile number

[
  {"name" : "user.MobileNumber", "value" : null}
]
  • No labels