Got feedback or spotted a mistake?

Leave a comment at the end of this page or email contact@krishagni.com

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 23 Next »

openspecimen/rest/ng/users/{userId}

Use this resource to update the user. Use HTTP PUT 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
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 openSpecimen application
loginName

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

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

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
countryCountry of the user
state [optional]State of the user
city [optional]City of the user
zipCodeZip code of the user
phoneNumber [optional]Phone number of the user
faxNumber [optional]Fax number of the user


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}
MethodPUT
Requestapplication/json
json{
    "lastName":"Piterson",
    "firstName":"Sam",
    "domainName":"catissue",
    "emailAddress":"sam.piterson@live.com",
    "loginName":"samPiterson",
    "userSiteNames":["My group"],
    "userCPRoles":[{"roleName":"Scientiest1","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"
}

Response

{
    "id" : 1,
    "lastName":"Piterson",
    "firstName":"Sam",
    "domainName":"catissue",
    "emailAddress":"sam.piterson@live.com",
    "loginName":"samPiterson",
    "userSiteNames":["My group"],
    "userCPRoles":[{"roleName":"Scientiest1","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 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

 

 

 

  • No labels