Siebel REST API Guide > Using the Siebel REST API > Using Siebel REST API to Access Siebel Business Services JSON Examples >

Accessing a Siebel Business Service with Arguments in the Request Body


You can access a Siebel CRM business service by sending an HTTP POST request to the resource's URI.

The following details are for a request to call the CreateAccount Method on the Account Business Service with business service arguments included in the request body. This request creates a REST Test Business Service3 account on the Siebel CRM Server:

  • URI: http://ServerName:port/siebel/v1.0/service/Account/CreateAccount
  • HTTP Method: POST
  • Content-Type: application/json
  • Authorization: Basic
  • Request body:

{
  "body":{
    "Account IO":{
     "IntObjectName":"Account IO",
     "IntObjectFormat":"Siebel Hierarchical",
     "ListOfAccount IO":{
    "Account":{
     "Name":"REST Test Business Service3"
    }
   }
  }
 }
}

Siebel REST API Guide Copyright © 2018, Oracle and/or its affiliates. All rights reserved. Legal Notices.