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

Inserting a Siebel CRM Business Object


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

The following details are for a request to create a new account on the Siebel CRM Server:

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

{
    "Name": "AccountExample",
    "Primary Organization": "Millennium Institutional Finance Services IF ENU",
    "Location": "HQ-Distribution",
    "Description": "AccountData",
    "Primary Organization Id": "1-1DG",
}

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