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 24 Current »

openspecimen/rest/ng/users/{userId}

Use this resource to update the user in OpenSpecimen application. 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
userIdId of the user to be updated
firstNameFirst name of the user
lastNameLast name of the user
emailAddressEmail Address of the user. This attribute should be unique in openSpecimen application
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 its openSpecimen in application
loginNameLogin Name through which user can login to openSpecimen application, should be unique in authentication domains
deptNameName of department to which user belongs
admin

Set user as superadmin. values are {true, false}.

address[optional]Address of the user
activityStatus

Activity status of the user, permissible values are

{active, closed, 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/1
MethodPUT
Requestapplication/json
json
{
    "id": 1,
    "lastName": "Admin",
    "firstName": "Admin",
    "domainName": "openspecimen",
    "emailAddress": "admin@admin.com",
    "phoneNumber": "1234567890",
    "loginName": "admin@admin.com",
    "activityStatus": "Active",
    "deptName": "Immunology",
    "admin": true,
    "address": null
}

Response

{
    "id": 1,
    "lastName": "Admin",
    "firstName": "Admin",
    "domainName": "openspecimen",
    "emailAddress": "admin@admin.com",
    "phoneNumber": " 1234567890",
    "loginName": "admin@admin.com",
    "siteNames":
    [
    ],
    "creationDate": null,
    "activityStatus": "Active",
    "instituteName": "A1 - For Demo Users",
    "deptName": "Immunology",
    "admin": true,
    "address": null
}

 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