Leave a comment at the end of this page or email contact@krishagni.com
Update User
openspecimen/rest/ng/users/{userId}
Use this resource to update the user in OpenSpecimen application. Use HTTP PUT method to invoke this API by passing the below details in JSON format.
Below are the attributes which need to be sent in the request body:
Parameter | Details |
---|---|
id | ID of the user to be updated |
firstName | First name of the user |
lastName | Last name of the user |
emailAddress | Email address of the user. This is a unique key for the users. |
phoneNumber | Phone number of the user, By default it will be blank |
domainName | Name of the authentication domain . For providing domain name, domain should be already registered in application. By default, it is 'openspecimen'. |
loginName | Login name through which user can sign-in to OpenSpecimen. This is a unique within the authentication domain. |
instituteName | Institute to which the user is affiliated. |
primarySite | Primary work site/lab of the user. This is an optional field. |
type | User type. Permissible values are - SUPER, INSTITUTE, NONE. When set to SUPER, the user will be super administrator. The values INSTITUTE and NONE are for institute admin and regular users respectively. |
manageForms | Boolean indicating whether user has rights to create/update custom forms. Default value is false. |
address | Address of the user. This is an optional field |
activityStatus | User status. The allowed values are - Active, Locked, Pending, Disabled. |
http[s]:<host>:<port>/openspecimen/rest/ng/users/{userId}
Use this URL to update user in openSpecimen application.
Result:
The response of this request will contains the details of the updated user.
Below is the example of the update user:
URL | openspecimen/rest/ng/users/1 |
Method | PUT |
Request | application/json |
json | { "id": 1, "lastName": "Admin", "firstName": "Admin", "domainName": "openspecimen", "emailAddress": "admin@admin.com", "phoneNumber": "1234567890", "loginName": "admin@admin.com", "activityStatus": "Active", "type": "SUPER", "instituteName": "Hospital for Rare Diseases", "address": "HRD, New City" } |
Response | { "id": 1, "lastName": "Admin", "firstName": "Admin", "domainName": "openspecimen", "emailAddress": "admin@admin.com", "phoneNumber": " 1234567890", "loginName": "admin@admin.com", "creationDate": 1548909110207, "activityStatus": "Active", "instituteName": "Hospital for Rare Diseases", "type": "SUPER", "address": "HRD, New City" } |
Error Cases :
code | Applies to | Status Message |
---|---|---|
200 | All resources | User has been updated successfully |
400 | All requests | Invalid parameters, e.g duplicate login name, duplicate email address, blank first name etc |
401 | All requests | Authorization failed, user doesn’t have authority |
404 | All requests | User not found, user with given details not present in the system |
500 | All requests | Internal server error, encountered server error while performing operations |
Leave a comment at the end of this page or email contact@krishagni.com