Get capacity categories of a capacity area

get

/rest/ofscMetadata/v1/capacityAreas/{label}/capacityCategories

This operation retrieves a collection of capacity categories for the specified capacity area.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

This section describes the 200 status response for this operation.
Body ()
Root Schema : AreaCapacityCategories
Type: object
The collection of capacity categories.
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : AreaCapacityCategory
Type: object
Show Source
  • The label of the capacity category.
  • The name of the capacity category in the user's language.
  • Allowed Values: [ "active", "inactive" ]
    The status of the capacity category.

Default Response

This section describes the default error response for this operation.
Body ()
Root Schema : Error
Type: object
Show Source
Back to Top

Examples

The following example shows how to get capacity categories for a specific capacity area by submitting a GET request on the REST resource.

Example of Request Header

The following shows an example of the request header.

GET/rest/ofscMetadata/v1/capacityAreas/CapacityArea/capacityCategories
Connection: close
Accept-Encoding: gzip,deflate
Authorization: Basic bXlyb290QHFhNTUwMzox
Host: <instance_name>.fs.ocs.oraclecloud.com
User-Agent: Apache-HttpClient/4.1.1 (java 1.5)

Example of Response Header

The following shows an example of the response header.

HTTP/1.1 200 OK
Server: nginx
Date: Wed, 23 Aug 2017 15:01:16 GMT
Content-Type: application/json; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
Access-Control-Allow-Credentials: true
Strict-Transport-Security: max-age=31536000; includeSubDomains;

Example of Response Body

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

{
    "items": [
        {
            "label": "IN",
            "name": "Install",
            "status": "active"
        },
        {
            "label": "TC",
            "name": "Trouble Call",
            "status": "active"
        },
        {
            "label": "DI",
            "name": "Deinstall",
            "status": "active"
        }
    ]
}
Back to Top