Versions Compared

Key

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

...

Non Patchable Fields :

  1. Login Name
  2. Domain Name

 

Parameter
Details
userIdUser id Id of the Useruser
firstNameFirst name of the user
middleNameMiddle name of the user
domainNameName It 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 userSiteNames[Optional]Collection of the sites site names 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. 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.

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
zipCodeZip Code ZipCode of the user
phoneNumber [optional]Phone number of the user
faxNumber [optional]Fax number of the user


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

...

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",
    "siteNamesuserSiteNames":["My group", "New Site"],
    "roleNamesuserCPRoles":[{"roleName":"adminstratorScientiest1"],
    "cpTitlescpTitle":["MyCp", "Test Cp"My Cp1"}],
    "activityStatus":"Active",
    "deptName":"Department of onchology",
    "comments":"bla bla bla",
    "city":"Jalgaon",
    "state":"Maharashtra",
    "country":"India",
    "zipCode":"425022",
    "faxNumber":"434343AS",
    "phoneNumber":"654323"
}

...