Versions Compared

Key

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

This API is available for update the user. You can update user through the HTTP PUT method, URL  http://<host>:<port>/catissuecoreopenspecimen/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
userIdidUser Id ID of the user to be updated
firstNameFirst name of the user
middleNamelastNameMiddle Last name of the user
domainNameIt is the name of the authentication domain. You cannot able to change domain of the user once user has been created  
emailAddressEmail Address of the user. This attribute should be unique in catissue application
loginName

Login Name through which user can login to catissue application, should be unique in authentication domains.

You cannot able to change domain of the user once user created

siteNamesName of the sites to which the user belongs
cpTitlesName of the collection protocols to which user belongs.
activityStatus

Activity status of the user, permissible values are

{active, closed, pending, disabled}

deptNameName of department to which user belongs
comments [optional]Comments on user given by admin while approval
countryCountry of the user
state [optional]State of the user
city [optional]City of the user
zipCodeZipCode of the user
phoneNumber [optional]Phone number of the user
faxNumber [optional]Fax number of the user

...

catissuecore
URLemailAddressEmail address of the user. This is 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, it is 'openspecimen'.
loginNameLogin name through which user can 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}

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:

URLopenspecimen/rest/ng/users/{userId}1
MethodPUT
Requestapplication/json
json


Code Block
languagejs
{
    
themeEclipse
linenumberstrue
{
    "id": 1,
    "lastName": "
Piterson
Admin",

    

    "firstName": "
Sam
Admin",

    

    "domainName": "
catissue
openspecimen",

    

    "emailAddress": "
sam
admin@admin.
piterson@live.
com",

    "loginName

    "phoneNumber": "
samPiterson
1234567890",

    "siteNames

    "loginName":
["My group", "New Site"],
    "cpTitles":["MyCp", "Test Cp"],
    "activityStatus":"Active",
    "deptName":"Department of onchology",
    "comments":"bla bla bla",
    "city":"Jalgaon",
    "state":"Maharashtra",
    "country":"India",
    "zipCode":"425022",
    "faxNumber":"434343AS",
    "phoneNumber":"654323",
}

Response

{

    "id" : "1",
    "lastName":"Piterson",
    "firstName":"Sam",
    "domainName":"catissue",
    "emailAddress":"sam.piterson@live.com",
    "loginName":"samPiterson",
    "siteNames":["My group", "New Site"],
    "cpTitles":["MyCp", "Test Cp"],
    "activityStatus":"Active",
    "deptName":"Department of onchology",
    "comments":"bla bla bla",
    "city":"Jalgaon",
    "state":"Maharashtra",
    "country":"India",
    "zipCode":"425022",
    "faxNumber":"434343AS",
    "phoneNumber":"654323"
}

 

...

 "admin@admin.com",
    "activityStatus": "Active",
    "type": "SUPER",
    "instituteName": "Hospital for Rare Diseases",
    "address": "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",
    "creationDate": 1548909110207,
    "activityStatus": "Active",
    "instituteName": "Hospital for Rare Diseases",
    "type": "SUPER",
    "address": "HRD, New City"
}


 Error Cases :

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

 

 

...