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

Using a Siebel CRM Business Service to Update an Account


You can use a Siebel CRM Business Service resource to update an Account by sending an HTTP PUT request to the repository resource's URI.

The following details are for a request to update a Main Phone field for an Account Business Service on the Siebel CRM Server:

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

    <?xml version="1.0" encoding="UTF-8" ?>
      <body>
        <SiebelMessage>
        <MessageId></MessageId>
        <MessageType>Integration Object</MessageType>
        <IntObjectName>Account Interface</IntObjectName>
        <IntObjectFormat>Siebel Hierarchical</IntObjectFormat>
        <ListOfAccount_spcInterface>
          <Account>
            <Account_spcId>1-34Z</Account_spcId>
            <Main_spcPhone_spcNumber>2018742315</Main_spcPhone_spcNumber>
          </Account>
        </ListOfAccount_spcInterface>
        </SiebelMessage>
      </body>

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