Get Orchestration v3

get

/jderest/v3/open-api-catalog/{orchName}

Returns information about a single orchestration REST API's.

Request

Path Parameters
Query Parameters
Header Parameters
Back to Top

Response

Supported Media Types

200 Response

Successful Execution

400 Response

Bad Request - Invalid JSON Input

403 Response

Authorization Failure

415 Response

Invalid Content-Type Header - Must use application/json

500 Response

Server Failed to Process Request
Body ()
Root Schema : ServiceErrorResponse
Type: object
Error Response
Show Source
Back to Top

Examples

Example Request

The following shows an example of an open-api-catalog call passing in a specific orchestration to get details for only that one in Swagger 2.0 format.

curl -i -X GET -H "Content-Type:application/json" --user JDE:JDE http://ais_server_url/jderest/v3/open-api-catalog/Add%20Sales%20Order
        

Example Response

The following example shows the contents of the response body.

{
    "swagger": "2.0",
    "info": {
        "description": "This is the JD Edwards Orchestration server.\nEnabling you to Collect, Filter, Analyze, and Act on Real-Time Data.  \n\nYou can find out more about the JD Edwards Orchestrations at [LearnJDE](http://docs.oracle.com/cd/E84502_01/learnjde/orchestrator.html).",
        "version": "EnterpriseOne 9.2.3.4  ",
        "title": "JD Edwards EnterpriseOne"
    },
    "host": "ais_host:port",
    "basePath": "/jderest/v2/orchestrator",
    "schemes": [
        "https",
        "http"
    ],
    "tags": [],
    "paths": {},
    "definitions": {
        "ERROR": {
            "type": "object",
            "properties": {
                "message": {
                    "type": "string",
                    "example": "string"
                },
                "exception": {
                    "type": "string",
                    "example": "string"
                },
                "timestamp": {
                    "type": "string",
                    "example": "2019-05-20T12:21:10.881-0700",
                    "format": "date-time"
                }
            }
        }
    },
    "securityDefinitions": {
        "basicAuth": {
            "type": "basic"
        }
    }
}

        
Back to Top