GET SUT Reservation Method
This method returns a list of reservations.
Syntax:
GET /api/sut_reservation
Curl
$> curl 'http://localhost:8080/api/sut_reservation' -H 'Authorization: Basic YWRtaW46YWRtaW4='
Raw Request
GET /api/sut_reservation HTTP/1.1
Host: localhost:8080
Authorization: Basic YWRtaW46YWRtaW4=
Read Keys
Parameter | Type |
---|---|
_id | Id |
created_at | Datetime |
updated_at | Datetime |
start_time | DateTime |
end_time | DateTime |
user_id | Id |
sut_id | Id |
listen_port | Integer |
Response Body
{
"limit": 100,
"offset": 0,
"count": 1,
"sut_reservations": [
{
"_id": "59081e9144455345403d0000",
"created_at": "2017-05-02T05:52:17.861Z",
"updated_at": "2017-05-02T05:52:20.275Z",
"start_time": "2017-05-02T05:45:00+00:00",
"end_time": "2017-05-02T06:00:00+00:00",
"user_id": "590780914445534540190000",
"sut_id": "58c38f5d444553252cce0000",
"listen_port": 5903
}
]
}