Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Use this resource to update the user in OpenSpecimen application. Use HTTP PUT method to call 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
userIdidId ID of the user to be updated
firstNameFirst name of the user
lastNameLast name of the user
emailAddressEmail Address address of the user. This attribute should be unique in openSpecimen applicationis a unique key for the users.
phoneNumberPhone number of the user, By default it will be blank
domainNameName of the authentication domain . For providing domain name, domain should be already registered in application. By default its openSpecimen in application, it is 'openspecimen'.
loginNameLogin Name name through which user can login to openSpecimen application, should be unique in authentication domains
deptNameName 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}sign-in to OpenSpecimen. This is a unique within the authentication domain.
instituteNameInstitute to which the user is affiliated.
primarySitePrimary 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.

manageFormsBoolean indicating whether user has rights to create/update custom forms. Default value is false.
addressAddress 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}

...

URLopenspecimen/rest/ng/users/1
MethodPUT
Requestapplication/json
json


Code Block
languagejs
themeEclipse
linenumberstrue
{
    "id": 1,
    "lastName": "Admin",
    "firstName": "Admin",
    "domainName": "openspecimen",
    "emailAddress": "admin@admin.com",
    "phoneNumber": "1234567890",
    "loginName": "admin@admin.com",
    "activityStatus": "Active",
    "
deptName
type": "
Immunology
SUPER",
    "
admin
instituteName":
true
 "Hospital for Rare Diseases",
    "address":
null
 "HRD, New City"
}


Response


Code Block
languagejs
themeEclipse
linenumberstrue
{
    "id": 1,
    "lastName": "Admin",
    "firstName": "Admin",
    "domainName": "openspecimen",
    "emailAddress": "admin@admin.com",
    "phoneNumber": " 1234567890",
    "loginName": "admin@admin.com",
    "siteNames":
    [
    ],
    "creationDate": null1548909110207,
    "activityStatus": "Active",
    "instituteName": "A1Hospital -for ForRare Demo UsersDiseases",
    "deptNametype": "ImmunologySUPER",
    "adminaddress": true"HRD, New    "address": nullCity"
}


 Error Cases :

code
Applies to
Status Message
200All resourcesUser has been updated successfully
400All requestsInvalid parameters, e.g  duplicate login name, duplicate email address, blank first name etc
401All requestsAuthorization failed, user doesn’t have authority
404All requestsUser not found, user with given details not present in the system
500All requestsInternal server error, encountered server error while performing operations

 

 

...