Siebel REST API Guide > Using the Siebel REST API > Using the Siebel REST API with Siebel Clinical >

Creating a Siebel Clinical User


The following details are for a request to create a Siebel clinical user on the Siebel CRM Server:

  • URI:http://ServerName:port/siebel-rest/v1.0/service/LS Clinical User Provisioning Service/CreateUser
  • HTTP Method: POST
  • Content-Type: application/json
  • Authorization: Basic
  • Request body:

{
  "body":
    {
      "Employee":
        {
           "First Name": "Cathy",
           "Last Name": "Rogers",
           "Login Name":"Cathy.Rogers",
           "EMail Addr":"Cathy.Rogers@oracle.com"
         }
      "ListOfPosition":
        {
            "Position":
               {
                    "Name":"Cathy.Rogers",
                     "Division":"Default Organization"
               }
          },
        "ListOfEmployee_Responsibility":
          {
              "Employee_Responsibility":
                 {
                     "Responsibility":"Clinical Research Associate
                 }
            }
     }
}

The following are the details for the response to a successful request:

  • HTTP Code: 200
  • Content-Type: application/json
  • Response body: None.
Siebel REST API Guide Copyright © 2016, Oracle and/or its affiliates. All rights reserved. Legal Notices.