Oracle Beehive
  Oracle® Beehive RESTful Web Services API Reference
  Release 2 (2.0.1.7)
  E16658-04

Contents

Overview

Generic container to convey the same update to one or more server-side entities. A single entityUpdater is provided to represent the desired updates. The proper sub-type of entityUpdater will depend on the operation making its use. Refer to the documentation on the operation in question for the permitted sub-types(s) of entityUpdater.

Members

Name Type Required Description

id

beeId[]

The IDs of the entities to be updated

updater

identifiableUpdater

The type encapsulating the updates to be made to all entities represented in the id structure

Hierarchy

Examples

Below are examples in JSON and XML formats. All examples are shown with all inherited members. Quoting when required is part of the examples, but you must obviously populate with your own data.

XML Example

(show inherited members)

<obh:batchUpdater xsi:type="obh:batchUpdater" xmlns:obh="http://www.oracle.com/beehive" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <obh:id>your_beeId_0</obh:id>
        <obh:id>your_beeId_1</obh:id>
        <obh:id>your_beeId_2</obh:id>
        <obh:updater>your_identifiableUpdater_0</obh:updater>
</obh:batchUpdater>

JSON Example

(show inherited members)

{
    "beeType":"batchUpdater",
        "id":[
            { your_{http://www.oracle.com/beehive}id_as_beeId0 },
            { your_{http://www.oracle.com/beehive}id_as_beeId1 },
            { your_{http://www.oracle.com/beehive}id_as_beeId2 }
        ],
        "updater":{ your_{http://www.oracle.com/beehive}updater_as_identifiableUpdater0 }
}

XML Schema


<xs:complexType name="batchUpdater">
    <xs:sequence>
        <xs:element maxOccurs="unbounded" name="id" type="tns:beeId"/>
        <xs:element name="updater" type="tns:identifiableUpdater"/>
    </xs:sequence>
</xs:complexType>

        

References

The following data represents the references to batchUpdater

Referenced By Resources

Usage Resource Method
Request Expertise Management Batch Update Expertise Terms
Request ExpertiseConnection Update Batch
Request RelationshipConnection Update Batch

Referenced By Representaions

Not Referenced Directly by Representations