Get time slots of a capacity area

get

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

This operation retrieves a collection of time slots 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 : AreaTimeSlots
Type: object
The collection of time slots.
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : AreaTimeSlot
Type: object
Show Source

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 time slots 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/timeSlots
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": "08-10",
            "name": "08-10",
            "timeFrom": "08:00:00",
            "timeTo": "10:00:00"
        },
        {
            "label": "10-12",
            "name": "10-12",
            "timeFrom": "10:00:00",
            "timeTo": "12:00:00"
        }
    ]
}
Back to Top