Generate Gateway Node Install Properties template

get

/apiplatform/management/v1/gateways/{gwId}/nodes/form

Returns the install properties template for the {gwId} gateway.

Users requesting this resource must be assigned Plan Manager, API Manager or Gateway Manager role and the Manage Gateway or View all Details grants for the specified gateway.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

200 Response

The gateway node's form template.
Body ()
Root Schema : NodeForm
Type: object

403 Response

Forbidden.
Body ()
Root Schema : Error
Type: object
Show Source
Nested Schema : errorDetails
Type: array
additional errors
Show Source

500 Response

Unexpected error.
Body ()
Root Schema : Error
Type: object
Show Source
Nested Schema : errorDetails
Type: array
additional errors
Show Source
Back to Top

Examples

The following example shows how to retrieve the form template for gateway node install properties for a {gwId} gateway by submitting a GET request on the REST resource using cURL. For more information about cURL, see Use cURL

curl -i -X GET 
-H "Authorization: Bearer access_token"
https://example.com/apiplatform/management/v1/gateways/{gwId}/nodes/form
  • {gwId}is the unique of a gateway. To retrieve available gateway. see Get gateways.

Example of Response Headers

The following shows an example of the response headers.

HTTP/1.1 200 OK
Server: Oracle-Traffic-Director/12.2.1.0.0
Date:  Wed, 22 Mar 2017 09:43:13 GMT
Content-Length:  785
Content-Type:  text/html;charset=utf-8
X-oracle-dms-ecid:  49d14691-2176-4c99-aed3-38438604f528-00001e9d
X-oracle-dms-rid:  0
Via: 1.1 otd_opc
Proxy-agent: Oracle-Traffic-Director/12.2.1.0.0

Example of Response Body

The following example shows the contents of the response body in JSON format.

{
    "managementServiceUrl": "http://example.com:7201",
    "logicalGatewayId": "100",
    }
Back to Top