Example #1
0
});
/* GET USERS corresponding to a merchant */
$app->get('/merchant/:id/users', function ($id) use($app) {
    // check for required params
    $request = array();
    $response = array();
    $apiKey = array();
    $headers = $app->request->headers->all();
    verifyHeaders(array('Key'));
    // reading request params
    $apiKey = $headers['Key'];
    $request['apiKey'] = $apiKey;
    $request['restaurantID'] = $id;
    $controller = new ApiController();
    // Call controller function
    $response = $controller->getUsers($request);
    // echo json response
    echoRespnse(200, $response);
});
/* GET TAXES corresponding to a merchant */
$app->get('/merchant/:id/tax', function ($id) use($app) {
    // check for required params
    $request = array();
    $response = array();
    $apiKey = array();
    $headers = $app->request->headers->all();
    verifyHeaders(array('Key'));
    // reading request params
    $apiKey = $headers['Key'];
    $request['apiKey'] = $apiKey;
    $request['restaurantID'] = $id;