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

Description

Updates a user identified via mobile number. 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

v7

Request path

POST [REST URL]/user/updateProfileByMobileNumber

Query Parameters

Parameter

Type

Description

mobileNumber

String

mobile number of the user

Request Body Type

list of Attribute

Example body

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

Example response

HTTP 204
  • No labels