catissuecore/rest/ng/sites
...
Parameter | Details |
---|---|
name | name of the site |
coordinatorCollection | Collection of user login names.Login Name through which user can login to catissue application, should be unique in authentication domains |
type | Type of site. This attribute is should not be blank.Permissible values are { } |
activityStatus | Activity status of the site, permissible values are {active, closed, pending, disabled} |
street | Name of street to which the site belongs. |
city | City Name of city to which the site belongs. |
state [optional] | State Name of the state to which the site belongs, By default it will be blank. |
country | Country Name of the country to which the site belongs. |
zipCode | Zip Code of location which the site belongs. |
faxNumber [optional] | Fax number of the site, By default it will be blank. |
phoneNumber [optional] | Phone number of the site, By default it will be blank. |
http[s]:<host>:<port>/catissuecore/rest/ng/sites
...
URL | http://<host>:<port>/ catissuecore/rest/ng/sites |
Method | POST |
Request | application/json |
json | { "name" : "Pune101", "coordinatorCollection" : ["super@superjohn@bjc.com","site_admin@adminwashu.com"], "type" : "Collection Site", "activityStatus" : "Active", "street" : "SB Road", "city" : "Pune", "state" : "MH", "country" : "India" , "zipCode" : "412312", "faxNumber" : "123321", "phoneNumber" : "213434324" } |
Response | { name: "Pune101" siteId: 48 type: "Collection Site" activityStatus: "Active" street: "SB Road" city: "Pune" state: "MH" country: "India" zipCode: "412312" faxNumber: "123321" phoneNumber: "213434324" } |
Error Cases :
code | Applies to | Status Message |
---|---|---|
200 | All resources | Site has been created successfully |
400 | All requests | Invalid parameters, e.g duplicate Site Name, blank Site Name, blank Site Type etc |
401 | All requests | Authorization failed, User doesn’t have Authority |
500 | All requests | Internal server error, Encountered server error while performing operations |