Getting Started
Welcome to the MeetingRoomz API documentation. Here you can find all the information you need to integrate with our platform.
Base URL
https://staging-api.meetingroomz.com/manager/v1/

Response:
Code: 200 OK
Response Body:

{
    "success": true,
    "data": {
        "data": [
            {
                "name": "dummy",
                ...
            },
            .....
        ]
    },
    "message": "Data fetched successfully"
}

Error Response:
Code: 400 Error
Response Body:

{
    "success": true,
    "code": 400,
    "message": "Error while fetching data",
    "details": "Invalid access token"
}

Possible Codes:

Code Description
200 Response OK
400 Invalid or Expired Token or Data not found or Missing required param
500 Internal Server Error
Authentication
All API requests require authentication using a Bearer Token. Obtain your token by sending a POST request to the endpoint below.
POST /api/token

Request Body:

{
    "client_id": "your_client_id",
    "client_secret": "your_client_secret"
}

Try it: