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

Contents

Overview

Members

Name Type Description

attendees

beeId<accessor>[]

Sets the list of conference attendees.

guestKey

string

Sets key for the guest users. Any user who have this key can join the conference.

guestsAllowed

boolean

Configures whether conference has guest access (i.e. allows non-explicitly-invited users to join) or not.

hosts

beeId<accessor>[]

Sets the list of conference host users.

name

string

Sets the conference name.

targetWorkspace

beeId<workspace>

sets conference target workspace.

Hierarchy

Inherits From

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:conferenceCreator xsi:type="obh:conferenceCreator" xmlns:obh="http://www.oracle.com/beehive" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <obh:attendees>your_beeId_0</obh:attendees>
        <obh:attendees>your_beeId_1</obh:attendees>
        <obh:attendees>your_beeId_2</obh:attendees>
        <obh:guestKey>your_string_0</obh:guestKey>
        <obh:guestsAllowed>your_boolean_0</obh:guestsAllowed>
        <obh:hosts>your_beeId_0</obh:hosts>
        <obh:hosts>your_beeId_1</obh:hosts>
        <obh:hosts>your_beeId_2</obh:hosts>
        <obh:name>your_string_0</obh:name>
        <obh:targetWorkspace>your_beeId_0</obh:targetWorkspace>
</obh:conferenceCreator>

JSON Example

(show inherited members)

{
    "beeType":"conferenceCreator",
        "attendees":[
            { your_{http://www.oracle.com/beehive}attendees_as_beeId0 },
            { your_{http://www.oracle.com/beehive}attendees_as_beeId1 },
            { your_{http://www.oracle.com/beehive}attendees_as_beeId2 }
        ],
        "guestKey":"your_{http://www.oracle.com/beehive}guestKey_as_string0",
        "guestsAllowed":your_{http://www.oracle.com/beehive}guestsAllowed_as_boolean0,
        "hosts":[
            { your_{http://www.oracle.com/beehive}hosts_as_beeId0 },
            { your_{http://www.oracle.com/beehive}hosts_as_beeId1 },
            { your_{http://www.oracle.com/beehive}hosts_as_beeId2 }
        ],
        "name":"your_{http://www.oracle.com/beehive}name_as_string0",
        "targetWorkspace":{ your_{http://www.oracle.com/beehive}targetWorkspace_as_beeId0 }
}

XML Schema


<xs:complexType name="conferenceCreator">
    <xs:complexContent>
        <xs:extension base="tns:entityCreator">
            <xs:sequence>
                <xs:element maxOccurs="unbounded" minOccurs="0"
                    name="attendees" nillable="true" type="tns:beeId"/>
                <xs:element minOccurs="0" name="guestKey" type="xs:string"/>
                <xs:element minOccurs="0" name="guestsAllowed" type="xs:boolean"/>
                <xs:element maxOccurs="unbounded" minOccurs="0"
                    name="hosts" nillable="true" type="tns:beeId"/>
                <xs:element minOccurs="0" name="name" type="xs:string"/>
                <xs:element minOccurs="0" name="targetWorkspace" type="tns:beeId"/>
            </xs:sequence>
        </xs:extension>
    </xs:complexContent>
</xs:complexType>

        

References

The following data represents the references to conferenceCreator

Referenced By Resources

Usage Resource Method
Request Conference Create

Referenced By Representaions

Not Referenced Directly by Representations