http[s]:<host>:<port>/catissuecore/rest/ng/sites/name={siteName}
or
catissuecore/rest/ng/sites/{siteId}
...
Parameter | Details |
---|---|
siteId | Site Id of the site |
name | Name of the physical location. |
coordinatorCollection | Collection of user info object. UserInfo contains Login Name and Domain Name |
type | Function of the site. It could be collection, storing, experimentation or it could be unspecified { Collection Site,Repository,Laboratory,Not Specified } |
activityStatus | Defines the status of a Site record {active, closed} |
street | Name of street to which site belongs. |
city | City of which the site belongs. |
state | State of which the site belongs, By default it will be blank. |
country | Country of which the site belongs. |
zipCode | Zip Code of location which the site belongs. |
faxNumber | Fax number of the site, By default it will be blank. |
phoneNumber | Phone number of the site, By default it will be blank. |
http[s]:<host>:<port>/catissuecore/rest/ng/sites/name={siteName}
or
http[s]:<host>:<port>/catissuecore/rest/ng/sites/{siteId}
Use this URL to update site in caTissue application.
...
Below is the example of the update site:
URL | catissuecore/rest/ng/sites/name={siteName} or catissuecore/rest/ng/sites/{siteId} |
Method | PUT |
Request | application/json |
json | { "coordinatorCollection" : [ { "loginName" : "admin@admin.com", "domainName" :"catissue"}], "type" : "Collection Site", "activityStatus" : "Active", "street" : "SB Road", "city" : "Pune", "state" : "Maharashtra", "country" : "India" , "zipCode" : "412312", "faxNumber" : "123321", "phoneNumber" : "213434324" |
Response | { name: "DD1" id: 6 type: "sitesType" activityStatus: "Active" emailAddress: null street: "SB Road" city: "Pune412312" state: "MH" country: "India" zipCode: "412312" faxNumber: "123321" phoneNumber: "213434324" } |
Error Cases :
code | Applies to | Status Message |
---|---|---|
200 | All resources | Site has been updated successfully |
400 | All requests | Invalid parameters, e.g duplicate Site Name, blank Site Name etc |
401 | All requests | Authorization failed, User doesn’t have Authority |
404 | All requests | Site not found, Site with given details not present in the system |
500 | All requests | Internal server error, Encountered server error while performing operations |