makeAppointment

developed by Murali Balusa
ImpSdk.makeAppointment(data, function(err, data) {
  if (err) {
    // do something with err
  } else {
    console.log(data);
  }
});

Sample input data:

data = {
      'firstname': 'impftest',
      'lastname': 'impltest',
      'email': 'macysimpdev@gmail.com',
      'phone': '1111111111',
      'address1': '680 test st',
      'address2': '',
      'addresscity': 'San Francisco',
      'stateprovince': 'CA',
      'zip': '94105',
      'productofinterest': 'drapery',
      'storeassociate': '10728566', // optional
    };