| Test IT | API Client |
|---|---|
| 3.3 | 1.0 |
| 3.4 | 1.1 |
| 3.5 | 1.2 |
| 3.9 | 2.0 |
| 4.0 | 2.1 |
| 4.2 | 2.2 |
| 4.3 | 2.3 |
| 4.4 | 2.4 |
| 4.5 | 2.5 |
| 4.6 | 2.6 |
| 5.0 | 3.0 |
| 5.2 | 3.1 |
| 5.2.2 | 4.0.0-TMS-5.2.2 |
| 5.3 | 5.0.1-TMS-5.3 |
| 5.4 | 5.2.0-TMS-5.4 |
| 5.4.1 | 5.2.2-TMS-5.4.1 |
| 5.5 | 5.2.4-TMS-5.5 |
| 5.6 | 5.4.0-TMS-5.6 |
| Cloud | 5.5.0 + |
- For current versions, see the releases tab.
- Starting with 5.2, we have added a TMS postscript, which means that the utility is compatible with a specific enterprise version.
- If you are in doubt about which version to use, check with the support staff. support@yoonion.ru
- .NET Core >=1.0
- .NET Framework >=4.6
Install-Package TestIt.ApiClient
dotnet package add TestIt.ApiClient
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;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);
}
}
}
}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 | ApiV2AttachmentsIdMetadataGet | GET /api/v2/attachments/{id}/metadata | Get attachment metadata |
| AttachmentsApi | ApiV2AttachmentsOccupiedFileStorageSizeGet | GET /api/v2/attachments/occupiedFileStorageSize | Get size of attachments storage in bytes |
| AttachmentsApi | ApiV2AttachmentsPost | POST /api/v2/attachments | Upload new attachment file |
| AutoTestsApi | ApiV2AutoTestsDelete | DELETE /api/v2/autoTests | Delete autotests |
| AutoTestsApi | ApiV2AutoTestsFlakyBulkPost | POST /api/v2/autoTests/flaky/bulk | Set "Flaky" status for multiple autotests |
| AutoTestsApi | ApiV2AutoTestsIdPatch | PATCH /api/v2/autoTests/{id} | Patch auto test |
| 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 | Search for autotests |
| 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 | |
| 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 | 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 |
| BackgroundJobsApi | ApiV2BackgroundJobsCompletedDelete | DELETE /api/v2/backgroundJobs/completed | Delete all completed background jobs |
| BackgroundJobsApi | ApiV2BackgroundJobsGet | GET /api/v2/backgroundJobs | |
| BackgroundJobsApi | ApiV2BackgroundJobsIdCancelPost | POST /api/v2/backgroundJobs/{id}/cancel | Cancel current user background job |
| BackgroundJobsApi | ApiV2BackgroundJobsIdGet | GET /api/v2/backgroundJobs/{id} | Get background job by ID |
| BackgroundJobsApi | ApiV2BackgroundJobsIdStatusGet | GET /api/v2/backgroundJobs/{id}/status | Get background job status by job ID |
| BackgroundJobsApi | ApiV2BackgroundJobsSearchPost | POST /api/v2/backgroundJobs/search | Search for user background jobs |
| ConfigurationsApi | ApiV2ConfigurationsCreateByParametersPost | POST /api/v2/configurations/createByParameters | Create configurations by parameters |
| ConfigurationsApi | ApiV2ConfigurationsDeleteBulkPost | POST /api/v2/configurations/delete/bulk | Delete multiple configurations |
| ConfigurationsApi | ApiV2ConfigurationsIdDelete | DELETE /api/v2/configurations/{id} | Delete configuration |
| ConfigurationsApi | ApiV2ConfigurationsIdPatch | PATCH /api/v2/configurations/{id} | Patch configuration |
| ConfigurationsApi | ApiV2ConfigurationsIdPurgePost | POST /api/v2/configurations/{id}/purge | Permanently delete configuration from archive |
| ConfigurationsApi | ApiV2ConfigurationsIdRestorePost | POST /api/v2/configurations/{id}/restore | Restore configuration from the archive |
| ConfigurationsApi | ApiV2ConfigurationsPurgeBulkPost | POST /api/v2/configurations/purge/bulk | Permanently delete multiple archived configurations |
| ConfigurationsApi | ApiV2ConfigurationsPut | PUT /api/v2/configurations | Edit configuration |
| ConfigurationsApi | ApiV2ConfigurationsRestoreBulkPost | POST /api/v2/configurations/restore/bulk | Restore multiple configurations from the archive |
| 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 |
| CustomAttributeTemplatesApi | ApiV2CustomAttributesTemplatesExistsGet | GET /api/v2/customAttributes/templates/exists | |
| 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 custom attributes template |
| CustomAttributeTemplatesApi | ApiV2CustomAttributesTemplatesSearchPost | POST /api/v2/customAttributes/templates/search | Search CustomAttributeTemplates |
| CustomAttributesApi | ApiV2CustomAttributesExistsGet | GET /api/v2/customAttributes/exists | |
| 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 |
| ExternalIssuesApi | ApiV2ExternalIssuesSuggestionsPost | POST /api/v2/external-issues/suggestions | Returns list of suggestions from available external issues |
| 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 |
| NotificationsApi | ApiV2NotificationsSearchPost | POST /api/v2/notifications/search | Search Notifications for current User |
| 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 | ApiV2ParametersSearchGroupsPost | POST /api/v2/parameters/search/groups | Search for parameters as group |
| ParametersApi | ApiV2ParametersSearchPost | POST /api/v2/parameters/search | Search for parameters |
| 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 | UpdateParameter | PUT /api/v2/parameters | Update parameter |
| ProjectAttributeTemplatesApi | ApiV2ProjectsProjectIdAttributesTemplatesSearchPost | POST /api/v2/projects/{projectId}/attributes/templates/search | Search for custom attributes templates |
| ProjectAttributeTemplatesApi | ApiV2ProjectsProjectIdAttributesTemplatesTemplateIdDelete | DELETE /api/v2/projects/{projectId}/attributes/templates/{templateId} | Delete CustomAttributeTemplate from Project |
| ProjectAttributeTemplatesApi | ApiV2ProjectsProjectIdAttributesTemplatesTemplateIdPost | POST /api/v2/projects/{projectId}/attributes/templates/{templateId} | Add CustomAttributeTemplate to Project |
| ProjectAttributesApi | CreateProjectsAttribute | POST /api/v2/projects/{projectId}/attributes | Create project attribute |
| ProjectAttributesApi | DeleteProjectsAttribute | DELETE /api/v2/projects/{projectId}/attributes/{attributeId} | Delete project attribute |
| ProjectAttributesApi | GetAttributeByProjectId | GET /api/v2/projects/{projectId}/attributes/{attributeId} | Get project attribute |
| ProjectAttributesApi | GetAttributesByProjectId | GET /api/v2/projects/{projectId}/attributes | Get project attributes |
| ProjectAttributesApi | SearchAttributesInProject | POST /api/v2/projects/{projectId}/attributes/search | Search for attributes used in the project |
| ProjectAttributesApi | UpdateProjectsAttribute | PUT /api/v2/projects/{projectId}/attributes | Edit attribute of the project |
| ProjectConfigurationsApi | GetConfigurationsByProjectId | GET /api/v2/projects/{projectId}/configurations | Get project configurations |
| ProjectSectionsApi | GetSectionsByProjectId | GET /api/v2/projects/{projectId}/sections | Get project sections |
| ProjectSettingsApi | ApiV2ProjectsProjectIdSettingsAutotestsPost | POST /api/v2/projects/{projectId}/settings/autotests | Set autotest project settings. |
| ProjectSettingsApi | GetAutotestProjectSettings | GET /api/v2/projects/{projectId}/settings/autotests | Get autotest project settings. |
| ProjectTestPlanAttributesApi | CreateCustomAttributeTestPlanProjectRelations | POST /api/v2/projects/{projectId}/testPlans/attributes | Add attributes to project's test plans |
| ProjectTestPlanAttributesApi | DeleteCustomAttributeTestPlanProjectRelations | DELETE /api/v2/projects/{projectId}/testPlans/attributes/{attributeId} | Delete attribute from project's test plans |
| ProjectTestPlanAttributesApi | GetCustomAttributeTestPlanProjectRelations | GET /api/v2/projects/{projectId}/testPlans/attributes | Get project's test plan attributes |
| ProjectTestPlanAttributesApi | SearchTestPlanAttributesInProject | POST /api/v2/projects/{projectId}/testPlans/attributes/search | Search for attributes used in the project test plans |
| ProjectTestPlanAttributesApi | UpdateCustomAttributeTestPlanProjectRelations | PUT /api/v2/projects/{projectId}/testPlans/attributes | Update attribute of project's test plans |
| ProjectTestPlanTestPointsApi | ApiV2ProjectsProjectIdTestPlansTestPlanIdTestPointsAutotestsRerunPost | POST /api/v2/projects/{projectId}/test-plans/{testPlanId}/test-points/autotests/rerun | Rerun autotests. |
| ProjectTestPlanTestPointsApi | ApiV2ProjectsProjectIdTestPlansTestPlanIdTestPointsAutotestsRunPost | POST /api/v2/projects/{projectId}/test-plans/{testPlanId}/test-points/autotests/run | Run autotests. |
| ProjectTestPlansApi | ApiV2ProjectsProjectIdTestPlansAnalyticsGet | GET /api/v2/projects/{projectId}/testPlans/analytics | Get TestPlans analytics |
| ProjectTestPlansApi | ApiV2ProjectsProjectIdTestPlansDeleteBulkPost | POST /api/v2/projects/{projectId}/testPlans/delete/bulk | Delete multiple test plans |
| ProjectTestPlansApi | ApiV2ProjectsProjectIdTestPlansNameExistsGet | GET /api/v2/projects/{projectId}/testPlans/{name}/exists | Checks if TestPlan exists with the specified name exists for the project |
| ProjectTestPlansApi | ApiV2ProjectsProjectIdTestPlansPurgeBulkPost | POST /api/v2/projects/{projectId}/testPlans/purge/bulk | Permanently delete multiple archived test plans |
| ProjectTestPlansApi | ApiV2ProjectsProjectIdTestPlansRestoreBulkPost | POST /api/v2/projects/{projectId}/testPlans/restore/bulk | Restore multiple test plans |
| ProjectTestPlansApi | ApiV2ProjectsProjectIdTestPlansSearchPost | POST /api/v2/projects/{projectId}/testPlans/search | Get Project TestPlans with analytics |
| ProjectWorkItemsApi | ApiV2ProjectsProjectIdWorkItemsSearchGroupedPost | POST /api/v2/projects/{projectId}/workItems/search/grouped | Search for work items and group results by attribute |
| ProjectWorkItemsApi | ApiV2ProjectsProjectIdWorkItemsSearchIdPost | POST /api/v2/projects/{projectId}/workItems/search/id | Search for work items and extract IDs only |
| ProjectWorkItemsApi | ApiV2ProjectsProjectIdWorkItemsSearchPost | POST /api/v2/projects/{projectId}/workItems/search | Search for work items |
| ProjectWorkItemsApi | ApiV2ProjectsProjectIdWorkItemsSearchWorkItemIdIndexPost | POST /api/v2/projects/{projectId}/workItems/search/{workItemId}/index | Get work item index (position) in a collection by its id. |
| ProjectWorkItemsApi | ApiV2ProjectsProjectIdWorkItemsTagsGet | GET /api/v2/projects/{projectId}/workItems/tags | Get WorkItems Tags |
| ProjectWorkItemsApi | GetWorkItemsByProjectId | GET /api/v2/projects/{projectId}/workItems | Get project work items |
| ProjectsApi | AddGlobalAttributesToProject | POST /api/v2/projects/{id}/globalAttributes | Add global attributes to project |
| ProjectsApi | ApiV2ProjectsDemoPost | POST /api/v2/projects/demo | |
| ProjectsApi | ApiV2ProjectsIdDelete | DELETE /api/v2/projects/{id} | Archive project |
| ProjectsApi | ApiV2ProjectsIdFailureClassesGet | GET /api/v2/projects/{id}/failureClasses | Get failure classes |
| ProjectsApi | ApiV2ProjectsIdFavoritePut | PUT /api/v2/projects/{id}/favorite | Mark Project as favorite |
| ProjectsApi | ApiV2ProjectsIdFiltersGet | GET /api/v2/projects/{id}/filters | Get Project filters |
| ProjectsApi | ApiV2ProjectsIdPatch | PATCH /api/v2/projects/{id} | Patch project |
| ProjectsApi | ApiV2ProjectsIdPurgePost | POST /api/v2/projects/{id}/purge | Purge the project |
| ProjectsApi | ApiV2ProjectsIdRestorePost | POST /api/v2/projects/{id}/restore | Restore archived project |
| ProjectsApi | ApiV2ProjectsIdTestPlansAttributeAttributeIdDelete | DELETE /api/v2/projects/{id}/testPlans/attribute/{attributeId} | Delete attribute from project's test plans |
| ProjectsApi | ApiV2ProjectsIdTestPlansAttributePut | PUT /api/v2/projects/{id}/testPlans/attribute | Update attribute of project's test plans |
| ProjectsApi | ApiV2ProjectsIdTestRunsFullGet | GET /api/v2/projects/{id}/testRuns/full | Get Project TestRuns full models |
| ProjectsApi | ApiV2ProjectsNameNameExistsGet | GET /api/v2/projects/name/{name}/exists | |
| ProjectsApi | ApiV2ProjectsPurgeBulkPost | POST /api/v2/projects/purge/bulk | Purge multiple projects |
| ProjectsApi | ApiV2ProjectsRestoreBulkPost | POST /api/v2/projects/restore/bulk | Restore multiple projects |
| ProjectsApi | ApiV2ProjectsSearchPost | POST /api/v2/projects/search | Search for projects |
| ProjectsApi | ApiV2ProjectsShortsPost | POST /api/v2/projects/shorts | Get projects short models |
| ProjectsApi | CreateProject | POST /api/v2/projects | Create project |
| ProjectsApi | DeleteProjectAutoTests | DELETE /api/v2/projects/{id}/autoTests | Delete all autotests from project |
| ProjectsApi | GetAllProjects | GET /api/v2/projects | Get all projects |
| ProjectsApi | GetAutoTestsNamespaces | GET /api/v2/projects/{id}/autoTestsNamespaces | Get namespaces of autotests in project |
| ProjectsApi | GetProjectById | GET /api/v2/projects/{id} | Get project by ID |
| 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 | UpdateProject | PUT /api/v2/projects | Update project |
| SearchApi | ApiV2SearchGlobalSearchPost | POST /api/v2/search/globalSearch | |
| SectionsApi | ApiV2SectionsIdPatch | PATCH /api/v2/sections/{id} | Patch section |
| 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 with all work items into another section |
| SectionsApi | Rename | POST /api/v2/sections/rename | Rename section |
| SectionsApi | UpdateSection | PUT /api/v2/sections | Update section |
| TagsApi | ApiV2TagsDelete | DELETE /api/v2/tags | Delete tags |
| TagsApi | ApiV2TagsIdDelete | DELETE /api/v2/tags/{id} | Delete tag |
| TagsApi | ApiV2TagsPost | POST /api/v2/tags | Create tag |
| TagsApi | ApiV2TagsPut | PUT /api/v2/tags | Update tag |
| TagsApi | ApiV2TagsSearchGet | GET /api/v2/tags/search | Search 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 | Distribute test points between the users |
| 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 | ApiV2TestPlansIdPatch | PATCH /api/v2/testPlans/{id} | Patch test plan |
| TestPlansApi | ApiV2TestPlansIdSummariesGet | GET /api/v2/testPlans/{id}/summaries | Get summary by 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 | ApiV2TestPlansIdTestPointsTesterDelete | DELETE /api/v2/testPlans/{id}/testPoints/tester | Unassign users from multiple test points |
| TestPlansApi | ApiV2TestPlansIdTestPointsTesterUserIdPost | POST /api/v2/testPlans/{id}/testPoints/tester/{userId} | Assign user as a tester to multiple test points |
| 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 last modification date of test plan's test results |
| 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 | PurgeTestPlan | POST /api/v2/testPlans/{id}/purge | Permanently delete test plan from archive |
| 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 | Get all test runs which use test point |
| TestPointsApi | ApiV2TestPointsIdWorkItemGet | GET /api/v2/testPoints/{id}/workItem | Get work item represented by test point |
| TestPointsApi | ApiV2TestPointsSearchIdPost | POST /api/v2/testPoints/search/id | Search for test points and extract IDs only |
| TestPointsApi | ApiV2TestPointsSearchPost | POST /api/v2/testPoints/search | Search for test points |
| TestResultsApi | ApiV2TestResultsExternalProjectsExternalProjectIdDefectsExternalFormsPost | POST /api/v2/testResults/external-projects/{externalProjectId}/defects/external-forms | |
| TestResultsApi | ApiV2TestResultsExternalProjectsExternalProjectIdDefectsPost | POST /api/v2/testResults/external-projects/{externalProjectId}/defects | |
| TestResultsApi | ApiV2TestResultsIdAggregatedGet | GET /api/v2/testResults/{id}/aggregated | Get test result by ID aggregated with previous results |
| TestResultsApi | ApiV2TestResultsIdAttachmentsAttachmentIdPut | PUT /api/v2/testResults/{id}/attachments/{attachmentId} | Attach file to the test result |
| TestResultsApi | ApiV2TestResultsIdAttachmentsInfoGet | GET /api/v2/testResults/{id}/attachments/info | Get test result attachments meta-information |
| TestResultsApi | ApiV2TestResultsIdGet | GET /api/v2/testResults/{id} | Get test result by ID |
| TestResultsApi | ApiV2TestResultsIdPut | PUT /api/v2/testResults/{id} | Edit test result by ID |
| TestResultsApi | ApiV2TestResultsIdRerunsGet | GET /api/v2/testResults/{id}/reruns | Get reruns |
| TestResultsApi | ApiV2TestResultsSearchPost | POST /api/v2/testResults/search | Search for test results |
| TestResultsApi | ApiV2TestResultsStatisticsFilterPost | POST /api/v2/testResults/statistics/filter | Search for test results and extract statistics |
| 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 | ApiV2TestRunsDelete | DELETE /api/v2/testRuns | Delete multiple test runs |
| TestRunsApi | ApiV2TestRunsIdAutoTestsNamespacesGet | GET /api/v2/testRuns/{id}/autoTestsNamespaces | Get autotest classes and namespaces in test run |
| TestRunsApi | ApiV2TestRunsIdDelete | DELETE /api/v2/testRuns/{id} | Delete test run |
| TestRunsApi | ApiV2TestRunsIdPurgePost | POST /api/v2/testRuns/{id}/purge | Permanently delete test run from archive |
| TestRunsApi | ApiV2TestRunsIdRerunsPost | POST /api/v2/testRuns/{id}/reruns | Manual autotests rerun in test run |
| TestRunsApi | ApiV2TestRunsIdRestorePost | POST /api/v2/testRuns/{id}/restore | Restore test run from the archive |
| TestRunsApi | ApiV2TestRunsIdStatisticsFilterPost | POST /api/v2/testRuns/{id}/statistics/filter | Search for the test run test results and build statistics |
| TestRunsApi | ApiV2TestRunsIdTestPointsResultsGet | GET /api/v2/testRuns/{id}/testPoints/results | Get test results from the test run grouped by test points |
| TestRunsApi | ApiV2TestRunsIdTestResultsBulkPut | PUT /api/v2/testRuns/{id}/testResults/bulk | Partial edit of multiple test results in the test run |
| TestRunsApi | ApiV2TestRunsIdTestResultsLastModifiedModificationDateGet | GET /api/v2/testRuns/{id}/testResults/lastModified/modificationDate | Get modification date of last test result of the test run |
| TestRunsApi | ApiV2TestRunsPurgeBulkPost | POST /api/v2/testRuns/purge/bulk | Permanently delete multiple test runs from archive |
| TestRunsApi | ApiV2TestRunsRestoreBulkPost | POST /api/v2/testRuns/restore/bulk | Restore multiple test runs from the archive |
| TestRunsApi | ApiV2TestRunsSearchPost | POST /api/v2/testRuns/search | Search for test runs |
| TestRunsApi | ApiV2TestRunsUpdateMultiplePost | POST /api/v2/testRuns/updateMultiple | Update multiple test runs |
| 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 |
| TestStatusesApi | ApiV2TestStatusesCodeCodeExistsGet | GET /api/v2/testStatuses/code/{code}/exists | |
| TestStatusesApi | ApiV2TestStatusesIdDelete | DELETE /api/v2/testStatuses/{id} | |
| TestStatusesApi | ApiV2TestStatusesIdGet | GET /api/v2/testStatuses/{id} | |
| TestStatusesApi | ApiV2TestStatusesIdPut | PUT /api/v2/testStatuses/{id} | |
| TestStatusesApi | ApiV2TestStatusesNameNameExistsGet | GET /api/v2/testStatuses/name/{name}/exists | |
| TestStatusesApi | ApiV2TestStatusesPost | POST /api/v2/testStatuses | |
| TestStatusesApi | ApiV2TestStatusesSearchPost | POST /api/v2/testStatuses/search | |
| TestSuitesApi | AddTestPointsToTestSuite | POST /api/v2/testSuites/{id}/test-points | Add test-points to test suite |
| TestSuitesApi | ApiV2TestSuitesIdPatch | PATCH /api/v2/testSuites/{id} | Patch test suite |
| TestSuitesApi | ApiV2TestSuitesIdRefreshPost | POST /api/v2/testSuites/{id}/refresh | Refresh test suite. Only dynamic test suites are supported by this method |
| TestSuitesApi | ApiV2TestSuitesIdWorkItemsPost | POST /api/v2/testSuites/{id}/workItems | Set work items for test suite |
| TestSuitesApi | ApiV2TestSuitesPost | POST /api/v2/testSuites | Create test suite |
| TestSuitesApi | ApiV2TestSuitesPut | PUT /api/v2/testSuites | Edit test suite |
| 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 | SearchWorkItems | POST /api/v2/testSuites/{id}/workItems/search | Search WorkItems |
| TestSuitesApi | SetConfigurationsByTestSuiteId | POST /api/v2/testSuites/{id}/configurations | Set Configurations By TestSuite Id |
| UsersApi | ApiV2UsersExistsGet | GET /api/v2/users/exists | |
| WebhooksApi | ApiV2WebhooksDelete | DELETE /api/v2/webhooks | |
| WebhooksApi | ApiV2WebhooksGet | GET /api/v2/webhooks | Get all webhooks |
| WebhooksApi | ApiV2WebhooksIdDelete | DELETE /api/v2/webhooks/{id} | Delete webhook by ID |
| WebhooksApi | ApiV2WebhooksIdGet | GET /api/v2/webhooks/{id} | Get webhook by ID |
| WebhooksApi | ApiV2WebhooksIdPut | PUT /api/v2/webhooks/{id} | Edit webhook by ID |
| WebhooksApi | ApiV2WebhooksPost | POST /api/v2/webhooks | Create webhook |
| WebhooksApi | ApiV2WebhooksPut | PUT /api/v2/webhooks | |
| WebhooksApi | ApiV2WebhooksSearchPost | POST /api/v2/webhooks/search | Search for webhooks |
| WebhooksApi | ApiV2WebhooksSpecialVariablesGet | GET /api/v2/webhooks/specialVariables | Get special variables for webhook event type |
| WebhooksApi | ApiV2WebhooksTestPost | POST /api/v2/webhooks/test | Test webhook's url |
| WebhooksLogsApi | ApiV2WebhooksLogsGet | GET /api/v2/webhooks/logs | Get last webhook logs |
| WebhooksLogsApi | ApiV2WebhooksLogsIdDelete | DELETE /api/v2/webhooks/logs/{id} | Delete webhook log by ID |
| WebhooksLogsApi | ApiV2WebhooksLogsIdGet | GET /api/v2/webhooks/logs/{id} | Get webhook log by ID |
| WorkItemsApi | ApiV2WorkItemsIdAttachmentsPost | POST /api/v2/workItems/{id}/attachments | Upload and link attachment to WorkItem |
| 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 | ApiV2WorkItemsLinksUrlsSearchPost | POST /api/v2/workItems/links/urls/search | |
| WorkItemsApi | ApiV2WorkItemsMovePost | POST /api/v2/workItems/move | Move WorkItem to another section |
| WorkItemsApi | ApiV2WorkItemsPost | POST /api/v2/workItems | Creates work item |
| WorkItemsApi | ApiV2WorkItemsSearchPost | POST /api/v2/workItems/search | Search for work items |
| 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 work items |
| WorkItemsApi | ApiV2WorkItemsSharedStepsSharedStepIdReferencesGet | GET /api/v2/workItems/sharedSteps/{sharedStepId}/references | Get SharedStep references |
| 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 work item 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 | PurgeWorkItem | POST /api/v2/workItems/{id}/purge | Permanently delete test case, checklist or shared steps from archive |
| WorkItemsApi | RestoreWorkItem | POST /api/v2/workItems/{id}/restore | Restore test case, checklist or shared steps from archive |
| 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 work item comment |
| WorkItemsCommentsApi | ApiV2WorkItemsIdCommentsCountGet | GET /api/v2/workItems/{id}/comments/count | Get work item comments count |
| WorkItemsCommentsApi | ApiV2WorkItemsIdCommentsGet | GET /api/v2/workItems/{id}/comments | Get work item comments |
| WorkflowsApi | ApiV2WorkflowsIdDelete | DELETE /api/v2/workflows/{id} | |
| WorkflowsApi | ApiV2WorkflowsIdGet | GET /api/v2/workflows/{id} | |
| WorkflowsApi | ApiV2WorkflowsIdPatch | PATCH /api/v2/workflows/{id} | |
| WorkflowsApi | ApiV2WorkflowsIdProjectsSearchPost | POST /api/v2/workflows/{id}/projects/search | |
| WorkflowsApi | ApiV2WorkflowsIdPut | PUT /api/v2/workflows/{id} | |
| WorkflowsApi | ApiV2WorkflowsNameNameExistsGet | GET /api/v2/workflows/name/{name}/exists | |
| WorkflowsApi | ApiV2WorkflowsPost | POST /api/v2/workflows | |
| WorkflowsApi | ApiV2WorkflowsSearchPost | POST /api/v2/workflows/search |
- Model.AIServiceModelApiResult
- Model.AIServiceModelApiResultReply
- Model.ActionUpdate
- Model.ApiExternalServiceCategory
- Model.AssignAttachmentApiModel
- Model.AssignIterationApiModel
- Model.AttachmentApiResult
- Model.AttachmentChangeViewModel
- Model.AttachmentChangeViewModelArrayChangedFieldViewModel
- Model.AttachmentModel
- Model.AttachmentPutModel
- Model.AttachmentPutModelAutoTestStepResultsModel
- Model.AttachmentUpdateRequest
- Model.AuditApiResult
- Model.AutoTest
- Model.AutoTestApiResult
- Model.AutoTestAverageDurationApiResult
- Model.AutoTestBulkDeleteApiModel
- Model.AutoTestBulkDeleteApiResult
- Model.AutoTestChangeViewModel
- Model.AutoTestChangeViewModelArrayChangedFieldViewModel
- Model.AutoTestClassCountApiModel
- Model.AutoTestCreateApiModel
- Model.AutoTestExtractionApiModel
- Model.AutoTestFilterApiModel
- Model.AutoTestFilterModel
- Model.AutoTestFlakyBulkApiModel
- Model.AutoTestIdModel
- Model.AutoTestModel
- Model.AutoTestModelV2GetModel
- Model.AutoTestNamespaceApiResult
- Model.AutoTestNamespaceCountApiModel
- Model.AutoTestNamespacesCountResponse
- Model.AutoTestOutcome
- Model.AutoTestProjectSettingsApiModel
- Model.AutoTestProjectSettingsApiResult
- Model.AutoTestResultHistoryApiResult
- Model.AutoTestResultHistorySelectApiModel
- Model.AutoTestResultReasonShort
- Model.AutoTestResultReasonsCountItemModel
- Model.AutoTestResultReasonsCountModel
- Model.AutoTestResultsForTestRunModel
- Model.AutoTestSearchApiModel
- Model.AutoTestSearchIncludeApiModel
- Model.AutoTestSelectApiModel
- Model.AutoTestSelectModel
- Model.AutoTestShortApiResult
- Model.AutoTestStep
- Model.AutoTestStepApiModel
- Model.AutoTestStepApiResult
- Model.AutoTestStepModel
- Model.AutoTestStepResult
- Model.AutoTestStepResultUpdateRequest
- Model.AutoTestStepResultsApiResult
- Model.AutoTestUpdateApiModel
- Model.AutoTestWorkItemIdentifierApiResult
- Model.AutoTestsExtractionModel
- Model.AutotestResultOutcome
- Model.AutotestResultReasonFilterModel
- Model.AutotestResultReasonShortGetModel
- Model.AvailableFailureCategory
- Model.AvailableTestResultOutcome
- Model.BackgroundJobAttachmentModel
- Model.BackgroundJobFilterModel
- Model.BackgroundJobGetModel
- Model.BackgroundJobState
- Model.BackgroundJobType
- Model.BooleanChangedFieldViewModel
- Model.BooleanNullableChangedFieldViewModel
- Model.CollectionFilter
- Model.CollectionOperator
- Model.CompositeFilter
- Model.ConfigurationByParametersModel
- Model.ConfigurationExtractionApiModel
- Model.ConfigurationExtractionModel
- Model.ConfigurationFilterApiModel
- Model.ConfigurationFilterModel
- Model.ConfigurationModel
- Model.ConfigurationPostModel
- Model.ConfigurationPutModel
- Model.ConfigurationSelectApiModel
- Model.ConfigurationSelectModel
- Model.ConfigurationShort
- Model.ConfigurationShortApiResult
- Model.ConfigurationShortModel
- Model.CreateDefectApiModel
- Model.CreateEmptyTestRunApiModel
- Model.CreateFailureCategoryApiModel
- Model.CreateFailureClassRegexApiModel
- Model.CreateLinkApiModel
- Model.CreateParameterApiModel
- Model.CreateProjectApiModel
- Model.CreateProjectFailureCategoryApiModel
- Model.CreateStepApiModel
- Model.CreateTagApiModel
- Model.CreateTestPlanApiModel
- Model.CreateTestRunAndFillByAutoTestsApiModel
- Model.CreateTestRunAndFillByConfigurationsApiModel
- Model.CreateTestRunAndFillByWorkItemsApiModel
- Model.CreateTestStatusApiModel
- Model.CreateWorkItemApiModel
- Model.CreateWorkItemPreviewsApiModel
- Model.CreateWorkflowApiModel
- Model.CustomAttributeApiResult
- Model.CustomAttributeChangeModel
- Model.CustomAttributeGetModel
- Model.CustomAttributeModel
- Model.CustomAttributeOptionApiResult
- Model.CustomAttributeOptionModel
- Model.CustomAttributeOptionPostModel
- Model.CustomAttributePostModel
- Model.CustomAttributePutModel
- Model.CustomAttributeSearchQueryModel
- Model.CustomAttributeSearchResponseModel
- Model.CustomAttributeTemplateModel
- Model.CustomAttributeTemplatePostModel
- Model.CustomAttributeTemplatePutModel
- Model.CustomAttributeTemplateSearchQueryModel
- Model.CustomAttributeTemplateValidationResult
- Model.CustomAttributeTestPlanProjectRelationPutModel
- Model.CustomAttributeType
- Model.CustomAttributeTypesEnum
- Model.CustomAttributeValidationResult
- Model.DateTimeRangeSelectorModel
- Model.DefectApiModel
- Model.DeletionState
- Model.DemoProjectApiResult
- Model.EnableProjectExternalServiceApiModel
- Model.ExternalFormAllowedValueModel
- Model.ExternalFormCreateModel
- Model.ExternalFormFieldModel
- Model.ExternalFormLinkModel
- Model.ExternalFormModel
- Model.ExternalIssueApiField
- Model.ExternalIssueApiFieldSuggestion
- Model.ExternalIssueApiFieldSuggestionReply
- Model.ExternalIssueApiMetadata
- Model.ExternalIssueApiPriority
- Model.ExternalIssueApiResult
- Model.ExternalIssueApiType
- Model.ExternalIssueExternalServiceApiResult
- Model.ExternalIssueMetadataModel
- Model.ExternalIssueModel
- Model.ExternalIssuePriorityModel
- Model.ExternalIssueTypeModel
- Model.ExternalLinkModel
- Model.ExternalServiceMetadataApiResult
- Model.ExternalServicesMetadataApiResult
- Model.FailureCategory
- Model.FailureCategoryApiResult
- Model.FailureCategoryGroupApiModel
- Model.FailureCategoryGroupApiResult
- Model.FailureCategoryGroupItemApiResult
- Model.FailureCategoryGroupItemApiResultReply
- Model.FailureCategoryGroupSearchApiModel
- Model.FailureCategoryItemApiResult
- Model.FailureCategoryModel
- Model.FailureClassRegexApiResult
- Model.Filter
- Model.FilterModel
- Model.FilterOperator
- Model.GenerateWorkItemPreviewsApiModel
- Model.GenerateWorkItemPreviewsApiResult
- Model.GetAIServiceModelsApiModel
- Model.GetExternalFormApiResult
- Model.GetExternalIssueSuggestionsApiModel
- Model.GetShortProjectsApiModel
- Model.GetXlsxTestPointsByTestPlanModel
- Model.GlobalCustomAttributePostModel
- Model.GlobalCustomAttributeUpdateModel
- Model.GlobalSearchItemResult
- Model.GlobalSearchRequest
- Model.GlobalSearchResponse
- Model.GuidChangedFieldViewModel
- Model.GuidExtractionModel
- Model.IFilter
- Model.ImageResizeType
- Model.Inquiry
- Model.Int32ChangedFieldViewModel
- Model.Int32RangeSelectorModel
- Model.Int64ChangedFieldViewModel
- Model.Int64RangeSelectorModel
- Model.IterationApiResult
- Model.IterationModel
- Model.Label
- Model.LabelApiModel
- Model.LabelApiResult
- Model.LabelShortModel
- Model.LastTestResultApiResult
- Model.LastTestResultModel
- Model.Link
- Model.LinkApiResult
- Model.LinkCreateApiModel
- Model.LinkModel
- Model.LinkPostModel
- Model.LinkPutModel
- Model.LinkShort
- Model.LinkShortApiResult
- Model.LinkShortModel
- Model.LinkType
- Model.LinkUpdateApiModel
- Model.ListSortDirection
- Model.LogicalOperator
- Model.ManualRerunApiResult
- Model.ManualRerunSelectTestResultsApiModel
- Model.ManualRerunTestResultApiModel
- Model.NamedEntityApiModel
- Model.NotificationModel
- Model.NotificationQueryFilterModel
- Model.NotificationTypeModel
- Model.Operation
- Model.Order
- Model.Page
- Model.ParameterApiResult
- Model.ParameterGroupApiResult
- Model.ParameterGroupsFilterApiModel
- Model.ParameterIterationModel
- Model.ParameterShortApiResult
- Model.ParameterShortModel
- Model.ParametersFilterApiModel
- Model.PeriodViewModel
- Model.PeriodViewModelChangedFieldViewModel
- Model.PreviewsIssueLinkApiModel
- Model.PreviewsIssueLinkApiResult
- Model.ProblemDetails
- Model.ProjectApiResult
- Model.ProjectAttributesFilterModel
- Model.ProjectCustomAttributeTemplateGetModel
- Model.ProjectCustomAttributesTemplatesFilterModel
- Model.ProjectDetailedFailureCategoryApiResult
- Model.ProjectExternalServiceApiResult
- Model.ProjectExternalServiceSettingsApiResult
- Model.ProjectExternalServicesApiResult
- Model.ProjectExtractionModel
- Model.ProjectFailureCategoryApiResult
- Model.ProjectFailureCategoryGroupItemApiResult
- Model.ProjectFailureCategoryGroupItemApiResultReply
- Model.ProjectModel
- Model.ProjectNameApiResult
- Model.ProjectSelectModel
- Model.ProjectShortApiResult
- Model.ProjectShortApiResultReply
- Model.ProjectShortModel
- Model.ProjectShortestModel
- Model.ProjectTestPlansFilterModel
- Model.ProjectType
- Model.ProjectTypeModel
- Model.ProjectsFilterModel
- Model.ReplaceProjectExternalServiceApiModel
- Model.RequestType
- Model.RequestTypeApiModel
- Model.RequestTypeModel
- Model.RerunTestResultApiResult
- Model.RerunTestResultModel
- Model.RerunsModel
- Model.SearchCustomAttributeTemplateGetModel
- Model.SearchExternalIssuesApiModel
- Model.SearchTestRunsApiModel
- Model.SearchTestStatusesApiModel
- Model.SearchWebhooksQueryModel
- Model.SearchWorkItemLinkUrlsApiResult
- Model.SearchWorkflowProjectsApiModel
- Model.SearchWorkflowsApiModel
- Model.SectionModel
- Model.SectionMoveModel
- Model.SectionPostModel
- Model.SectionPutModel
- Model.SectionRenameModel
- Model.SectionWithStepsModel
- Model.SelectTagsApiModel
- Model.SharedStepChangeViewModel
- Model.SharedStepModel
- Model.SharedStepReferenceModel
- Model.SharedStepReferenceSectionModel
- Model.SharedStepReferenceSectionsQueryFilterModel
- Model.SharedStepReferencesQueryFilterModel
- Model.SharedStepResultApiModel
- Model.ShortConfiguration
- Model.StepCommentApiModel
- Model.StepModel
- Model.StepPostModel
- Model.StepPutModel
- Model.StepResultApiModel
- Model.StringArrayChangedFieldViewModel
- Model.StringChangedFieldViewModel
- Model.StringChangedFieldWithDiffsViewModel
- Model.StringExtractionModel
- Model.TagApiModel
- Model.TagApiResult
- Model.TagModel
- Model.TagShortApiResult
- Model.TagsExtractionApiModel
- Model.TagsFilterApiModel
- Model.TestPlanApiResult
- Model.TestPlanChangeModel
- Model.TestPlanChangedFieldsViewModel
- Model.TestPlanExtractionModel
- Model.TestPlanGroupByStatus
- Model.TestPlanGroupByStatusCode
- Model.TestPlanGroupByStatusType
- Model.TestPlanGroupByTester
- Model.TestPlanGroupByTesterAndStatus
- Model.TestPlanGroupByTesterAndStatusCode
- Model.TestPlanLink
- Model.TestPlanModel
- Model.TestPlanSelectModel
- Model.TestPlanShortModel
- Model.TestPlanStatus
- Model.TestPlanStatusModel
- Model.TestPlanSummaryModel
- Model.TestPlanTagApiResult
- Model.TestPlanTestPointsAnalyticsApiModel
- Model.TestPlanTestPointsAnalyticsApiResult
- Model.TestPlanTestPointsApiModel
- Model.TestPlanTestPointsAutoTestsRerunApiModel
- Model.TestPlanTestPointsAutoTestsRunApiModel
- Model.TestPlanTestPointsExtractionApiModel
- Model.TestPlanTestPointsGroupApiModel
- Model.TestPlanTestPointsGroupApiResult
- Model.TestPlanTestPointsGroupSearchApiResult
- Model.TestPlanTestPointsGroupSearchItemApiResult
- Model.TestPlanTestPointsInquiryApiModel
- Model.TestPlanTestPointsSearchApiModel
- Model.TestPlanTestPointsSearchApiResult
- Model.TestPlanTestPointsSearchStatusCountersApiResult
- Model.TestPlanTestPointsSectionSearchApiResult
- Model.TestPlanTestPointsSetTestersApiModel
- Model.TestPlanTestPointsStatusCodeGroupApiResult
- Model.TestPlanTestPointsStatusGroupApiResult
- Model.TestPlanTestPointsStatusTypeGroupApiResult
- Model.TestPlanTestPointsTestSuiteSearchApiResult
- Model.TestPlanTestPointsTesterAndStatusGroupApiResult
- Model.TestPlanTestPointsTesterAndStatusTypeGroupApiResult
- Model.TestPlanTestPointsTesterGroupApiResult
- Model.TestPlanTestPointsWorkItemSearchApiResult
- Model.TestPlanWithAnalyticModel
- Model.TestPlanWithTestSuiteTreeModel
- Model.TestPoint
- Model.TestPointAnalyticResult
- Model.TestPointByTestSuiteModel
- Model.TestPointChangeViewModel
- Model.TestPointChangeViewModelChangedFieldViewModel
- Model.TestPointFilterModel
- Model.TestPointFilterRequestModel
- Model.TestPointResultApiResult
- Model.TestPointSelectModel
- Model.TestPointSelector
- Model.TestPointShortApiResult
- Model.TestPointShortModel
- Model.TestPointShortResponseModel
- Model.TestPointStatus
- Model.TestPointWithLastResultResponseModel
- Model.TestPointsExtractionModel
- Model.TestResultApiResult
- Model.TestResultChangeViewModel
- Model.TestResultChangeViewModelChangedFieldViewModel
- Model.TestResultChronologyModel
- Model.TestResultFailureClassApiResult
- Model.TestResultHistoryReportApiResult
- Model.TestResultOutcome
- Model.TestResultResponse
- Model.TestResultShortApiResult
- Model.TestResultShortResponse
- Model.TestResultStepCommentUpdateRequest
- Model.TestResultUpdateV2Request
- Model.TestResultV2GetModel
- Model.TestResultV2ShortModel
- Model.TestResultsExtractionApiModel
- Model.TestResultsFilterApiModel
- Model.TestResultsLocalFilterModel
- Model.TestResultsSelectApiModel
- Model.TestResultsStatisticsApiResult
- Model.TestResultsStatisticsFailureCategoriesApiResult
- Model.TestResultsStatisticsStatusesApiResult
- Model.TestRunAnalyticApiResult
- Model.TestRunApiResult
- Model.TestRunByAutoTestApiResult
- Model.TestRunExtractionApiModel
- Model.TestRunFilterApiModel
- Model.TestRunGroupByFailureClassApiResult
- Model.TestRunGroupByStatusApiResult
- Model.TestRunGroupByStatusTypeApiResult
- Model.TestRunNameApiResult
- Model.TestRunSelectApiModel
- Model.TestRunShortApiResult
- Model.TestRunState
- Model.TestRunStatisticsFilterApiModel
- Model.TestRunTestResultsPartialBulkSetModel
- Model.TestRunTestResultsSelectModel
- Model.TestRunV2ApiResult
- Model.TestStatusApiResult
- Model.TestStatusApiResultReply
- Model.TestStatusApiType
- Model.TestStatusModel
- Model.TestStatusShortApiResult
- Model.TestStatusType
- Model.TestSuiteApiResult
- Model.TestSuiteChangeViewModel
- Model.TestSuiteChangeViewModelChangedFieldViewModel
- Model.TestSuiteHierarchyApiResult
- Model.TestSuiteTestPlanApiModel
- Model.TestSuiteType
- Model.TestSuiteTypeApiResult
- Model.TestSuiteV2GetModel
- Model.TestSuiteV2PostModel
- Model.TestSuiteV2PutModel
- Model.TestSuiteWithChildrenModel
- Model.TestSuiteWorkItemsSearchModel
- Model.UpdateEmptyTestRunApiModel
- Model.UpdateFailureCategoryApiModel
- Model.UpdateFailureCategoryProjectApiModel
- Model.UpdateFailureClassRegexApiModel
- Model.UpdateLinkApiModel
- Model.UpdateMultipleAttachmentsApiModel
- Model.UpdateMultipleLinksApiModel
- Model.UpdateMultipleTestRunsApiModel
- Model.UpdateParameterApiModel
- Model.UpdateProjectApiModel
- Model.UpdateStepApiModel
- Model.UpdateTagApiModel
- Model.UpdateTestPlanApiModel
- Model.UpdateTestStatusApiModel
- Model.UpdateWorkItemApiModel
- Model.UpdateWorkflowApiModel
- Model.UserCustomNameValidationResponse
- Model.UserNameApiResult
- Model.UserRankModel
- Model.UserWithRankModel
- Model.ValidationProblemDetails
- Model.WebHookEventType
- Model.WebHookEventTypeModel
- Model.WebHookEventTypeRequest
- Model.WebHookModel
- Model.WebHookPostModel
- Model.WebHookTestModel
- Model.WebhookBulkUpdateApiModel
- Model.WebhookLogApiResult
- Model.WebhookResponse
- Model.WebhookVariablesType
- Model.WebhooksDeleteApiModel
- Model.WebhooksDeleteFilterApiModel
- Model.WebhooksExtractionApiModel
- Model.WebhooksFilterApiModel
- Model.WebhooksUpdateApiModel
- Model.WebhooksUpdateApiResult
- Model.WorkItemApiResult
- Model.WorkItemChangeModel
- Model.WorkItemChangedAttributeViewModel
- Model.WorkItemChangedFieldsViewModel
- Model.WorkItemCommentModel
- Model.WorkItemCommentPostModel
- Model.WorkItemCommentPutModel
- Model.WorkItemEntityTypeApiModel
- Model.WorkItemEntityTypes
- Model.WorkItemExternalMetadataFieldFilterApiModel
- Model.WorkItemExternalMetadataFieldFilterModel
- Model.WorkItemExternalMetadataFilterApiModel
- Model.WorkItemExternalMetadataFilterModel
- Model.WorkItemExtractionApiModel
- Model.WorkItemExtractionModel
- Model.WorkItemFilterApiModel
- Model.WorkItemFilterModel
- Model.WorkItemGroupGetModel
- Model.WorkItemGroupModel
- Model.WorkItemGroupType
- Model.WorkItemIdApiModel
- Model.WorkItemIndexApiResult
- Model.WorkItemLikeModel
- Model.WorkItemLinkChangeViewModel
- Model.WorkItemLinkChangeViewModelArrayChangedFieldViewModel
- Model.WorkItemLinkExtractionApiModel
- Model.WorkItemLinkFilterApiModel
- Model.WorkItemLinkFilterModel
- Model.WorkItemLinkUrlApiModel
- Model.WorkItemLinkUrlApiResult
- Model.WorkItemLinkUrlFilterApiModel
- Model.WorkItemLocalFilterModel
- Model.WorkItemLocalSelectModel
- Model.WorkItemModel
- Model.WorkItemMovePostModel
- Model.WorkItemPreviewApiModel
- Model.WorkItemPreviewStepApiModel
- Model.WorkItemPriority
- Model.WorkItemPriorityApiModel
- Model.WorkItemPriorityModel
- Model.WorkItemSearchQueryModel
- Model.WorkItemSelectApiModel
- Model.WorkItemSelectModel
- Model.WorkItemShortApiResult
- Model.WorkItemShortModel
- Model.WorkItemSourceTypeApiModel
- Model.WorkItemSourceTypeModel
- Model.WorkItemState
- Model.WorkItemStateApiModel
- Model.WorkItemStates
- Model.WorkItemStepChangeViewModel
- Model.WorkItemStepChangeViewModelArrayChangedFieldWithDiffsViewModel
- Model.WorkItemUpdatingFieldsApiModel
- Model.WorkItemUpdatingFieldsApiResult
- Model.WorkItemVersionModel
- Model.WorkflowApiResult
- Model.WorkflowExistsByNameApiResult
- Model.WorkflowProjectApiResult
- Model.WorkflowProjectApiResultApiCollectionPreview
- Model.WorkflowProjectApiResultReply
- Model.WorkflowShortApiResult
- Model.WorkflowShortApiResultReply
- Model.WorkflowStatusApiModel
- Model.WorkflowStatusApiResult
Authentication schemes defined for the API:
- Type: API key
- API key parameter name: Authorization
- Location: HTTP header