Versions Compared

Key

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

 This API available for patch the user objectopenspecimen/rest/ng/users/{id}

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:

Mandatory Fields :

  1. userIdUser id

Non Patchable Fields :

  1. Login name
  2. Domain name
Parameter
Details
firstNameFirst name of the user
middleNameMiddle name of the user
domainName[optional]Name

...

of the authentication domain . For providing domain name, domain should be already registered in application. By default its openSpecimen in application
emailAddressEmail Address of the user. This attribute should be unique in openSpecimen application
loginNameLogin Name through which user can login to openSpecimen application, should be unique in authentication domains
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.

 

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, By default it will be blank
countryCountry of which the user belongs
state [optional]State of which the user belongs, By default it will be blank
city [optional]City of which the user belongs, By default it will be blank
zipCode [optional]Zip code of location which the user belongs, By default it will be blank
phoneNumber [optional]Phone number of the user, By default it will be blank
faxNumber [optional]Fax number of the user, By default it will be blank

 

http[s]:<host>:<port>/openspecimen/rest/ng/users/{id}

Use this URL to patch user in openSpecimen 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
PATCHURLcatissuecoreopenspecimen/rest/ng/users/{userId}1
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"],
        "cpTitlesuserCPRoles":[{"MyCproleName":"Scientiest1","Test Cp"cpTitle":"My Cp1"}],
        "activityStatus":"Active",
        "deptName":"Department of onchology",
        "comments":"bla bla bla",
        "city":"Jalgaon",
        "state":"Maharashtra",
        "country":"India",
        "zipCode":"425022",
        "faxNumber":"434343AS",
        "phoneNumber":"654323",
}

 

...

 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

...