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 2 Next »

catissuecore/rest/ng/sites

Use this resource to create new Site in the caTissue application. Use HTTP POST 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
namename 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

typeType of site.This attribute is should not be blank.
activityStatus

Activity status of the site, permissible values are

{active, closed, pending, disabled}

streetName of street to which site belongs.
cityCity of which the site belongs.
state [optional]State of which the site belongs, By default it will be blank.
countryCountry of which the site belongs.
zipCodeZip 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

Use this URL to add site in caTissue application.

 

Result:

The response of this request will contains the details of the created site.

Below is the example of the create site:

 

URLhttp://<host>:<port>/catissuecore/rest/ng/sites
MethodPOST
Requestapplication/json
json{

"name" : "Pune101",

"coordinatorCollection" : ["super@super.com","admin@admin.com"],

"type" : "Collection Site",

"activityStatus" : "Active",

"street" : "SB Road",

"city" : "Pune",

"state" : "MH",

"country" : "India" ,

"zipCode" : "412312",

"faxNumber" : "123321",

"phoneNumber" : "213434324"

}

Response

{

name"Pune101"
coordinatorCollection[2]
siteId48
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
200All resourcesSite has been created successfully
400All requestsInvalid parameters, e.g  duplicate Site Name, blank Site Name, blank Site Type etc
401All requestsAuthorization failed, User doesn’t have Authority
500All requestsInternal server error, Encountered server error while performing operations
  • No labels