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

Inserting an Account Using the Siebel Account Business Service


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 Insert method of Siebel Account Business service to insert a new account with details given in the request.

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

{
  "body":{
    "SiebelMessage":{
      "MessageId":"",
      "MessageType":"Integration Object",
      "IntObjectName":"Account Interface",
      "IntObjectFormat":"Siebel Hierarchical",
      "ListOfAccount Interface":{
      "Account":{
        "Account Id":"2345",
          "Name":"REST Test Business Service"
      }
    }
   }
 }
}

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