...
Use this resource to update the user in OpenSpecimen application. Use HTTP PUT method to call 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 | ||
---|---|---|---|
userId | User id Id of the user to be updated | ||
firstName | First name of the user | ||
middleNamelastName | Middle Last name of the user | domainName | It is the name|
emailAddress | Email Address of the | authentication domain. You cannot able to change domain of the user once user has been createdemailAddress | Email address of the user. This attribute should be unique in openSpecimen user. This attribute should be unique in openSpecimen application |
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 its openSpecimen in application | ||
loginName | Login name Name through which user can login to openSpecimen application, should be unique in authentication domains. You cannot able to change domain of the user once user created | ||
userSiteNames[Optional] | Collection of the site names to which the user belongs. By default it will be none. i.e. blank collection | ||
userCPRoles[Optional] | Collection of the collection protocol titles and their role names to which user belongs. By default it will be none. i.e. blank collection. Mainly contains following parameters : roleName : Role of user like Scientist, Admin etc. For this attribute role must be present in application. cpTitle : Collection Protocol title. For this attribute CP must be present in application. | ||
deptName | Name of department to which user belongs | ||
admin | Set user as superadmin. values are {true, false}. | ||
address[optional] | Address of the user | ||
activityStatus | Activity status of the user, permissible values are {active, closed, pending, disabled} | ||
deptName | Name of department to which user belongs | ||
comments [optional] | Comments on user given by admin while approval | ||
country | Country of the user | ||
state [optional] | State of the user | ||
city [optional] | City of the user | ||
zipCode | Zip code of the user | ||
phoneNumber [optional] | Phone number of the user | ||
faxNumber [optional] | Fax number of the user |
http[s]:<host>:<port>/openspecimen/rest/ng/users/{userId}
Use this URL to update user in openSpecimen application.
...
URL | openspecimen/rest/ng/users/{userId}1 | ||||||||||||||||||||||||
Method | PUT | ||||||||||||||||||||||||
Request | application/json | ||||||||||||||||||||||||
json{ |
"loginName
"userSiteNames
"userCPRoles":[{"roleName":"Scientiest1","cpTitle":"My Cp1"}], "activityStatus":"Active",
"comments":"bla bla bla", "city":"Jalgaon", "state":"Maharashtra", "country":"India", "zipCode":"425022", "faxNumber":"434343AS", "phoneNumber":"654323" } | Response | {
| ||||||||||||||||||||||
Response |
|
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 |
...