Versions Compared

Key

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

 This API available for patch the user. You can patch user through the HTTP PATCH method, URL  http://<host>:<port>/catissuecore/rest/ng/users/{userId}

Use this resource to patch the user. Use HTTP PATCH 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
userIdUser id of the User
firstNameFirst name of the user
middleNameMiddle name of the user
domainNameName of the authentication domain. You cannot able to change domain of the user once user 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
roleNamesName if the roles which user has. It can be one or many. By default its scientist in application
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
commentsComments on user given by admin while approval
countryCountry of the user
stateState of the user
cityCity of the user
zipCodeZip Code of the user
phoneNumberPhone number of the user
faxNumberFax number of the user


API Example http[s]:<host>:<port>/catissuecore/rest/ng/users/{userId}

Use this URL to patch user in caTissue application.

Result:

The response of this request will contains the details of the patched user.

Below is the example of the patch user:

Method
URL
URLcatissuecore/rest/ng/users/{userId}
MethodPATCH
Requestapplication/json
json{
    "lastName":"Piterson",
    "firstName":"Sam"
}

Response

{
    "id" : 1,
    "lastName":"Piterson",
    "firstName":"Sam",
    "domainName":"catissue",
    "emailAddress":"sam.piterson@live.com",
    "loginName":"samPiterson",
    "siteNames":["My group", "New Site"],
    "roleNames" : ["adminstrator"],
    "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"
}

...