Version: 8.0.x

Update an existing user

Update user#

To update an existing user record, you will need to make a TLS request to the OpenHIM API for the below method and endpoint and supply the updated JSON object for the user record.

Method: PUT
Endpoint: {openhim_url}:8080/users/:userEmail
Payload: JSON object of the user record

Example#

Local or Basic authentication#

{
"_id": "123e4567-e89b-12d3-a456-426655440000",
"settings": {
"list": {},
"filter": {
"limit":100
}
},
"groups": ["root@openhim.org"],
"email": "root2@openhim.org",
"firstname": "Klod",
"surname": "Klester",
"msisdn": "",
"password": "new-password",
}

Token authentication [Deprecated]#

Before we can send our request to the OpenHIM API we need to ensure that we construct our valid HTTP headers to successfully authenticate with the OpenHIM API.

Copy the below code at the bottom of your nodejs script that handles the authentication of the OpenHIM headers as described in the authentication section.

Replace the openhimOptions values with the correct implementation details and supply the SampleData payload to submit. You will also need to update the userPassword variable to your desired password. The password will be used to create the passwordHash and passwordSalt which are added to the SampleData payload.

// append below code to the "openhim-api.js" script containing the authentication methods.
// This is described within the authentication section
const genUserPassword = (password) => {
return new Promise((resolve) => {
const passwordSalt = crypto.randomBytes(16)
// create passhash
let shasum = crypto.createHash('sha512')
shasum.update(password)
shasum.update(passwordSalt.toString('hex'))
const passwordHash = shasum.digest('hex')
resolve({
"passwordSalt": passwordSalt.toString('hex'),
"passwordHash": passwordHash
})
})
}
(async () => {
const openhimOptions = {
apiURL: 'https://localhost:8080',
apiEndpoint: '/users/userEmail',
username: 'root@openhim.org',
password: 'openhim-password',
rejectUnauthorized: false
}
const userPassword = "user-password"
const userPasswordDetails = await genUserPassword(userPassword)
const SampleData = 'SampleData'
SampleData.passwordHash = userPasswordDetails.passwordHash
SampleData.passwordSalt = userPasswordDetails.passwordSalt
const headers = await genAuthHeaders(openhimOptions)
const options = {
method: 'PUT',
url: `${openhimOptions.apiURL}${openhimOptions.apiEndpoint}`,
rejectUnauthorized: openhimOptions.rejectUnauthorized,
headers: headers,
body: SampleData,
json: true
}
request(options, (error, response, body) => {
if (error) throw new Error(error)
console.log({
statusCode: response.statusCode,
body
})
})
})()

Execute the below command in your terminal to run the nodejs script

node openhim-api.js

The response status code will be 200 if successful.