コード例 #1
0
        public WebResult StartTimer(TimeEntryWrapper wrapper)
        {
            var url = $"{baseUrl}/time_entries/start";
            var res = WebCall.PostRequestWithErrorHandling(url, wrapper, this.authString);

            return(res);
        }
コード例 #2
0
 public ActionResult CreateHook(NewWebhook newWebhook) => JsonAllowed(WebCall.PostRequestWithErrorHandling(WebhookRegisterURL, newWebhook));
コード例 #3
0
 public void StartTimer(TimeEntryWrapper wrapper)
 {
     var url = $"{baseUrl}/time_entries/start";
     var x   = WebCall.PostRequestWithErrorHandling(url, wrapper, this.apiKey);
 }