public WebResult StartTimer(TimeEntryWrapper wrapper) { var url = $"{baseUrl}/time_entries/start"; var res = WebCall.PostRequestWithErrorHandling(url, wrapper, this.authString); return(res); }
public ActionResult CreateHook(NewWebhook newWebhook) => JsonAllowed(WebCall.PostRequestWithErrorHandling(WebhookRegisterURL, newWebhook));
public void StartTimer(TimeEntryWrapper wrapper) { var url = $"{baseUrl}/time_entries/start"; var x = WebCall.PostRequestWithErrorHandling(url, wrapper, this.apiKey); }