Back to main
Add Room
Remove Room
Get All Room Info
Get All Rooms
Back to the top
{
"body" : {
"room_name" : " AB203" ,
"room_length" : 20 ,
"room_width" : 12
},
"action" : " add_room"
}
Variable
Data Type
Required
Additional Validation
room_name
string
Yes
No
room_width
integer
Yes
No
room_length
integer
Yes
No
{
"message" : " Room added"
}
{
"error" : " error message"
}
Back to the top
Expected Request ?action=remove_room&room_id=6
Variable
Data Type
Required
Additional Validation
room_id
integer
Yes
No
{
"message" : " Room removed"
}
{
"error" : " error message"
}
Back to the top
Expected Request: ?action=get_all_room_info&room_id=4
Variable
Data Type
Required
Additional Validation
room_id
integer
Yes
No
{
"message" : " Json object storing information pertaining to the room"
}
{
"error" : " error message"
}
Back to the top
Expected Request ?action=get_all_rooms
Variable
Data Type
Required
Additional Validation
{
"message" : " Array storing all rooms and their info"
}
{
"error" : " error message"
}