Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This API available for creating new user. You can create user through the HTTP POST method, URL  http://<host>:<port>/catissuecore/rest/ng/users

 

Below are the attributes which need to be sent in the request body:

Parameter
Details
firstNameFirst name of the user
middleNameMiddle name of the user
domainName[optional]Name of the authentication domain . For providing domain name, domain should be already registered in application. By default its catissue in application
emailAddressEmail Address of the user. This attribute should be unique in catissue application
loginNameLogin Name through which user can login to catissue application, should be unique in authentication domains
siteNamesName of the sites to which the user belongs
cpTitlesName of the collection protocols to which user belongs.
activityStatus

Activity status of the user, permissible values are

{active, closed, pending, disabled}

deptNameName of department to which user belongs
comments [optional]comments Comments on user given by admin while approval, By default it will be blank
countryCountry of which the user belongs
state [optional]state State of which the user belongs, By default it will be blank
city [optional]city City of which the user belongs, By default it will be blank
zipCode [optional]zipCode Zip Code of location which the user belongs, By default it will be blank
phoneNumber [optional]Phone number of the user, By default it will be blank
faxNumber [optional]Fax number of the user, By default it will be blank


API Example :

URLhttp://<host>:<port>/catissuecore/rest/ng/users
MethodPOST
Requestapplication/json
json{
    "lastName":"Piterson",
    "firstName":"Sam",
    "domainName":"catissue",
    "emailAddress":"sam.piterson@live.com",
    "loginName":"samPiterson",
    "siteNames":["My group", "New Site"],
    "cpTitles":["MyCp", "Test Cp"],
    "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",
    "siteNames":["My group", "New Site"],
    "cpTitles":["MyCp", "Test Cp"],
    "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 created successfully
400All requestsInvalid parameters, e.g  duplicate Login Name, duplicate Email Address, blank First Name etc
401All requestsAuthorization failed, User doesn’t have Authority
500All requestsInternal server error, Encountered server error while performing operations