Check available saved configuration

get

/developers/services/v1/portal/customization

Returns HATEOAS links to any available saved custom configurations for the Developer Portal.

This is a public resource; it does not require authentication and can be accessed by any user.

Request

Query Parameters
Back to Top

Response

Supported Media Types

200 Response

HATEOAS links to the configuration as JSON.
Body ()
Root Schema : JSONObject
Type: object
Back to Top

Examples

The following example shows how to retrieve a link to the Oracle API Platform Cloud Service - Classic Developer Portal custom configuration by submitting a GET request on the REST resource using cURL. For more information about cURL, see Use cURL

curl -i -X GET 
https://example.com/developers/services/v1/portal/customization

Example of Response Headers

The following shows an example of the response headers.

HTTP/1.1 200 OK
Date: Fri, 05 Jan 2018 05:38:18 GMT
Content-length: 205
Content-type: application/json
X-ORACLE-DMS-ECID: fd4f7481-e810-498f-9ef3-3cc199fcc455-0006eae8
X-ORACLE-DMS-RID: 0:1

Example of Response Body

The following example shows the contents of the response body in JSON format, including a link to retrieve the Developer Portal custom configuration file.

{
    "links": [
        {
            "method": "GET",
            "templated": "false",
            "rel": "configuration",
            "href": "https://example.com:1234/developers/services/v1/portal/customization"
        }
    ]
}
Back to Top