Ejemplo n.º 1
0
    $apiKey = array();
    $dataJSON = array();
    $headers = $app->request->headers->all();
    verifyHeaders(array('Key'));
    // $phone = $headers["Email"] ;
    // reading request params
    $apiKey = $headers['Key'];
    // echo json_encode($headers);
    $request['apiKey'] = $apiKey;
    // $request['email'] = $phone ;
    $request['restaurantID'] = $id;
    $request['customerID'] = $id2;
    $controller = new CustomerController();
    // Call controller function
    //echo json_encode($request) ;
    $response = $controller->resetCustomerEmail($request);
    // echo json response
    echoRespnse(200, $response);
});
// GET Request for all employees pertaining to a restaurant
$app->get('/merchant/:id/employees/', 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;