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

Contents

System

Resources for the server itself vs. the Beehive services it hosts.

Echo

Echo back the payload sent in the request. Note that unlike other operations, this does not act on structured data (XML/JSON/etc). It is a simple return of any bytes presented, used to test basic system health or client connectivity

URI: /comb/v1/d/sys/echo

HTTP Method: POST

Request Parameters: (expand)

Name Style Required Description

anticsrf

Query

Specifies the anti-CSRF token

Request Payload: No Request Payload

Response Payload: No Response Payload

Fault: restFault

Details: (expand)

HTTP Status Description
500
Internal error occurred

Server Configuration

Fetch current server configuration useful for client applications

URI: /comb/v1/d/sys/config

HTTP Method: GET

Request Parameters: (expand)

Name Style Required Description

accept

Header

Restricted to:

  • application/json
  • application/xml

Directive to the server, indicating the format of the returned payload (or error class)

Request Payload: No Request Payload

Response Payload: serverConfig

Fault: restFault

Details: (expand)

HTTP Status Description
500
Internal error occurred

Sample: (expand)

    callSysConfigGET: function() {
        // TODO Implement me
        // This is just here so I can se what the MauiDoc looks like with the
        // examples embedded within each Resource discussion
    },