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

Using Describe to Return Methods for a Business Service


You can use the OpenAPI Describe parameter by appending Describe to an HTTP GET request to the resource's URI.

The following details are for a Describe request to return methods for business services from the Siebel CRM Server:

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

The following are the details for the response to a successful request:

  • HTTP Code: 200
  • Content-Type:
  • Response body:


   "swagger": "2.0",
   "info": {},
   "schemes": [],
   "securityDefinitions": {},
   "externalDocs": {},
   "host": "host:port number",
   "basePath": "/siebel/v1.0",
   "definitions": {},
   "tags": [],
   "paths": {
     "/service/Siebel Account/Delete/describe": {
      "get": {
        "tags": [
          "service/Siebel Account/Delete/describe"
          ],
        "summary": "",
        "description": "",
        "operationId": "service/Siebel Account/Delete/describe",
        "produces": [
        ],
        "responses": {
        },
        "parameters": [],
        "security": [
        ]
      }
     },
     "/service/Siebel Account/Insert/describe": {
     },
     "/service/Siebel Account/InsertOrUpdate/describe": {
     },
     "/service/Siebel Account/QueryByExample/describe": {
     },
     "/service/Siebel Account/QueryById/describe": {
     },
     "/service/Siebel Account/Synchronize/describe": {
     },
     "/service/Siebel Account/Update/describe": {
     }
   }
}

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