TestIt.ApiClient 2.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package TestIt.ApiClient --version 2.0.0
NuGet\Install-Package TestIt.ApiClient -Version 2.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TestIt.ApiClient" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TestIt.ApiClient --version 2.0.0
#r "nuget: TestIt.ApiClient, 2.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TestIt.ApiClient as a Cake Addin
#addin nuget:?package=TestIt.ApiClient&version=2.0.0

// Install TestIt.ApiClient as a Cake Tool
#tool nuget:?package=TestIt.ApiClient&version=2.0.0

Api client for Test IT TMS

Getting Started

Compatibility

Test IT API Client
3.3 1.0
3.4 1.1
3.5 1.2
3.9 2.0

<a name="frameworks-supported"></a>

Frameworks supported

  • .NET Core >=1.0
  • .NET Framework >=4.6

<a name="installation"></a>

Installation

NuGet CLI

Install-Package TestIt.ApiClient

.NET CLI

dotnet package add TestIt.ApiClient

<a name="examples"></a>

Examples

Please follow the installation instruction and execute the following C# code:

To use the API client with a HTTP proxy, setup a System.Net.WebProxy

Configuration c = new Configuration();
System.Net.WebProxy webProxy = new System.Net.WebProxy("http://myProxyUrl:80/");
webProxy.Credentials = System.Net.CredentialCache.DefaultCredentials;
c.Proxy = webProxy;

<a name="getting-started"></a>

Getting Started

using System.Collections.Generic;
using System.Diagnostics;
using TestIt.Client.Api;
using TestIt.Client.Client;
using TestIt.Client.Model;

namespace Example
{
    public class Example
    {
        public static void Main()
        {

            Configuration config = new Configuration();
            config.BasePath = "Your TMS address";
            config.AddApiKeyPrefix("Authorization","PrivateToken");
            config.AddApiKey("Authorization","Your private token");

            var apiInstance = new AttachmentsApi(config);
            var id = "id_example";  // Guid |

            try
            {
                // Delete attachment file
                apiInstance.ApiV2AttachmentsIdDelete(id);
            }
            catch (ApiException e)
            {
                Debug.Print("Exception when calling AttachmentsApi.ApiV2AttachmentsIdDelete: " + e.Message );
                Debug.Print("Status Code: "+ e.ErrorCode);
                Debug.Print(e.StackTrace);
            }

        }
    }
}

<a name="documentation-for-api-endpoints"></a>

Documentation for API Endpoints

All URIs are relative to http://localhost

Class Method HTTP request Description
AttachmentsApi ApiV2AttachmentsIdDelete DELETE /api/v2/attachments/{id} Delete attachment file
AttachmentsApi ApiV2AttachmentsIdGet GET /api/v2/attachments/{id} Download attachment file
AttachmentsApi ApiV2AttachmentsOccupiedFileStorageSizeGet GET /api/v2/attachments/occupiedFileStorageSize
AttachmentsApi ApiV2AttachmentsPost POST /api/v2/attachments Upload new attachment file
AutoTestsApi ApiV2AutoTestsFlakyBulkPost POST /api/v2/autoTests/flaky/bulk Set "Flaky" status for multiple autotests
AutoTestsApi ApiV2AutoTestsIdTestResultsSearchPost POST /api/v2/autoTests/{id}/testResults/search Get test results history for autotest
AutoTestsApi ApiV2AutoTestsIdWorkItemsChangedIdGet GET /api/v2/autoTests/{id}/workItems/changed/id Get identifiers of changed linked work items
AutoTestsApi ApiV2AutoTestsIdWorkItemsChangedWorkItemIdApprovePost POST /api/v2/autoTests/{id}/workItems/changed/{workItemId}/approve Approve changes to work items linked to autotest
AutoTestsApi ApiV2AutoTestsSearchPost POST /api/v2/autoTests/search
AutoTestsApi CreateAutoTest POST /api/v2/autoTests Create autotest
AutoTestsApi CreateMultiple POST /api/v2/autoTests/bulk Create multiple autotests
AutoTestsApi DeleteAutoTest DELETE /api/v2/autoTests/{id} Delete autotest
AutoTestsApi DeleteAutoTestLinkFromWorkItem DELETE /api/v2/autoTests/{id}/workItems Unlink autotest from work item
AutoTestsApi GetAllAutoTests GET /api/v2/autoTests Get all autotests
AutoTestsApi GetAutoTestAverageDuration GET /api/v2/autoTests/{id}/averageDuration Get average autotest duration
AutoTestsApi GetAutoTestById GET /api/v2/autoTests/{id} Get autotest by internal or global ID
AutoTestsApi GetAutoTestChronology GET /api/v2/autoTests/{id}/chronology Get autotest chronology
AutoTestsApi GetTestRuns GET /api/v2/autoTests/{id}/testRuns Get completed tests runs for autotests
AutoTestsApi GetWorkItemResults GET /api/v2/autoTests/{id}/testResultHistory
AutoTestsApi GetWorkItemsLinkedToAutoTest GET /api/v2/autoTests/{id}/workItems Get work items linked to autotest
AutoTestsApi LinkAutoTestToWorkItem POST /api/v2/autoTests/{id}/workItems Link autotest with work items
AutoTestsApi UpdateAutoTest PUT /api/v2/autoTests Update autotest
AutoTestsApi UpdateMultiple PUT /api/v2/autoTests/bulk Update multiple autotests
ConfigurationsApi ApiV2ConfigurationsCreateByParametersPost POST /api/v2/configurations/createByParameters Create Configurations by parameters
ConfigurationsApi ApiV2ConfigurationsSearchPost POST /api/v2/configurations/search Search for configurations
ConfigurationsApi CreateConfiguration POST /api/v2/configurations Create Configuration
ConfigurationsApi GetConfigurationById GET /api/v2/configurations/{id} Get configuration by internal or global ID
ConfigurationsApi UpdateConfiguration PUT /api/v2/configurations Update Configuration
CustomAttributeTemplatesApi ApiV2CustomAttributesTemplatesIdCustomAttributesExcludePost POST /api/v2/customAttributes/templates/{id}/customAttributes/exclude Exclude CustomAttributes from CustomAttributeTemplate
CustomAttributeTemplatesApi ApiV2CustomAttributesTemplatesIdCustomAttributesIncludePost POST /api/v2/customAttributes/templates/{id}/customAttributes/include Include CustomAttributes to CustomAttributeTemplate
CustomAttributeTemplatesApi ApiV2CustomAttributesTemplatesIdDelete DELETE /api/v2/customAttributes/templates/{id} Delete CustomAttributeTemplate
CustomAttributeTemplatesApi ApiV2CustomAttributesTemplatesIdGet GET /api/v2/customAttributes/templates/{id} Get CustomAttributeTemplate by ID
CustomAttributeTemplatesApi ApiV2CustomAttributesTemplatesNameGet GET /api/v2/customAttributes/templates/{name} Get CustomAttributeTemplate by name
CustomAttributeTemplatesApi ApiV2CustomAttributesTemplatesPost POST /api/v2/customAttributes/templates Create CustomAttributeTemplate
CustomAttributeTemplatesApi ApiV2CustomAttributesTemplatesPut PUT /api/v2/customAttributes/templates Update CustomAttributeTemplate
CustomAttributeTemplatesApi ApiV2CustomAttributesTemplatesSearchPost POST /api/v2/customAttributes/templates/search Search CustomAttributeTemplates
CustomAttributesApi ApiV2CustomAttributesGlobalIdDelete DELETE /api/v2/customAttributes/global/{id} Delete global attribute
CustomAttributesApi ApiV2CustomAttributesGlobalIdPut PUT /api/v2/customAttributes/global/{id} Edit global attribute
CustomAttributesApi ApiV2CustomAttributesGlobalPost POST /api/v2/customAttributes/global Create global attribute
CustomAttributesApi ApiV2CustomAttributesIdGet GET /api/v2/customAttributes/{id} Get attribute
CustomAttributesApi ApiV2CustomAttributesSearchPost POST /api/v2/customAttributes/search Search for attributes
NotificationsApi ApiV2NotificationsCountGet GET /api/v2/notifications/count Get unread Notifications total in last 7 days
NotificationsApi ApiV2NotificationsGet GET /api/v2/notifications Get all Notifications for current User
NotificationsApi ApiV2NotificationsIdReadPost POST /api/v2/notifications/{id}/read Set Notification as read
NotificationsApi ApiV2NotificationsReadPost POST /api/v2/notifications/read Set all Notifications as read
ParametersApi ApiV2ParametersBulkPost POST /api/v2/parameters/bulk Create multiple parameters
ParametersApi ApiV2ParametersBulkPut PUT /api/v2/parameters/bulk Update multiple parameters
ParametersApi ApiV2ParametersGroupsGet GET /api/v2/parameters/groups Get parameters as group
ParametersApi ApiV2ParametersKeyNameNameExistsGet GET /api/v2/parameters/key/name/{name}/exists Check existence parameter key in system
ParametersApi ApiV2ParametersKeyValuesGet GET /api/v2/parameters/{key}/values Get all parameter key values
ParametersApi ApiV2ParametersKeysGet GET /api/v2/parameters/keys Get all parameter keys
ParametersApi CreateParameter POST /api/v2/parameters Create parameter
ParametersApi DeleteByName DELETE /api/v2/parameters/name/{name} Delete parameter by name
ParametersApi DeleteByParameterKeyId DELETE /api/v2/parameters/keyId/{keyId} Delete parameters by parameter key identifier
ParametersApi DeleteParameter DELETE /api/v2/parameters/{id} Delete parameter
ParametersApi GetAllParameters GET /api/v2/parameters Get all parameters
ParametersApi GetParameterById GET /api/v2/parameters/{id} Get parameter by ID
ParametersApi ObsoleteDeleteByName POST /api/v2/parameters/deleteByName
ParametersApi UpdateParameter PUT /api/v2/parameters Update parameter
ProjectsApi AddGlobaAttributesToProject POST /api/v2/projects/{id}/globalAttributes Add global attributes to project
ProjectsApi ApiV2ProjectsIdCustomAttributeTemplatesTemplateIdDelete DELETE /api/v2/projects/{id}/customAttributeTemplates/{templateId} Delete CustomAttributeTemplate from Project
ProjectsApi ApiV2ProjectsIdCustomAttributeTemplatesTemplateIdPost POST /api/v2/projects/{id}/customAttributeTemplates/{templateId} Add CustomAttributeTemplate to Project
ProjectsApi ApiV2ProjectsIdFailureClassesGet GET /api/v2/projects/{id}/failureClasses Get Project FailureClasses
ProjectsApi ApiV2ProjectsIdFavoritePut PUT /api/v2/projects/{id}/favorite Mark Project as favorite
ProjectsApi ApiV2ProjectsIdFiltersGet GET /api/v2/projects/{id}/filters Get Project filters
ProjectsApi ApiV2ProjectsIdTestPlansAnalyticsGet GET /api/v2/projects/{id}/testPlans/analytics Get TestPlans analytics
ProjectsApi ApiV2ProjectsIdTestPlansSearchPost POST /api/v2/projects/{id}/testPlans/search Get Project TestPlans with analytics
ProjectsApi ApiV2ProjectsIdTestRunsActiveGet GET /api/v2/projects/{id}/testRuns/active Get active Project TestRuns
ProjectsApi ApiV2ProjectsIdTestRunsFullGet GET /api/v2/projects/{id}/testRuns/full Get Project TestRuns full models
ProjectsApi ApiV2ProjectsIdWorkItemsTagsGet GET /api/v2/projects/{id}/workItems/tags Get WorkItems Tags
ProjectsApi ApiV2ProjectsSearchPost POST /api/v2/projects/search
ProjectsApi CreateCustomAttributeTestPlanProjectRelations POST /api/v2/projects/{id}/testPlans/attributes Add attributes to project's test plans
ProjectsApi CreateProject POST /api/v2/projects Create project
ProjectsApi CreateProjectsAttribute POST /api/v2/projects/{id}/attributes Create project attribute
ProjectsApi DeleteCustomAttributeTestPlanProjectRelations DELETE /api/v2/projects/{id}/testPlans/attribute/{attributeId} Delete attribute from project's test plans
ProjectsApi DeleteProject DELETE /api/v2/projects/{id} Delete project
ProjectsApi DeleteProjectAutoTests DELETE /api/v2/projects/{id}/autoTests Delete project
ProjectsApi DeleteProjectsAttribute DELETE /api/v2/projects/{id}/attributes/{attributeId} Delete project attribute
ProjectsApi Export POST /api/v2/projects/{id}/export Export project as JSON file
ProjectsApi ExportWithTestPlansAndConfigurations POST /api/v2/projects/{id}/export-by-testPlans Export project with test plans, test suites and test points as JSON file
ProjectsApi GetAllProjects GET /api/v2/projects Get all projects
ProjectsApi GetAttributeByProjectId GET /api/v2/projects/{id}/attributes/{attributeId} Get project attribute
ProjectsApi GetAttributesByProjectId GET /api/v2/projects/{id}/attributes Get project attributes
ProjectsApi GetAutoTestsNamespaces GET /api/v2/projects/{id}/autoTestsNamespaces Get namespaces of autotests in project
ProjectsApi GetConfigurationsByProjectId GET /api/v2/projects/{id}/configurations Get project configurations
ProjectsApi GetCustomAttributeTestPlanProjectRelations GET /api/v2/projects/{id}/testPlans/attributes Get project's test plan attributes
ProjectsApi GetProjectById GET /api/v2/projects/{id} Get project by ID
ProjectsApi GetSectionsByProjectId GET /api/v2/projects/{id}/sections Get project sections
ProjectsApi GetTestPlansByProjectId GET /api/v2/projects/{id}/testPlans Get project test plans
ProjectsApi GetTestRunsByProjectId GET /api/v2/projects/{id}/testRuns Get project test runs
ProjectsApi GetWorkItemsByProjectId GET /api/v2/projects/{id}/workItems Get project work items
ProjectsApi Import POST /api/v2/projects/import Import project from JSON file
ProjectsApi ImportToExistingProject POST /api/v2/projects/{id}/import Import project from JSON file into existing project
ProjectsApi RestoreProject POST /api/v2/projects/{id}/restore Restore project
ProjectsApi SearchAttributesInProject POST /api/v2/projects/{id}/attributes/search
ProjectsApi SearchTestPlanAttributesInProject POST /api/v2/projects/{id}/testPlans/attributes/search
ProjectsApi UpdateCustomAttributeTestPlanProjectRelations PUT /api/v2/projects/{id}/testPlans/attribute Update attribute of project's test plans
ProjectsApi UpdateProject PUT /api/v2/projects Update project
ProjectsApi UpdateProjectsAttribute PUT /api/v2/projects/{id}/attributes Update project attribute
SectionsApi CreateSection POST /api/v2/sections Create section
SectionsApi DeleteSection DELETE /api/v2/sections/{id} Delete section
SectionsApi GetSectionById GET /api/v2/sections/{id} Get section
SectionsApi GetWorkItemsBySectionId GET /api/v2/sections/{id}/workItems Get section work items
SectionsApi Move POST /api/v2/sections/move Move section
SectionsApi Rename POST /api/v2/sections/rename Rename section
SectionsApi UpdateSection PUT /api/v2/sections Update section
TagsApi ApiV2TagsGet GET /api/v2/tags Get all Tags
TagsApi ApiV2TagsTestPlansTagsGet GET /api/v2/tags/testPlansTags Get all Tags that are used in TestPlans
TestPlansApi AddTestPointsWithSections POST /api/v2/testPlans/{id}/test-points/withSections Add test-points to TestPlan with sections
TestPlansApi AddWorkItemsWithSections POST /api/v2/testPlans/{id}/workItems/withSections Add WorkItems to TestPlan with Sections as TestSuites
TestPlansApi ApiV2TestPlansIdAnalyticsGet GET /api/v2/testPlans/{id}/analytics Get analytics by TestPlan
TestPlansApi ApiV2TestPlansIdAutobalancePost POST /api/v2/testPlans/{id}/autobalance Auto-balance for TestPlan with testers
TestPlansApi ApiV2TestPlansIdConfigurationsGet GET /api/v2/testPlans/{id}/configurations Get TestPlan configurations
TestPlansApi ApiV2TestPlansIdExportTestPointsXlsxPost POST /api/v2/testPlans/{id}/export/testPoints/xlsx Export TestPoints from TestPlan in xls format
TestPlansApi ApiV2TestPlansIdExportTestResultHistoryXlsxPost POST /api/v2/testPlans/{id}/export/testResultHistory/xlsx Export TestResults history from TestPlan in xls format
TestPlansApi ApiV2TestPlansIdHistoryGet GET /api/v2/testPlans/{id}/history Get TestPlan history
TestPlansApi ApiV2TestPlansIdLinksGet GET /api/v2/testPlans/{id}/links Get Links of TestPlan
TestPlansApi ApiV2TestPlansIdTestPointsLastResultsGet GET /api/v2/testPlans/{id}/testPoints/lastResults Get TestPoints with last result from TestPlan
TestPlansApi ApiV2TestPlansIdTestPointsResetPost POST /api/v2/testPlans/{id}/testPoints/reset Reset TestPoints status of TestPlan
TestPlansApi ApiV2TestPlansIdTestRunsGet GET /api/v2/testPlans/{id}/testRuns Get TestRuns of TestPlan
TestPlansApi ApiV2TestPlansIdTestRunsSearchPost POST /api/v2/testPlans/{id}/testRuns/search Search TestRuns of TestPlan
TestPlansApi ApiV2TestPlansIdTestRunsTestResultsLastModifiedModifiedDateGet GET /api/v2/testPlans/{id}/testRuns/testResults/lastModified/modifiedDate Get max modified date in TestRun for TestPlan
TestPlansApi ApiV2TestPlansIdUnlockRequestPost POST /api/v2/testPlans/{id}/unlock/request Send unlock TestPlan notification
TestPlansApi ApiV2TestPlansShortsPost POST /api/v2/testPlans/shorts Get TestPlans short models by Project identifiers
TestPlansApi Clone POST /api/v2/testPlans/{id}/clone Clone TestPlan
TestPlansApi Complete POST /api/v2/testPlans/{id}/complete Complete TestPlan
TestPlansApi CreateTestPlan POST /api/v2/testPlans Create TestPlan
TestPlansApi DeleteTestPlan DELETE /api/v2/testPlans/{id} Delete TestPlan
TestPlansApi GetTestPlanById GET /api/v2/testPlans/{id} Get TestPlan by Id
TestPlansApi GetTestSuitesById GET /api/v2/testPlans/{id}/testSuites Get TestSuites Tree By Id
TestPlansApi Pause POST /api/v2/testPlans/{id}/pause Pause TestPlan
TestPlansApi RestoreTestPlan POST /api/v2/testPlans/{id}/restore Restore TestPlan
TestPlansApi Start POST /api/v2/testPlans/{id}/start Start TestPlan
TestPlansApi UpdateTestPlan PUT /api/v2/testPlans Update TestPlan
TestPointsApi ApiV2TestPointsIdTestRunsGet GET /api/v2/testPoints/{id}/testRuns
TestPointsApi ApiV2TestPointsIdWorkItemGet GET /api/v2/testPoints/{id}/workItem
TestPointsApi ApiV2TestPointsSearchIdPost POST /api/v2/testPoints/search/id
TestPointsApi ApiV2TestPointsSearchPost POST /api/v2/testPoints/search
TestResultsApi ApiV2TestResultsIdAggregatedGet GET /api/v2/testResults/{id}/aggregated
TestResultsApi ApiV2TestResultsIdAttachmentsAttachmentIdPut PUT /api/v2/testResults/{id}/attachments/{attachmentId}
TestResultsApi ApiV2TestResultsIdAttachmentsInfoGet GET /api/v2/testResults/{id}/attachments/info
TestResultsApi ApiV2TestResultsIdGet GET /api/v2/testResults/{id}
TestResultsApi ApiV2TestResultsIdPut PUT /api/v2/testResults/{id}
TestResultsApi ApiV2TestResultsSearchPost POST /api/v2/testResults/search
TestResultsApi ApiV2TestResultsStatisticsFilterPost POST /api/v2/testResults/statistics/filter
TestResultsApi CreateAttachment POST /api/v2/testResults/{id}/attachments Upload and link attachment to TestResult
TestResultsApi DeleteAttachment DELETE /api/v2/testResults/{id}/attachments/{attachmentId} Remove attachment and unlink from TestResult
TestResultsApi DownloadAttachment GET /api/v2/testResults/{id}/attachments/{attachmentId} Get attachment of TestResult
TestResultsApi GetAttachment GET /api/v2/testResults/{id}/attachments/{attachmentId}/info Get Metadata of TestResult's attachment
TestResultsApi GetAttachments GET /api/v2/testResults/{id}/attachments Get all attachments of TestResult
TestRunsApi ApiV2TestRunsIdStatisticsFilterPost POST /api/v2/testRuns/{id}/statistics/filter
TestRunsApi ApiV2TestRunsIdTestPointsResultsGet GET /api/v2/testRuns/{id}/testPoints/results
TestRunsApi ApiV2TestRunsIdTestResultsBulkPut PUT /api/v2/testRuns/{id}/testResults/bulk
TestRunsApi ApiV2TestRunsIdTestResultsLastModifiedModificationDateGet GET /api/v2/testRuns/{id}/testResults/lastModified/modificationDate
TestRunsApi ApiV2TestRunsSearchPost POST /api/v2/testRuns/search
TestRunsApi CompleteTestRun POST /api/v2/testRuns/{id}/complete Complete TestRun
TestRunsApi CreateAndFillByAutoTests POST /api/v2/testRuns/byAutoTests Create test runs based on autotests and configurations
TestRunsApi CreateAndFillByConfigurations POST /api/v2/testRuns/byConfigurations Create test runs picking the needed test points
TestRunsApi CreateAndFillByWorkItems POST /api/v2/testRuns/byWorkItems Create test run based on configurations and work items
TestRunsApi CreateEmpty POST /api/v2/testRuns Create empty TestRun
TestRunsApi GetTestRunById GET /api/v2/testRuns/{id} Get TestRun by Id
TestRunsApi SetAutoTestResultsForTestRun POST /api/v2/testRuns/{id}/testResults Send test results to the test runs in the system
TestRunsApi StartTestRun POST /api/v2/testRuns/{id}/start Start TestRun
TestRunsApi StopTestRun POST /api/v2/testRuns/{id}/stop Stop TestRun
TestRunsApi UpdateEmpty PUT /api/v2/testRuns Update empty TestRun
TestSuitesApi AddTestPointsToTestSuite POST /api/v2/testSuites/{id}/test-points Add test-points to test suite
TestSuitesApi CreateTestSuite POST /api/v2/testSuites Create TestSuite
TestSuitesApi DeleteTestSuite DELETE /api/v2/testSuites/{id} Delete TestSuite
TestSuitesApi GetConfigurationsByTestSuiteId GET /api/v2/testSuites/{id}/configurations Get Configurations By Id
TestSuitesApi GetTestPointsById GET /api/v2/testSuites/{id}/testPoints Get TestPoints By Id
TestSuitesApi GetTestResultsById GET /api/v2/testSuites/{id}/testResults Get TestResults By Id
TestSuitesApi GetTestSuiteById GET /api/v2/testSuites/{id} Get TestSuite by Id
TestSuitesApi GetWorkItemsById GET /api/v2/testSuites/{id}/workItems
TestSuitesApi SearchWorkItems POST /api/v2/testSuites/{id}/workItems/search Search WorkItems
TestSuitesApi SetConfigurationsByTestSuiteId POST /api/v2/testSuites/{id}/configurations Set Configurations By TestSuite Id
TestSuitesApi SetWorkItemsByTestSuiteId POST /api/v2/testSuites/{id}/workItems Set WorkItems By TestSuite Id
TestSuitesApi UpdateTestSuite PUT /api/v2/testSuites Update TestSuite
WebhooksApi ApiV2WebhooksGet GET /api/v2/webhooks
WebhooksApi ApiV2WebhooksIdDelete DELETE /api/v2/webhooks/{id}
WebhooksApi ApiV2WebhooksIdGet GET /api/v2/webhooks/{id}
WebhooksApi ApiV2WebhooksIdPut PUT /api/v2/webhooks/{id}
WebhooksApi ApiV2WebhooksPost POST /api/v2/webhooks
WebhooksApi ApiV2WebhooksSearchPost POST /api/v2/webhooks/search
WebhooksApi ApiV2WebhooksSpecialVariablesGet GET /api/v2/webhooks/specialVariables
WebhooksLogsApi ApiV2WebhooksLogsGet GET /api/v2/webhooks/logs
WebhooksLogsApi ApiV2WebhooksLogsIdDelete DELETE /api/v2/webhooks/logs/{id}
WebhooksLogsApi ApiV2WebhooksLogsIdGet GET /api/v2/webhooks/logs/{id}
WorkItemsApi ApiV2WorkItemsIdCheckListTransformToTestCasePost POST /api/v2/workItems/{id}/checkList/transformTo/testCase Transform CheckList to TestCase
WorkItemsApi ApiV2WorkItemsIdHistoryGet GET /api/v2/workItems/{id}/history Get change history of WorkItem
WorkItemsApi ApiV2WorkItemsIdLikeDelete DELETE /api/v2/workItems/{id}/like Delete like from WorkItem
WorkItemsApi ApiV2WorkItemsIdLikePost POST /api/v2/workItems/{id}/like Set like to WorkItem
WorkItemsApi ApiV2WorkItemsIdLikesCountGet GET /api/v2/workItems/{id}/likes/count Get likes count of WorkItem
WorkItemsApi ApiV2WorkItemsIdLikesGet GET /api/v2/workItems/{id}/likes Get likes of WorkItem
WorkItemsApi ApiV2WorkItemsIdTestResultsHistoryGet GET /api/v2/workItems/{id}/testResults/history Get test results history of WorkItem
WorkItemsApi ApiV2WorkItemsIdVersionVersionIdActualPost POST /api/v2/workItems/{id}/version/{versionId}/actual Set WorkItem as actual
WorkItemsApi ApiV2WorkItemsMovePost POST /api/v2/workItems/move Move WorkItem to another section
WorkItemsApi ApiV2WorkItemsSharedStepIdReferencesSectionsPost POST /api/v2/workItems/{sharedStepId}/references/sections Get SharedStep references in sections
WorkItemsApi ApiV2WorkItemsSharedStepIdReferencesWorkItemsPost POST /api/v2/workItems/{sharedStepId}/references/workItems Get SharedStep references in workitems
WorkItemsApi ApiV2WorkItemsSharedStepsSharedStepIdReferencesGet GET /api/v2/workItems/sharedSteps/{sharedStepId}/references Get SharedStep references
WorkItemsApi CreateWorkItem POST /api/v2/workItems Create Test Case, Checklist or Shared Step
WorkItemsApi DeleteAllWorkItemsFromAutoTest DELETE /api/v2/workItems/{id}/autoTests Delete all links AutoTests from WorkItem by Id or GlobalId
WorkItemsApi DeleteWorkItem DELETE /api/v2/workItems/{id} Delete Test Case, Checklist or Shared Step by Id or GlobalId
WorkItemsApi GetAutoTestsForWorkItem GET /api/v2/workItems/{id}/autoTests Get all AutoTests linked to WorkItem by Id or GlobalId
WorkItemsApi GetIterations GET /api/v2/workItems/{id}/iterations Get iterations by workitem Id or GlobalId
WorkItemsApi GetWorkItemById GET /api/v2/workItems/{id} Get Test Case, Checklist or Shared Step by Id or GlobalId
WorkItemsApi GetWorkItemChronology GET /api/v2/workItems/{id}/chronology Get WorkItem chronology by Id or GlobalId
WorkItemsApi GetWorkItemVersions GET /api/v2/workItems/{id}/versions Get WorkItem versions
WorkItemsApi UpdateWorkItem PUT /api/v2/workItems Update Test Case, Checklist or Shared Step
WorkItemsCommentsApi ApiV2WorkItemsCommentsCommentIdDelete DELETE /api/v2/workItems/comments/{commentId} Delete WorkItem comment
WorkItemsCommentsApi ApiV2WorkItemsCommentsPost POST /api/v2/workItems/comments Create WorkItem comment
WorkItemsCommentsApi ApiV2WorkItemsCommentsPut PUT /api/v2/workItems/comments Update WorkItem comment
WorkItemsCommentsApi ApiV2WorkItemsIdCommentsGet GET /api/v2/workItems/{id}/comments Get WorkItem comments by Id or GlobalId

<a name="documentation-for-models"></a>

Documentation for Models

You can see the documentation here

Contributing

You can help to develop the project. Any contributions are greatly appreciated.

  • If you have suggestions for adding or removing projects, feel free to open an issue to discuss it, or directly create a pull request after you edit the README.md file with necessary changes.
  • Please make sure you check your spelling and grammar.
  • Create individual PR for each suggestion.
  • Please also read through the Code Of Conduct before posting your first idea as well.

License

Distributed under the Apache-2.0 License. See LICENSE for more information.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on TestIt.ApiClient:

Package Downloads
TestIT.Adapter.Core

Test IT Core adapter

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.0 519 5/20/2024
2.6.0 2,864 3/4/2024
2.5.0 3,643 11/27/2023
2.4.0 636 9/13/2023
2.2.0 9,628 4/27/2023
2.1.0 3,109 2/27/2023
2.0.0 996 9/16/2022
1.2.1 772 5/19/2022
1.1.0 725 12/21/2021
1.0.2 716 11/1/2021