Example #1
0
 /// <summary>
 /// Send PIN Reset SMS
 /// </summary>
 /// <remarks>
 /// Sends kiosk PIN reset instructions to an employee by SMS. Note that the current business must have SMS notifications enabled.
 /// </remarks>
 public void SendPinResetSms(int businessId, PinResetModel model, string kioskId)
 {
     ApiRequest($"/business/{businessId}/kiosk/{kioskId}/smsreset", model, Method.POST);
 }
Example #2
0
 /// <summary>
 /// Send PIN Reset SMS
 /// </summary>
 /// <remarks>
 /// Sends kiosk PIN reset instructions to an employee by SMS. Note that the current business must have SMS notifications enabled.
 /// </remarks>
 public Task SendPinResetSmsAsync(int businessId, PinResetModel model, string kioskId, CancellationToken cancellationToken = default)
 {
     return ApiRequestAsync($"/business/{businessId}/kiosk/{kioskId}/smsreset", model, Method.POST, cancellationToken);
 }
Example #3
0
 public HttpResponseMessage SmsReset(int businessId, int kioskId, PinResetModel model)
 {
     return(ApiRequest <HttpResponseMessage, PinResetModel>($"/business/{businessId}/manager/kiosk/{kioskId}/smsreset", model, Method.POST));
 }