Ejemplo n.º 1
0
        public void GetAllProjects()
        {
            QaseAPI qaseAPI = new QaseAPI("https://api.qase.io/v1", "your api token");

            try
            {
                BaseFilter filter = new BaseFilter();
                filter.limit  = 100;
                filter.offset = 0;
                var projects = qaseAPI.GetAllProjectsAsync(filter).Result;
            }
            catch (WebApiException ex)
            {
            }
            catch (ApiException ex)
            {
            }
            catch (Exception ex)
            {
            }
        }