API-client for Test IT
Project description
Api client for Test IT TMS
Getting Started
Compatibility
| Test IT | API Client |
|---|---|
| 3.5 | 2.0.4 |
| 4.0 | 3.0.0 |
| 4.2 | 3.1.0 |
| 4.3 | 3.2.0 |
| 4.4 | 3.3.0 |
| 4.5 | 3.4.0 |
| 4.6 | 3.5.0 |
| 5.0 | 4.0.0 |
| 5.1 | 4.1.0 |
| 5.2 | 4.2.0 |
| 5.2.2 | 5.1.2.post522 |
| 5.3.0 | 6.0.1.post530 |
| 5.4.0 | 6.3.1.post540 |
| 5.4.1 | 7.0.3.post541 |
| 5.5.0 | 7.2.0.post550 |
| 5.6.0 | 7.4.0.post560 |
| Cloud | 7.2.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
Installation & Usage
pip install
pip install testit-api-client
Then import the package:
import testit_api_client
Examples
Please follow the installation procedure and then run the following:
import testit_api_client
from testit_api_client.api import attachments_api
from testit_api_client.models.attachment_model import AttachmentModel
from testit_api_client.models.image_resize_type import ImageResizeType
from testit_api_client.models.problem_details import ProblemDetails
from testit_api_client.models.validation_problem_details import ValidationProblemDetails
configuration = testit_api_client.Configuration(
host = "Your TMS address"
)
with testit_api_client.ApiClient(
configuration,
header_name='Authorization',
header_value='PrivateToken ' + 'Your private token') as api_client:
api_instance = attachments_api.AttachmentsApi(api_client)
id = "Attachment's guid in the TMS"
try:
api_instance.api_v2_attachments_id_delete(id)
except testit_api_client.ApiException as e:
print("Exception when calling AttachmentsApi->api_v2_attachments_id_delete: %s\n" % e)
Documentation for API Endpoints
All URIs are relative to http://localhost
| Class | Method | HTTP request | Description |
|---|---|---|---|
| AttachmentsApi | api_v2_attachments_id_delete | DELETE /api/v2/attachments/{id} | Delete attachment file |
| AttachmentsApi | api_v2_attachments_id_get | GET /api/v2/attachments/{id} | Download attachment file |
| AttachmentsApi | api_v2_attachments_id_metadata_get | GET /api/v2/attachments/{id}/metadata | Get attachment metadata |
| AttachmentsApi | api_v2_attachments_occupied_file_storage_size_get | GET /api/v2/attachments/occupiedFileStorageSize | Get size of attachments storage in bytes |
| AttachmentsApi | api_v2_attachments_post | POST /api/v2/attachments | Upload new attachment file |
| AutoTestsApi | api_v2_auto_tests_delete | DELETE /api/v2/autoTests | Delete autotests |
| AutoTestsApi | api_v2_auto_tests_flaky_bulk_post | POST /api/v2/autoTests/flaky/bulk | Set "Flaky" status for multiple autotests |
| AutoTestsApi | api_v2_auto_tests_id_patch | PATCH /api/v2/autoTests/{id} | Patch auto test |
| AutoTestsApi | api_v2_auto_tests_id_test_results_search_post | POST /api/v2/autoTests/{id}/testResults/search | Get test results history for autotest |
| AutoTestsApi | api_v2_auto_tests_id_work_items_changed_id_get | GET /api/v2/autoTests/{id}/workItems/changed/id | Get identifiers of changed linked work items |
| AutoTestsApi | api_v2_auto_tests_id_work_items_changed_work_item_id_approve_post | POST /api/v2/autoTests/{id}/workItems/changed/{workItemId}/approve | Approve changes to work items linked to autotest |
| AutoTestsApi | api_v2_auto_tests_search_post | POST /api/v2/autoTests/search | Search for autotests |
| AutoTestsApi | create_auto_test | POST /api/v2/autoTests | Create autotest |
| AutoTestsApi | create_multiple | POST /api/v2/autoTests/bulk | Create multiple autotests |
| AutoTestsApi | delete_auto_test | DELETE /api/v2/autoTests/{id} | Delete autotest |
| AutoTestsApi | delete_auto_test_link_from_work_item | DELETE /api/v2/autoTests/{id}/workItems | Unlink autotest from work item |
| AutoTestsApi | get_all_auto_tests | GET /api/v2/autoTests | |
| AutoTestsApi | get_auto_test_average_duration | GET /api/v2/autoTests/{id}/averageDuration | Get average autotest duration |
| AutoTestsApi | get_auto_test_by_id | GET /api/v2/autoTests/{id} | Get autotest by internal or global ID |
| AutoTestsApi | get_auto_test_chronology | GET /api/v2/autoTests/{id}/chronology | Get autotest chronology |
| AutoTestsApi | get_test_runs | GET /api/v2/autoTests/{id}/testRuns | Get completed tests runs for autotests |
| AutoTestsApi | get_work_items_linked_to_auto_test | GET /api/v2/autoTests/{id}/workItems | Get work items linked to autotest |
| AutoTestsApi | link_auto_test_to_work_item | POST /api/v2/autoTests/{id}/workItems | Link autotest with work items |
| AutoTestsApi | update_auto_test | PUT /api/v2/autoTests | Update autotest |
| AutoTestsApi | update_multiple | PUT /api/v2/autoTests/bulk | Update multiple autotests |
| BackgroundJobsApi | api_v2_background_jobs_completed_delete | DELETE /api/v2/backgroundJobs/completed | Delete all completed background jobs |
| BackgroundJobsApi | api_v2_background_jobs_get | GET /api/v2/backgroundJobs | |
| BackgroundJobsApi | api_v2_background_jobs_id_cancel_post | POST /api/v2/backgroundJobs/{id}/cancel | Cancel current user background job |
| BackgroundJobsApi | api_v2_background_jobs_id_get | GET /api/v2/backgroundJobs/{id} | Get background job by ID |
| BackgroundJobsApi | api_v2_background_jobs_id_status_get | GET /api/v2/backgroundJobs/{id}/status | Get background job status by job ID |
| BackgroundJobsApi | api_v2_background_jobs_search_post | POST /api/v2/backgroundJobs/search | Search for user background jobs |
| ConfigurationsApi | api_v2_configurations_create_by_parameters_post | POST /api/v2/configurations/createByParameters | Create configurations by parameters |
| ConfigurationsApi | api_v2_configurations_delete_bulk_post | POST /api/v2/configurations/delete/bulk | Delete multiple configurations |
| ConfigurationsApi | api_v2_configurations_id_delete | DELETE /api/v2/configurations/{id} | Delete configuration |
| ConfigurationsApi | api_v2_configurations_id_patch | PATCH /api/v2/configurations/{id} | Patch configuration |
| ConfigurationsApi | api_v2_configurations_id_purge_post | POST /api/v2/configurations/{id}/purge | Permanently delete configuration from archive |
| ConfigurationsApi | api_v2_configurations_id_restore_post | POST /api/v2/configurations/{id}/restore | Restore configuration from the archive |
| ConfigurationsApi | api_v2_configurations_purge_bulk_post | POST /api/v2/configurations/purge/bulk | Permanently delete multiple archived configurations |
| ConfigurationsApi | api_v2_configurations_put | PUT /api/v2/configurations | Edit configuration |
| ConfigurationsApi | api_v2_configurations_restore_bulk_post | POST /api/v2/configurations/restore/bulk | Restore multiple configurations from the archive |
| ConfigurationsApi | api_v2_configurations_search_post | POST /api/v2/configurations/search | Search for configurations |
| ConfigurationsApi | create_configuration | POST /api/v2/configurations | Create Configuration |
| ConfigurationsApi | get_configuration_by_id | GET /api/v2/configurations/{id} | Get configuration by internal or global ID |
| CustomAttributeTemplatesApi | api_v2_custom_attributes_templates_exists_get | GET /api/v2/customAttributes/templates/exists | |
| CustomAttributeTemplatesApi | api_v2_custom_attributes_templates_id_custom_attributes_exclude_post | POST /api/v2/customAttributes/templates/{id}/customAttributes/exclude | Exclude CustomAttributes from CustomAttributeTemplate |
| CustomAttributeTemplatesApi | api_v2_custom_attributes_templates_id_custom_attributes_include_post | POST /api/v2/customAttributes/templates/{id}/customAttributes/include | Include CustomAttributes to CustomAttributeTemplate |
| CustomAttributeTemplatesApi | api_v2_custom_attributes_templates_id_delete | DELETE /api/v2/customAttributes/templates/{id} | Delete CustomAttributeTemplate |
| CustomAttributeTemplatesApi | api_v2_custom_attributes_templates_id_get | GET /api/v2/customAttributes/templates/{id} | Get CustomAttributeTemplate by ID |
| CustomAttributeTemplatesApi | api_v2_custom_attributes_templates_name_get | GET /api/v2/customAttributes/templates/{name} | Get CustomAttributeTemplate by name |
| CustomAttributeTemplatesApi | api_v2_custom_attributes_templates_post | POST /api/v2/customAttributes/templates | Create CustomAttributeTemplate |
| CustomAttributeTemplatesApi | api_v2_custom_attributes_templates_put | PUT /api/v2/customAttributes/templates | Update custom attributes template |
| CustomAttributeTemplatesApi | api_v2_custom_attributes_templates_search_post | POST /api/v2/customAttributes/templates/search | Search CustomAttributeTemplates |
| CustomAttributesApi | api_v2_custom_attributes_exists_get | GET /api/v2/customAttributes/exists | |
| CustomAttributesApi | api_v2_custom_attributes_global_id_delete | DELETE /api/v2/customAttributes/global/{id} | Delete global attribute |
| CustomAttributesApi | api_v2_custom_attributes_global_id_put | PUT /api/v2/customAttributes/global/{id} | Edit global attribute |
| CustomAttributesApi | api_v2_custom_attributes_global_post | POST /api/v2/customAttributes/global | Create global attribute |
| CustomAttributesApi | api_v2_custom_attributes_id_get | GET /api/v2/customAttributes/{id} | Get attribute |
| CustomAttributesApi | api_v2_custom_attributes_search_post | POST /api/v2/customAttributes/search | Search for attributes |
| ExternalIssuesApi | api_v2_external_issues_suggestions_post | POST /api/v2/external-issues/suggestions | Returns list of suggestions from available external issues |
| NotificationsApi | api_v2_notifications_count_get | GET /api/v2/notifications/count | Get unread Notifications total in last 7 days |
| NotificationsApi | api_v2_notifications_get | GET /api/v2/notifications | Get all Notifications for current User |
| NotificationsApi | api_v2_notifications_id_read_post | POST /api/v2/notifications/{id}/read | Set Notification as read |
| NotificationsApi | api_v2_notifications_read_post | POST /api/v2/notifications/read | Set all Notifications as read |
| NotificationsApi | api_v2_notifications_search_post | POST /api/v2/notifications/search | Search Notifications for current User |
| ParametersApi | api_v2_parameters_bulk_post | POST /api/v2/parameters/bulk | Create multiple parameters |
| ParametersApi | api_v2_parameters_bulk_put | PUT /api/v2/parameters/bulk | Update multiple parameters |
| ParametersApi | api_v2_parameters_groups_get | GET /api/v2/parameters/groups | Get parameters as group |
| ParametersApi | api_v2_parameters_key_name_name_exists_get | GET /api/v2/parameters/key/name/{name}/exists | Check existence parameter key in system |
| ParametersApi | api_v2_parameters_key_values_get | GET /api/v2/parameters/{key}/values | Get all parameter key values |
| ParametersApi | api_v2_parameters_keys_get | GET /api/v2/parameters/keys | Get all parameter keys |
| ParametersApi | api_v2_parameters_search_groups_post | POST /api/v2/parameters/search/groups | Search for parameters as group |
| ParametersApi | api_v2_parameters_search_post | POST /api/v2/parameters/search | Search for parameters |
| ParametersApi | create_parameter | POST /api/v2/parameters | Create parameter |
| ParametersApi | delete_by_name | DELETE /api/v2/parameters/name/{name} | Delete parameter by name |
| ParametersApi | delete_by_parameter_key_id | DELETE /api/v2/parameters/keyId/{keyId} | Delete parameters by parameter key identifier |
| ParametersApi | delete_parameter | DELETE /api/v2/parameters/{id} | Delete parameter |
| ParametersApi | get_all_parameters | GET /api/v2/parameters | Get all parameters |
| ParametersApi | get_parameter_by_id | GET /api/v2/parameters/{id} | Get parameter by ID |
| ParametersApi | update_parameter | PUT /api/v2/parameters | Update parameter |
| ProjectAttributeTemplatesApi | api_v2_projects_project_id_attributes_templates_search_post | POST /api/v2/projects/{projectId}/attributes/templates/search | Search for custom attributes templates |
| ProjectAttributeTemplatesApi | api_v2_projects_project_id_attributes_templates_template_id_delete | DELETE /api/v2/projects/{projectId}/attributes/templates/{templateId} | Delete CustomAttributeTemplate from Project |
| ProjectAttributeTemplatesApi | api_v2_projects_project_id_attributes_templates_template_id_post | POST /api/v2/projects/{projectId}/attributes/templates/{templateId} | Add CustomAttributeTemplate to Project |
| ProjectAttributesApi | create_projects_attribute | POST /api/v2/projects/{projectId}/attributes | Create project attribute |
| ProjectAttributesApi | delete_projects_attribute | DELETE /api/v2/projects/{projectId}/attributes/{attributeId} | Delete project attribute |
| ProjectAttributesApi | get_attribute_by_project_id | GET /api/v2/projects/{projectId}/attributes/{attributeId} | Get project attribute |
| ProjectAttributesApi | get_attributes_by_project_id | GET /api/v2/projects/{projectId}/attributes | Get project attributes |
| ProjectAttributesApi | search_attributes_in_project | POST /api/v2/projects/{projectId}/attributes/search | Search for attributes used in the project |
| ProjectAttributesApi | update_projects_attribute | PUT /api/v2/projects/{projectId}/attributes | Edit attribute of the project |
| ProjectConfigurationsApi | get_configurations_by_project_id | GET /api/v2/projects/{projectId}/configurations | Get project configurations |
| ProjectSectionsApi | get_sections_by_project_id | GET /api/v2/projects/{projectId}/sections | Get project sections |
| ProjectSettingsApi | api_v2_projects_project_id_settings_autotests_post | POST /api/v2/projects/{projectId}/settings/autotests | Set autotest project settings. |
| ProjectSettingsApi | get_autotest_project_settings | GET /api/v2/projects/{projectId}/settings/autotests | Get autotest project settings. |
| ProjectTestPlanAttributesApi | create_custom_attribute_test_plan_project_relations | POST /api/v2/projects/{projectId}/testPlans/attributes | Add attributes to project's test plans |
| ProjectTestPlanAttributesApi | delete_custom_attribute_test_plan_project_relations | DELETE /api/v2/projects/{projectId}/testPlans/attributes/{attributeId} | Delete attribute from project's test plans |
| ProjectTestPlanAttributesApi | get_custom_attribute_test_plan_project_relations | GET /api/v2/projects/{projectId}/testPlans/attributes | Get project's test plan attributes |
| ProjectTestPlanAttributesApi | search_test_plan_attributes_in_project | POST /api/v2/projects/{projectId}/testPlans/attributes/search | Search for attributes used in the project test plans |
| ProjectTestPlanAttributesApi | update_custom_attribute_test_plan_project_relations | PUT /api/v2/projects/{projectId}/testPlans/attributes | Update attribute of project's test plans |
| ProjectTestPlanTestPointsApi | api_v2_projects_project_id_test_plans_test_plan_id_test_points_autotests_rerun_post | POST /api/v2/projects/{projectId}/test-plans/{testPlanId}/test-points/autotests/rerun | Rerun autotests. |
| ProjectTestPlanTestPointsApi | api_v2_projects_project_id_test_plans_test_plan_id_test_points_autotests_run_post | POST /api/v2/projects/{projectId}/test-plans/{testPlanId}/test-points/autotests/run | Run autotests. |
| ProjectTestPlansApi | api_v2_projects_project_id_test_plans_analytics_get | GET /api/v2/projects/{projectId}/testPlans/analytics | Get TestPlans analytics |
| ProjectTestPlansApi | api_v2_projects_project_id_test_plans_delete_bulk_post | POST /api/v2/projects/{projectId}/testPlans/delete/bulk | Delete multiple test plans |
| ProjectTestPlansApi | api_v2_projects_project_id_test_plans_name_exists_get | GET /api/v2/projects/{projectId}/testPlans/{name}/exists | Checks if TestPlan exists with the specified name exists for the project |
| ProjectTestPlansApi | api_v2_projects_project_id_test_plans_purge_bulk_post | POST /api/v2/projects/{projectId}/testPlans/purge/bulk | Permanently delete multiple archived test plans |
| ProjectTestPlansApi | api_v2_projects_project_id_test_plans_restore_bulk_post | POST /api/v2/projects/{projectId}/testPlans/restore/bulk | Restore multiple test plans |
| ProjectTestPlansApi | api_v2_projects_project_id_test_plans_search_post | POST /api/v2/projects/{projectId}/testPlans/search | Get Project TestPlans with analytics |
| ProjectWorkItemsApi | api_v2_projects_project_id_work_items_search_grouped_post | POST /api/v2/projects/{projectId}/workItems/search/grouped | Search for work items and group results by attribute |
| ProjectWorkItemsApi | api_v2_projects_project_id_work_items_search_id_post | POST /api/v2/projects/{projectId}/workItems/search/id | Search for work items and extract IDs only |
| ProjectWorkItemsApi | api_v2_projects_project_id_work_items_search_post | POST /api/v2/projects/{projectId}/workItems/search | Search for work items |
| ProjectWorkItemsApi | api_v2_projects_project_id_work_items_search_work_item_id_index_post | POST /api/v2/projects/{projectId}/workItems/search/{workItemId}/index | Get work item index (position) in a collection by its id. |
| ProjectWorkItemsApi | api_v2_projects_project_id_work_items_tags_get | GET /api/v2/projects/{projectId}/workItems/tags | Get WorkItems Tags |
| ProjectWorkItemsApi | get_work_items_by_project_id | GET /api/v2/projects/{projectId}/workItems | Get project work items |
| ProjectsApi | add_global_attributes_to_project | POST /api/v2/projects/{id}/globalAttributes | Add global attributes to project |
| ProjectsApi | api_v2_projects_demo_post | POST /api/v2/projects/demo | |
| ProjectsApi | api_v2_projects_id_delete | DELETE /api/v2/projects/{id} | Archive project |
| ProjectsApi | api_v2_projects_id_failure_classes_get | GET /api/v2/projects/{id}/failureClasses | Get failure classes |
| ProjectsApi | api_v2_projects_id_favorite_put | PUT /api/v2/projects/{id}/favorite | Mark Project as favorite |
| ProjectsApi | api_v2_projects_id_filters_get | GET /api/v2/projects/{id}/filters | Get Project filters |
| ProjectsApi | api_v2_projects_id_patch | PATCH /api/v2/projects/{id} | Patch project |
| ProjectsApi | api_v2_projects_id_purge_post | POST /api/v2/projects/{id}/purge | Purge the project |
| ProjectsApi | api_v2_projects_id_restore_post | POST /api/v2/projects/{id}/restore | Restore archived project |
| ProjectsApi | api_v2_projects_id_test_plans_attribute_attribute_id_delete | DELETE /api/v2/projects/{id}/testPlans/attribute/{attributeId} | Delete attribute from project's test plans |
| ProjectsApi | api_v2_projects_id_test_plans_attribute_put | PUT /api/v2/projects/{id}/testPlans/attribute | Update attribute of project's test plans |
| ProjectsApi | api_v2_projects_id_test_runs_full_get | GET /api/v2/projects/{id}/testRuns/full | Get Project TestRuns full models |
| ProjectsApi | api_v2_projects_name_name_exists_get | GET /api/v2/projects/name/{name}/exists | |
| ProjectsApi | api_v2_projects_purge_bulk_post | POST /api/v2/projects/purge/bulk | Purge multiple projects |
| ProjectsApi | api_v2_projects_restore_bulk_post | POST /api/v2/projects/restore/bulk | Restore multiple projects |
| ProjectsApi | api_v2_projects_search_post | POST /api/v2/projects/search | Search for projects |
| ProjectsApi | api_v2_projects_shorts_post | POST /api/v2/projects/shorts | Get projects short models |
| ProjectsApi | create_project | POST /api/v2/projects | Create project |
| ProjectsApi | delete_project_auto_tests | DELETE /api/v2/projects/{id}/autoTests | Delete all autotests from project |
| ProjectsApi | get_all_projects | GET /api/v2/projects | Get all projects |
| ProjectsApi | get_auto_tests_namespaces | GET /api/v2/projects/{id}/autoTestsNamespaces | Get namespaces of autotests in project |
| ProjectsApi | get_project_by_id | GET /api/v2/projects/{id} | Get project by ID |
| ProjectsApi | get_test_plans_by_project_id | GET /api/v2/projects/{id}/testPlans | Get project test plans |
| ProjectsApi | get_test_runs_by_project_id | GET /api/v2/projects/{id}/testRuns | Get project test runs |
| ProjectsApi | update_project | PUT /api/v2/projects | Update project |
| SearchApi | api_v2_search_global_search_post | POST /api/v2/search/globalSearch | |
| SectionsApi | api_v2_sections_id_patch | PATCH /api/v2/sections/{id} | Patch section |
| SectionsApi | create_section | POST /api/v2/sections | Create section |
| SectionsApi | delete_section | DELETE /api/v2/sections/{id} | Delete section |
| SectionsApi | get_section_by_id | GET /api/v2/sections/{id} | Get section |
| SectionsApi | get_work_items_by_section_id | 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 | update_section | PUT /api/v2/sections | Update section |
| TagsApi | api_v2_tags_delete | DELETE /api/v2/tags | Delete tags |
| TagsApi | api_v2_tags_id_delete | DELETE /api/v2/tags/{id} | Delete tag |
| TagsApi | api_v2_tags_post | POST /api/v2/tags | Create tag |
| TagsApi | api_v2_tags_put | PUT /api/v2/tags | Update tag |
| TagsApi | api_v2_tags_search_get | GET /api/v2/tags/search | Search tags |
| TagsApi | api_v2_tags_test_plans_tags_get | GET /api/v2/tags/testPlansTags | Get all Tags that are used in TestPlans |
| TestPlansApi | add_test_points_with_sections | POST /api/v2/testPlans/{id}/test-points/withSections | Add test-points to TestPlan with sections |
| TestPlansApi | add_work_items_with_sections | POST /api/v2/testPlans/{id}/workItems/withSections | Add WorkItems to TestPlan with Sections as TestSuites |
| TestPlansApi | api_v2_test_plans_id_analytics_get | GET /api/v2/testPlans/{id}/analytics | Get analytics by TestPlan |
| TestPlansApi | api_v2_test_plans_id_autobalance_post | POST /api/v2/testPlans/{id}/autobalance | Distribute test points between the users |
| TestPlansApi | api_v2_test_plans_id_configurations_get | GET /api/v2/testPlans/{id}/configurations | Get TestPlan configurations |
| TestPlansApi | api_v2_test_plans_id_export_test_points_xlsx_post | POST /api/v2/testPlans/{id}/export/testPoints/xlsx | Export TestPoints from TestPlan in xls format |
| TestPlansApi | api_v2_test_plans_id_export_test_result_history_xlsx_post | POST /api/v2/testPlans/{id}/export/testResultHistory/xlsx | Export TestResults history from TestPlan in xls format |
| TestPlansApi | api_v2_test_plans_id_history_get | GET /api/v2/testPlans/{id}/history | Get TestPlan history |
| TestPlansApi | api_v2_test_plans_id_links_get | GET /api/v2/testPlans/{id}/links | Get Links of TestPlan |
| TestPlansApi | api_v2_test_plans_id_patch | PATCH /api/v2/testPlans/{id} | Patch test plan |
| TestPlansApi | api_v2_test_plans_id_summaries_get | GET /api/v2/testPlans/{id}/summaries | Get summary by TestPlan |
| TestPlansApi | api_v2_test_plans_id_test_points_last_results_get | GET /api/v2/testPlans/{id}/testPoints/lastResults | Get TestPoints with last result from TestPlan |
| TestPlansApi | api_v2_test_plans_id_test_points_reset_post | POST /api/v2/testPlans/{id}/testPoints/reset | Reset TestPoints status of TestPlan |
| TestPlansApi | api_v2_test_plans_id_test_points_tester_delete | DELETE /api/v2/testPlans/{id}/testPoints/tester | Unassign users from multiple test points |
| TestPlansApi | api_v2_test_plans_id_test_points_tester_user_id_post | POST /api/v2/testPlans/{id}/testPoints/tester/{userId} | Assign user as a tester to multiple test points |
| TestPlansApi | api_v2_test_plans_id_test_runs_get | GET /api/v2/testPlans/{id}/testRuns | Get TestRuns of TestPlan |
| TestPlansApi | api_v2_test_plans_id_test_runs_search_post | POST /api/v2/testPlans/{id}/testRuns/search | Search TestRuns of TestPlan |
| TestPlansApi | api_v2_test_plans_id_test_runs_test_results_last_modified_modified_date_get | GET /api/v2/testPlans/{id}/testRuns/testResults/lastModified/modifiedDate | Get last modification date of test plan's test results |
| TestPlansApi | api_v2_test_plans_id_unlock_request_post | POST /api/v2/testPlans/{id}/unlock/request | Send unlock TestPlan notification |
| TestPlansApi | api_v2_test_plans_shorts_post | 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 | create_test_plan | POST /api/v2/testPlans | Create TestPlan |
| TestPlansApi | delete_test_plan | DELETE /api/v2/testPlans/{id} | Delete TestPlan |
| TestPlansApi | get_test_plan_by_id | GET /api/v2/testPlans/{id} | Get TestPlan by Id |
| TestPlansApi | get_test_suites_by_id | GET /api/v2/testPlans/{id}/testSuites | Get TestSuites Tree By Id |
| TestPlansApi | pause | POST /api/v2/testPlans/{id}/pause | Pause TestPlan |
| TestPlansApi | purge_test_plan | POST /api/v2/testPlans/{id}/purge | Permanently delete test plan from archive |
| TestPlansApi | restore_test_plan | POST /api/v2/testPlans/{id}/restore | Restore TestPlan |
| TestPlansApi | start | POST /api/v2/testPlans/{id}/start | Start TestPlan |
| TestPlansApi | update_test_plan | PUT /api/v2/testPlans | Update TestPlan |
| TestPointsApi | api_v2_test_points_id_test_runs_get | GET /api/v2/testPoints/{id}/testRuns | Get all test runs which use test point |
| TestPointsApi | api_v2_test_points_id_work_item_get | GET /api/v2/testPoints/{id}/workItem | Get work item represented by test point |
| TestPointsApi | api_v2_test_points_search_id_post | POST /api/v2/testPoints/search/id | Search for test points and extract IDs only |
| TestPointsApi | api_v2_test_points_search_post | POST /api/v2/testPoints/search | Search for test points |
| TestResultsApi | api_v2_test_results_external_projects_external_project_id_defects_external_forms_post | POST /api/v2/testResults/external-projects/{externalProjectId}/defects/external-forms | |
| TestResultsApi | api_v2_test_results_external_projects_external_project_id_defects_post | POST /api/v2/testResults/external-projects/{externalProjectId}/defects | |
| TestResultsApi | api_v2_test_results_id_aggregated_get | GET /api/v2/testResults/{id}/aggregated | Get test result by ID aggregated with previous results |
| TestResultsApi | api_v2_test_results_id_attachments_attachment_id_put | PUT /api/v2/testResults/{id}/attachments/{attachmentId} | Attach file to the test result |
| TestResultsApi | api_v2_test_results_id_attachments_info_get | GET /api/v2/testResults/{id}/attachments/info | Get test result attachments meta-information |
| TestResultsApi | api_v2_test_results_id_get | GET /api/v2/testResults/{id} | Get test result by ID |
| TestResultsApi | api_v2_test_results_id_put | PUT /api/v2/testResults/{id} | Edit test result by ID |
| TestResultsApi | api_v2_test_results_id_reruns_get | GET /api/v2/testResults/{id}/reruns | Get reruns |
| TestResultsApi | api_v2_test_results_search_post | POST /api/v2/testResults/search | Search for test results |
| TestResultsApi | api_v2_test_results_statistics_filter_post | POST /api/v2/testResults/statistics/filter | Search for test results and extract statistics |
| TestResultsApi | create_attachment | POST /api/v2/testResults/{id}/attachments | Upload and link attachment to TestResult |
| TestResultsApi | delete_attachment | DELETE /api/v2/testResults/{id}/attachments/{attachmentId} | Remove attachment and unlink from TestResult |
| TestResultsApi | download_attachment | GET /api/v2/testResults/{id}/attachments/{attachmentId} | Get attachment of TestResult |
| TestResultsApi | get_attachment | GET /api/v2/testResults/{id}/attachments/{attachmentId}/info | Get Metadata of TestResult's attachment |
| TestResultsApi | get_attachments | GET /api/v2/testResults/{id}/attachments | Get all attachments of TestResult |
| TestRunsApi | api_v2_test_runs_delete | DELETE /api/v2/testRuns | Delete multiple test runs |
| TestRunsApi | api_v2_test_runs_id_auto_tests_namespaces_get | GET /api/v2/testRuns/{id}/autoTestsNamespaces | Get autotest classes and namespaces in test run |
| TestRunsApi | api_v2_test_runs_id_delete | DELETE /api/v2/testRuns/{id} | Delete test run |
| TestRunsApi | api_v2_test_runs_id_purge_post | POST /api/v2/testRuns/{id}/purge | Permanently delete test run from archive |
| TestRunsApi | api_v2_test_runs_id_reruns_post | POST /api/v2/testRuns/{id}/reruns | Manual autotests rerun in test run |
| TestRunsApi | api_v2_test_runs_id_restore_post | POST /api/v2/testRuns/{id}/restore | Restore test run from the archive |
| TestRunsApi | api_v2_test_runs_id_statistics_filter_post | POST /api/v2/testRuns/{id}/statistics/filter | Search for the test run test results and build statistics |
| TestRunsApi | api_v2_test_runs_id_test_points_results_get | GET /api/v2/testRuns/{id}/testPoints/results | Get test results from the test run grouped by test points |
| TestRunsApi | api_v2_test_runs_id_test_results_bulk_put | PUT /api/v2/testRuns/{id}/testResults/bulk | Partial edit of multiple test results in the test run |
| TestRunsApi | api_v2_test_runs_id_test_results_last_modified_modification_date_get | GET /api/v2/testRuns/{id}/testResults/lastModified/modificationDate | Get modification date of last test result of the test run |
| TestRunsApi | api_v2_test_runs_purge_bulk_post | POST /api/v2/testRuns/purge/bulk | Permanently delete multiple test runs from archive |
| TestRunsApi | api_v2_test_runs_restore_bulk_post | POST /api/v2/testRuns/restore/bulk | Restore multiple test runs from the archive |
| TestRunsApi | api_v2_test_runs_search_post | POST /api/v2/testRuns/search | Search for test runs |
| TestRunsApi | api_v2_test_runs_update_multiple_post | POST /api/v2/testRuns/updateMultiple | Update multiple test runs |
| TestRunsApi | complete_test_run | POST /api/v2/testRuns/{id}/complete | Complete TestRun |
| TestRunsApi | create_and_fill_by_auto_tests | POST /api/v2/testRuns/byAutoTests | Create test runs based on autotests and configurations |
| TestRunsApi | create_and_fill_by_configurations | POST /api/v2/testRuns/byConfigurations | Create test runs picking the needed test points |
| TestRunsApi | create_and_fill_by_work_items | POST /api/v2/testRuns/byWorkItems | Create test run based on configurations and work items |
| TestRunsApi | create_empty | POST /api/v2/testRuns | Create empty TestRun |
| TestRunsApi | get_test_run_by_id | GET /api/v2/testRuns/{id} | Get TestRun by Id |
| TestRunsApi | set_auto_test_results_for_test_run | POST /api/v2/testRuns/{id}/testResults | Send test results to the test runs in the system |
| TestRunsApi | start_test_run | POST /api/v2/testRuns/{id}/start | Start TestRun |
| TestRunsApi | stop_test_run | POST /api/v2/testRuns/{id}/stop | Stop TestRun |
| TestRunsApi | update_empty | PUT /api/v2/testRuns | Update empty TestRun |
| TestStatusesApi | api_v2_test_statuses_code_code_exists_get | GET /api/v2/testStatuses/code/{code}/exists | |
| TestStatusesApi | api_v2_test_statuses_id_delete | DELETE /api/v2/testStatuses/{id} | |
| TestStatusesApi | api_v2_test_statuses_id_get | GET /api/v2/testStatuses/{id} | |
| TestStatusesApi | api_v2_test_statuses_id_put | PUT /api/v2/testStatuses/{id} | |
| TestStatusesApi | api_v2_test_statuses_name_name_exists_get | GET /api/v2/testStatuses/name/{name}/exists | |
| TestStatusesApi | api_v2_test_statuses_post | POST /api/v2/testStatuses | |
| TestStatusesApi | api_v2_test_statuses_search_post | POST /api/v2/testStatuses/search | |
| TestSuitesApi | add_test_points_to_test_suite | POST /api/v2/testSuites/{id}/test-points | Add test-points to test suite |
| TestSuitesApi | api_v2_test_suites_id_patch | PATCH /api/v2/testSuites/{id} | Patch test suite |
| TestSuitesApi | api_v2_test_suites_id_refresh_post | POST /api/v2/testSuites/{id}/refresh | Refresh test suite. Only dynamic test suites are supported by this method |
| TestSuitesApi | api_v2_test_suites_id_work_items_post | POST /api/v2/testSuites/{id}/workItems | Set work items for test suite |
| TestSuitesApi | api_v2_test_suites_post | POST /api/v2/testSuites | Create test suite |
| TestSuitesApi | api_v2_test_suites_put | PUT /api/v2/testSuites | Edit test suite |
| TestSuitesApi | delete_test_suite | DELETE /api/v2/testSuites/{id} | Delete TestSuite |
| TestSuitesApi | get_configurations_by_test_suite_id | GET /api/v2/testSuites/{id}/configurations | Get Configurations By Id |
| TestSuitesApi | get_test_points_by_id | GET /api/v2/testSuites/{id}/testPoints | Get TestPoints By Id |
| TestSuitesApi | get_test_results_by_id | GET /api/v2/testSuites/{id}/testResults | Get TestResults By Id |
| TestSuitesApi | get_test_suite_by_id | GET /api/v2/testSuites/{id} | Get TestSuite by Id |
| TestSuitesApi | search_work_items | POST /api/v2/testSuites/{id}/workItems/search | Search WorkItems |
| TestSuitesApi | set_configurations_by_test_suite_id | POST /api/v2/testSuites/{id}/configurations | Set Configurations By TestSuite Id |
| UsersApi | api_v2_users_exists_get | GET /api/v2/users/exists | |
| WebhooksApi | api_v2_webhooks_delete | DELETE /api/v2/webhooks | |
| WebhooksApi | api_v2_webhooks_get | GET /api/v2/webhooks | Get all webhooks |
| WebhooksApi | api_v2_webhooks_id_delete | DELETE /api/v2/webhooks/{id} | Delete webhook by ID |
| WebhooksApi | api_v2_webhooks_id_get | GET /api/v2/webhooks/{id} | Get webhook by ID |
| WebhooksApi | api_v2_webhooks_id_put | PUT /api/v2/webhooks/{id} | Edit webhook by ID |
| WebhooksApi | api_v2_webhooks_post | POST /api/v2/webhooks | Create webhook |
| WebhooksApi | api_v2_webhooks_put | PUT /api/v2/webhooks | |
| WebhooksApi | api_v2_webhooks_search_post | POST /api/v2/webhooks/search | Search for webhooks |
| WebhooksApi | api_v2_webhooks_special_variables_get | GET /api/v2/webhooks/specialVariables | Get special variables for webhook event type |
| WebhooksApi | api_v2_webhooks_test_post | POST /api/v2/webhooks/test | Test webhook's url |
| WebhooksLogsApi | api_v2_webhooks_logs_get | GET /api/v2/webhooks/logs | Get last webhook logs |
| WebhooksLogsApi | api_v2_webhooks_logs_id_delete | DELETE /api/v2/webhooks/logs/{id} | Delete webhook log by ID |
| WebhooksLogsApi | api_v2_webhooks_logs_id_get | GET /api/v2/webhooks/logs/{id} | Get webhook log by ID |
| WorkItemsApi | api_v2_work_items_id_attachments_post | POST /api/v2/workItems/{id}/attachments | Upload and link attachment to WorkItem |
| WorkItemsApi | api_v2_work_items_id_check_list_transform_to_test_case_post | POST /api/v2/workItems/{id}/checkList/transformTo/testCase | Transform CheckList to TestCase |
| WorkItemsApi | api_v2_work_items_id_history_get | GET /api/v2/workItems/{id}/history | Get change history of WorkItem |
| WorkItemsApi | api_v2_work_items_id_like_delete | DELETE /api/v2/workItems/{id}/like | Delete like from WorkItem |
| WorkItemsApi | api_v2_work_items_id_like_post | POST /api/v2/workItems/{id}/like | Set like to WorkItem |
| WorkItemsApi | api_v2_work_items_id_likes_count_get | GET /api/v2/workItems/{id}/likes/count | Get likes count of WorkItem |
| WorkItemsApi | api_v2_work_items_id_likes_get | GET /api/v2/workItems/{id}/likes | Get likes of WorkItem |
| WorkItemsApi | api_v2_work_items_id_test_results_history_get | GET /api/v2/workItems/{id}/testResults/history | Get test results history of WorkItem |
| WorkItemsApi | api_v2_work_items_id_version_version_id_actual_post | POST /api/v2/workItems/{id}/version/{versionId}/actual | Set WorkItem as actual |
| WorkItemsApi | api_v2_work_items_links_urls_search_post | POST /api/v2/workItems/links/urls/search | |
| WorkItemsApi | api_v2_work_items_move_post | POST /api/v2/workItems/move | Move WorkItem to another section |
| WorkItemsApi | api_v2_work_items_post | POST /api/v2/workItems | Creates work item |
| WorkItemsApi | api_v2_work_items_search_post | POST /api/v2/workItems/search | Search for work items |
| WorkItemsApi | api_v2_work_items_shared_step_id_references_sections_post | POST /api/v2/workItems/{sharedStepId}/references/sections | Get SharedStep references in sections |
| WorkItemsApi | api_v2_work_items_shared_step_id_references_work_items_post | POST /api/v2/workItems/{sharedStepId}/references/workItems | Get SharedStep references in work items |
| WorkItemsApi | api_v2_work_items_shared_steps_shared_step_id_references_get | GET /api/v2/workItems/sharedSteps/{sharedStepId}/references | Get SharedStep references |
| WorkItemsApi | delete_all_work_items_from_auto_test | DELETE /api/v2/workItems/{id}/autoTests | Delete all links AutoTests from WorkItem by Id or GlobalId |
| WorkItemsApi | delete_work_item | DELETE /api/v2/workItems/{id} | Delete Test Case, Checklist or Shared Step by Id or GlobalId |
| WorkItemsApi | get_auto_tests_for_work_item | GET /api/v2/workItems/{id}/autoTests | Get all AutoTests linked to WorkItem by Id or GlobalId |
| WorkItemsApi | get_iterations | GET /api/v2/workItems/{id}/iterations | Get iterations by work item Id or GlobalId |
| WorkItemsApi | get_work_item_by_id | GET /api/v2/workItems/{id} | Get Test Case, Checklist or Shared Step by Id or GlobalId |
| WorkItemsApi | get_work_item_chronology | GET /api/v2/workItems/{id}/chronology | Get WorkItem chronology by Id or GlobalId |
| WorkItemsApi | get_work_item_versions | GET /api/v2/workItems/{id}/versions | Get WorkItem versions |
| WorkItemsApi | purge_work_item | POST /api/v2/workItems/{id}/purge | Permanently delete test case, checklist or shared steps from archive |
| WorkItemsApi | restore_work_item | POST /api/v2/workItems/{id}/restore | Restore test case, checklist or shared steps from archive |
| WorkItemsApi | update_work_item | PUT /api/v2/workItems | Update Test Case, Checklist or Shared Step |
| WorkItemsCommentsApi | api_v2_work_items_comments_comment_id_delete | DELETE /api/v2/workItems/comments/{commentId} | Delete WorkItem comment |
| WorkItemsCommentsApi | api_v2_work_items_comments_post | POST /api/v2/workItems/comments | Create WorkItem comment |
| WorkItemsCommentsApi | api_v2_work_items_comments_put | PUT /api/v2/workItems/comments | Update work item comment |
| WorkItemsCommentsApi | api_v2_work_items_id_comments_count_get | GET /api/v2/workItems/{id}/comments/count | Get work item comments count |
| WorkItemsCommentsApi | api_v2_work_items_id_comments_get | GET /api/v2/workItems/{id}/comments | Get work item comments |
| WorkflowsApi | api_v2_workflows_id_delete | DELETE /api/v2/workflows/{id} | |
| WorkflowsApi | api_v2_workflows_id_get | GET /api/v2/workflows/{id} | |
| WorkflowsApi | api_v2_workflows_id_patch | PATCH /api/v2/workflows/{id} | |
| WorkflowsApi | api_v2_workflows_id_projects_search_post | POST /api/v2/workflows/{id}/projects/search | |
| WorkflowsApi | api_v2_workflows_id_put | PUT /api/v2/workflows/{id} | |
| WorkflowsApi | api_v2_workflows_name_name_exists_get | GET /api/v2/workflows/name/{name}/exists | |
| WorkflowsApi | api_v2_workflows_post | POST /api/v2/workflows | |
| WorkflowsApi | api_v2_workflows_search_post | POST /api/v2/workflows/search |
Documentation For Models
- AIServiceModelApiResult
- AIServiceModelApiResultReply
- ActionUpdate
- ApiExternalServiceCategory
- ApiV2AutoTestsDeleteRequest
- ApiV2AutoTestsFlakyBulkPostRequest
- ApiV2AutoTestsIdTestResultsSearchPostRequest
- ApiV2AutoTestsSearchPostRequest
- ApiV2BackgroundJobsSearchPostRequest
- ApiV2ConfigurationsCreateByParametersPostRequest
- ApiV2ConfigurationsDeleteBulkPostRequest
- ApiV2ConfigurationsPurgeBulkPostRequest
- ApiV2ConfigurationsPutRequest
- ApiV2ConfigurationsSearchPostRequest
- ApiV2CustomAttributesGlobalIdPutRequest
- ApiV2CustomAttributesGlobalPostRequest
- ApiV2CustomAttributesSearchPostRequest
- ApiV2CustomAttributesTemplatesPostRequest
- ApiV2CustomAttributesTemplatesPutRequest
- ApiV2CustomAttributesTemplatesSearchPostRequest
- ApiV2ExternalIssuesSuggestionsPostRequest
- ApiV2NotificationsSearchPostRequest
- ApiV2ParametersSearchGroupsPostRequest
- ApiV2ParametersSearchPostRequest
- ApiV2ProjectsProjectIdAttributesTemplatesSearchPostRequest
- ApiV2ProjectsProjectIdSettingsAutotestsPostRequest
- ApiV2ProjectsProjectIdTestPlansDeleteBulkPostRequest
- ApiV2ProjectsProjectIdTestPlansSearchPostRequest
- ApiV2ProjectsProjectIdTestPlansTestPlanIdTestPointsAutotestsRerunPostRequest
- ApiV2ProjectsProjectIdTestPlansTestPlanIdTestPointsAutotestsRunPostRequest
- ApiV2ProjectsProjectIdWorkItemsSearchGroupedPostRequest
- ApiV2ProjectsProjectIdWorkItemsSearchIdPostRequest
- ApiV2ProjectsProjectIdWorkItemsSearchPostRequest
- ApiV2ProjectsRestoreBulkPostRequest
- ApiV2ProjectsSearchPostRequest
- ApiV2ProjectsShortsPostRequest
- ApiV2SearchGlobalSearchPostRequest
- ApiV2TagsDeleteRequest
- ApiV2TagsPostRequest
- ApiV2TagsPutRequest
- ApiV2TestPlansIdExportTestPointsXlsxPostRequest
- ApiV2TestPlansIdTestPointsTesterUserIdPostRequest
- ApiV2TestPlansIdTestRunsSearchPostRequest
- ApiV2TestPointsSearchPostRequest
- ApiV2TestResultsExternalProjectsExternalProjectIdDefectsExternalFormsPostRequest
- ApiV2TestResultsExternalProjectsExternalProjectIdDefectsPostRequest
- ApiV2TestResultsIdPutRequest
- ApiV2TestResultsSearchPostRequest
- ApiV2TestRunsDeleteRequest
- ApiV2TestRunsIdRerunsPostRequest
- ApiV2TestRunsIdStatisticsFilterPostRequest
- ApiV2TestRunsIdTestResultsBulkPutRequest
- ApiV2TestRunsSearchPostRequest
- ApiV2TestRunsUpdateMultiplePostRequest
- ApiV2TestStatusesIdPutRequest
- ApiV2TestStatusesPostRequest
- ApiV2TestStatusesSearchPostRequest
- ApiV2TestSuitesPostRequest
- ApiV2TestSuitesPutRequest
- ApiV2WebhooksDeleteRequest
- ApiV2WebhooksPostRequest
- ApiV2WebhooksPutRequest
- ApiV2WebhooksSearchPostRequest
- ApiV2WebhooksTestPostRequest
- ApiV2WorkItemsCommentsPostRequest
- ApiV2WorkItemsCommentsPutRequest
- ApiV2WorkItemsLinksUrlsSearchPostRequest
- ApiV2WorkItemsMovePostRequest
- ApiV2WorkItemsPostRequest
- ApiV2WorkItemsSharedStepIdReferencesSectionsPostRequest
- ApiV2WorkItemsSharedStepIdReferencesWorkItemsPostRequest
- ApiV2WorkflowsIdProjectsSearchPostRequest
- ApiV2WorkflowsIdPutRequest
- ApiV2WorkflowsPostRequest
- ApiV2WorkflowsSearchPostRequest
- AssignAttachmentApiModel
- AssignIterationApiModel
- AttachmentApiResult
- AttachmentChangeViewModel
- AttachmentChangeViewModelArrayChangedFieldViewModel
- AttachmentModel
- AttachmentPutModel
- AttachmentPutModelAutoTestStepResultsModel
- AttachmentUpdateRequest
- AuditApiResult
- AutoTest
- AutoTestApiResult
- AutoTestAverageDurationApiResult
- AutoTestBulkDeleteApiModel
- AutoTestBulkDeleteApiModelAutoTestSelect
- AutoTestBulkDeleteApiResult
- AutoTestChangeViewModel
- AutoTestChangeViewModelArrayChangedFieldViewModel
- AutoTestClassCountApiModel
- AutoTestCreateApiModel
- AutoTestExtractionApiModel
- AutoTestExtractionApiModelIds
- AutoTestFilterApiModel
- AutoTestFilterApiModelCreatedDate
- AutoTestFilterApiModelModifiedDate
- AutoTestFilterApiModelStabilityPercentage
- AutoTestFilterModel
- AutoTestFlakyBulkApiModel
- AutoTestFlakyBulkApiModelAutoTestSelect
- AutoTestIdModel
- AutoTestLastTestResultConfiguration
- AutoTestModel
- AutoTestModelLastTestResultConfiguration
- AutoTestModelLastTestResultStatus
- AutoTestModelV2GetModel
- AutoTestNamespaceApiResult
- AutoTestNamespaceCountApiModel
- AutoTestNamespacesCountResponse
- AutoTestOutcome
- AutoTestProjectSettingsApiModel
- AutoTestProjectSettingsApiModelWorkItemUpdatingFields
- AutoTestProjectSettingsApiResult
- AutoTestProjectSettingsApiResultWorkItemUpdatingFields
- AutoTestRelatedToTestResult
- AutoTestResultHistoryApiResult
- AutoTestResultHistoryApiResultStatus
- AutoTestResultHistorySelectApiModel
- AutoTestResultReasonShort
- AutoTestResultReasonsCountItemModel
- AutoTestResultReasonsCountModel
- AutoTestResultsForTestRunModel
- AutoTestSearchApiModel
- AutoTestSearchApiModelFilter
- AutoTestSearchApiModelIncludes
- AutoTestSearchIncludeApiModel
- AutoTestSelectApiModel
- AutoTestSelectModel
- AutoTestSelectModelFilter
- AutoTestShortApiResult
- AutoTestStep
- AutoTestStepApiModel
- AutoTestStepApiResult
- AutoTestStepModel
- AutoTestStepResult
- AutoTestStepResultUpdateRequest
- AutoTestStepResultsApiResult
- AutoTestUpdateApiModel
- AutoTestWorkItemIdentifierApiResult
- AutoTestsExtractionModel
- AutotestResultOutcome
- AutotestResultReasonFilterModel
- AutotestResultReasonShortGetModel
- AvailableFailureCategory
- AvailableTestResultOutcome
- BackgroundJobAttachmentModel
- BackgroundJobFilterModel
- BackgroundJobGetModel
- BackgroundJobState
- BackgroundJobType
- BooleanChangedFieldViewModel
- BooleanNullableChangedFieldViewModel
- CollectionFilter
- CollectionFilterFilter
- CollectionOperator
- CompositeFilter
- ConfigurationByParametersModel
- ConfigurationExtractionApiModel
- ConfigurationExtractionApiModelIds
- ConfigurationExtractionApiModelProjectIds
- ConfigurationExtractionModel
- ConfigurationFilterApiModel
- ConfigurationFilterModel
- ConfigurationModel
- ConfigurationPostModel
- ConfigurationPutModel
- ConfigurationSelectApiModel
- ConfigurationSelectApiModelExtractionModel
- ConfigurationSelectApiModelFilter
- ConfigurationSelectModel
- ConfigurationSelectModelExtractionModel
- ConfigurationSelectModelFilter
- ConfigurationShort
- ConfigurationShortApiResult
- ConfigurationShortModel
- CreateAndFillByAutoTestsRequest
- CreateAndFillByConfigurationsRequest
- CreateAndFillByWorkItemsRequest
- CreateAutoTestRequest
- CreateConfigurationRequest
- CreateDefectApiModel
- CreateDefectApiModelForm
- CreateEmptyRequest
- CreateEmptyTestRunApiModel
- CreateFailureCategoryApiModel
- CreateFailureClassRegexApiModel
- CreateLinkApiModel
- CreateParameterApiModel
- CreateParameterRequest
- CreateProjectApiModel
- CreateProjectFailureCategoryApiModel
- CreateProjectRequest
- CreateProjectsAttributeRequest
- CreateSectionRequest
- CreateStepApiModel
- CreateTagApiModel
- CreateTestPlanApiModel
- CreateTestPlanRequest
- CreateTestRunAndFillByAutoTestsApiModel
- CreateTestRunAndFillByConfigurationsApiModel
- CreateTestRunAndFillByWorkItemsApiModel
- CreateTestStatusApiModel
- CreateWorkItemApiModel
- CreateWorkItemPreviewsApiModel
- CreateWorkflowApiModel
- CustomAttributeApiResult
- CustomAttributeChangeModel
- CustomAttributeGetModel
- CustomAttributeModel
- CustomAttributeOptionApiResult
- CustomAttributeOptionModel
- CustomAttributeOptionPostModel
- CustomAttributePostModel
- CustomAttributePutModel
- CustomAttributeSearchQueryModel
- CustomAttributeSearchResponseModel
- CustomAttributeTemplateModel
- CustomAttributeTemplatePostModel
- CustomAttributeTemplatePutModel
- CustomAttributeTemplateSearchQueryModel
- CustomAttributeTemplateValidationResult
- CustomAttributeTestPlanProjectRelationPutModel
- CustomAttributeType
- CustomAttributeTypesEnum
- CustomAttributeValidationResult
- DateTimeRangeSelectorModel
- DefectApiModel
- DeletionState
- DemoProjectApiResult
- EnableProjectExternalServiceApiModel
- ExternalFormAllowedValueModel
- ExternalFormCreateModel
- ExternalFormFieldModel
- ExternalFormLinkModel
- ExternalFormModel
- ExternalIssueApiField
- ExternalIssueApiFieldSuggestion
- ExternalIssueApiFieldSuggestionExternalService
- ExternalIssueApiFieldSuggestionReply
- ExternalIssueApiMetadata
- ExternalIssueApiMetadataPriority
- ExternalIssueApiMetadataType
- ExternalIssueApiPriority
- ExternalIssueApiResult
- ExternalIssueApiResultMetadata
- ExternalIssueApiType
- ExternalIssueExternalServiceApiResult
- ExternalIssueMetadataModel
- ExternalIssueModel
- ExternalIssueModelMetadata
- ExternalIssuePriorityModel
- ExternalIssueTypeModel
- ExternalLinkModel
- ExternalServiceMetadataApiResult
- ExternalServicesMetadataApiResult
- FailureCategory
- FailureCategoryApiResult
- FailureCategoryGroupApiModel
- FailureCategoryGroupApiResult
- FailureCategoryGroupItemApiResult
- FailureCategoryGroupItemApiResultGroup
- FailureCategoryGroupItemApiResultReply
- FailureCategoryGroupSearchApiModel
- FailureCategoryGroupSearchApiModelGroup
- FailureCategoryGroupSearchApiModelInquiry
- FailureCategoryItemApiResult
- FailureCategoryModel
- FailureClassRegexApiResult
- Filter
- FilterModel
- FilterOperator
- GenerateWorkItemPreviewsApiModel
- GenerateWorkItemPreviewsApiResult
- GetAIServiceModelsApiModel
- GetExternalFormApiResult
- GetExternalFormApiResultForm
- GetExternalIssueSuggestionsApiModel
- GetExternalIssueSuggestionsApiModelInquiry
- GetShortProjectsApiModel
- GetXlsxTestPointsByTestPlanModel
- GlobalCustomAttributePostModel
- GlobalCustomAttributeUpdateModel
- GlobalSearchItemResult
- GlobalSearchRequest
- GlobalSearchResponse
- GuidChangedFieldViewModel
- GuidExtractionModel
- IFilter
- ImageResizeType
- Inquiry
- Int32ChangedFieldViewModel
- Int32RangeSelectorModel
- Int64ChangedFieldViewModel
- Int64RangeSelectorModel
- IterationApiResult
- IterationModel
- Label
- LabelApiModel
- LabelApiResult
- LabelShortModel
- LastTestResultApiResult
- LastTestResultModel
- Link
- LinkApiResult
- LinkAutoTestToWorkItemRequest
- LinkCreateApiModel
- LinkModel
- LinkPostModel
- LinkPutModel
- LinkShort
- LinkShortApiResult
- LinkShortModel
- LinkType
- LinkUpdateApiModel
- ListSortDirection
- LogicalOperator
- ManualRerunApiResult
- ManualRerunSelectTestResultsApiModel
- ManualRerunSelectTestResultsApiModelExtractionModel
- ManualRerunSelectTestResultsApiModelFilter
- ManualRerunTestResultApiModel
- ManualRerunTestResultApiModelTestResultIds
- MoveRequest
- NamedEntityApiModel
- NotificationModel
- NotificationQueryFilterModel
- NotificationTypeModel
- Operation
- Order
- Page
- ParameterApiResult
- ParameterGroupApiResult
- ParameterGroupsFilterApiModel
- ParameterIterationModel
- ParameterShortApiResult
- ParameterShortModel
- ParametersFilterApiModel
- PeriodViewModel
- PeriodViewModelChangedFieldViewModel
- PreviewsIssueLinkApiModel
- PreviewsIssueLinkApiResult
- ProblemDetails
- ProjectApiResult
- ProjectAttributesFilterModel
- ProjectCustomAttributeTemplateGetModel
- ProjectCustomAttributesTemplatesFilterModel
- ProjectDetailedFailureCategoryApiResult
- ProjectExternalServiceApiResult
- ProjectExternalServiceApiResultMetadata
- ProjectExternalServiceSettingsApiResult
- ProjectExternalServicesApiResult
- ProjectExtractionModel
- ProjectFailureCategoryApiResult
- ProjectFailureCategoryGroupItemApiResult
- ProjectFailureCategoryGroupItemApiResultReply
- ProjectModel
- ProjectNameApiResult
- ProjectSelectModel
- ProjectShortApiResult
- ProjectShortApiResultReply
- ProjectShortModel
- ProjectShortestModel
- ProjectTestPlansFilterModel
- ProjectType
- ProjectTypeModel
- ProjectsFilterModel
- ProjectsFilterModelAutotestsCount
- ProjectsFilterModelChecklistsCount
- ProjectsFilterModelCreatedDate
- ProjectsFilterModelSharedStepsCount
- ProjectsFilterModelTestCasesCount
- RenameRequest
- ReplaceProjectExternalServiceApiModel
- RequestType
- RequestTypeApiModel
- RequestTypeModel
- RerunTestResultApiResult
- RerunTestResultModel
- RerunsModel
- SearchAttributesInProjectRequest
- SearchCustomAttributeTemplateGetModel
- SearchExternalIssuesApiModel
- SearchTestRunsApiModel
- SearchTestStatusesApiModel
- SearchWebhooksQueryModel
- SearchWorkItemLinkUrlsApiResult
- SearchWorkItemsRequest
- SearchWorkflowProjectsApiModel
- SearchWorkflowsApiModel
- SectionModel
- SectionMoveModel
- SectionPostModel
- SectionPutModel
- SectionRenameModel
- SectionSharedStep
- SectionWithStepsModel
- SelectTagsApiModel
- SelectTagsApiModelExtractionModel
- SelectTagsApiModelFilter
- SharedStepChangeViewModel
- SharedStepModel
- SharedStepReferenceModel
- SharedStepReferenceSectionModel
- SharedStepReferenceSectionsQueryFilterModel
- SharedStepReferenceSectionsQueryFilterModelCreatedDate
- SharedStepReferenceSectionsQueryFilterModelModifiedDate
- SharedStepReferencesQueryFilterModel
- SharedStepResultApiModel
- ShortConfiguration
- StepCommentApiModel
- StepModel
- StepPostModel
- StepPutModel
- StepResultApiModel
- StringArrayChangedFieldViewModel
- StringChangedFieldViewModel
- StringChangedFieldWithDiffsViewModel
- StringExtractionModel
- TagApiModel
- TagApiResult
- TagModel
- TagShortApiResult
- TagsExtractionApiModel
- TagsExtractionApiModelIds
- TagsFilterApiModel
- TagsFilterApiModelCreatedDate
- TestPlanApiResult
- TestPlanChangeModel
- TestPlanChangeModelTestPlanChangedFields
- TestPlanChangedFieldsViewModel
- TestPlanExtractionModel
- TestPlanGroupByStatus
- TestPlanGroupByStatusCode
- TestPlanGroupByStatusType
- TestPlanGroupByTester
- TestPlanGroupByTesterAndStatus
- TestPlanGroupByTesterAndStatusCode
- TestPlanLink
- TestPlanModel
- TestPlanSelectModel
- TestPlanShortModel
- TestPlanStatus
- TestPlanStatusModel
- TestPlanSummaryModel
- TestPlanTagApiResult
- TestPlanTestPointsAnalyticsApiModel
- TestPlanTestPointsAnalyticsApiResult
- TestPlanTestPointsApiModel
- TestPlanTestPointsAutoTestsRerunApiModel
- TestPlanTestPointsAutoTestsRerunApiModelExtractionModel
- TestPlanTestPointsAutoTestsRerunApiModelFilter
- TestPlanTestPointsAutoTestsRunApiModel
- TestPlanTestPointsExtractionApiModel
- TestPlanTestPointsExtractionApiModelIds
- TestPlanTestPointsGroupApiModel
- TestPlanTestPointsGroupApiResult
- TestPlanTestPointsGroupSearchApiResult
- TestPlanTestPointsGroupSearchApiResultStatusCounters
- TestPlanTestPointsGroupSearchItemApiResult
- TestPlanTestPointsInquiryApiModel
- TestPlanTestPointsSearchApiModel
- TestPlanTestPointsSearchApiModelCreatedDate
- TestPlanTestPointsSearchApiModelDuration
- TestPlanTestPointsSearchApiModelModifiedDate
- TestPlanTestPointsSearchApiModelWorkItemCreatedDate
- TestPlanTestPointsSearchApiModelWorkItemMedianDuration
- TestPlanTestPointsSearchApiModelWorkItemModifiedDate
- TestPlanTestPointsSearchApiResult
- TestPlanTestPointsSearchApiResultConfiguration
- TestPlanTestPointsSearchApiResultCreated
- TestPlanTestPointsSearchApiResultStatusModel
- TestPlanTestPointsSearchApiResultTestSuite
- TestPlanTestPointsSearchApiResultWorkItem
- TestPlanTestPointsSearchStatusCountersApiResult
- TestPlanTestPointsSectionSearchApiResult
- TestPlanTestPointsSetTestersApiModel
- TestPlanTestPointsStatusCodeGroupApiResult
- TestPlanTestPointsStatusGroupApiResult
- TestPlanTestPointsStatusTypeGroupApiResult
- TestPlanTestPointsTestSuiteSearchApiResult
- TestPlanTestPointsTesterAndStatusGroupApiResult
- TestPlanTestPointsTesterAndStatusTypeGroupApiResult
- TestPlanTestPointsTesterGroupApiResult
- TestPlanTestPointsWorkItemSearchApiResult
- TestPlanTestPointsWorkItemSearchApiResultSection
- TestPlanWithAnalyticModel
- TestPlanWithAnalyticModelAnalytic
- TestPlanWithTestSuiteTreeModel
- TestPoint
- TestPointAnalyticResult
- TestPointByTestSuiteModel
- TestPointChangeViewModel
- TestPointChangeViewModelChangedFieldViewModel
- TestPointFilterModel
- TestPointFilterRequestModel
- TestPointRelatedToTestResult
- TestPointResultApiResult
- TestPointSelectModel
- TestPointSelector
- TestPointShortApiResult
- TestPointShortApiResultStatusModel
- TestPointShortModel
- TestPointShortResponseModel
- TestPointShortResponseModelLastTestResult
- TestPointShortResponseModelStatusModel
- TestPointStatus
- TestPointWithLastResultResponseModel
- TestPointsExtractionModel
- TestResultApiResult
- TestResultChangeViewModel
- TestResultChangeViewModelChangedFieldViewModel
- TestResultChronologyModel
- TestResultConfiguration
- TestResultFailureClassApiResult
- TestResultHistoryReportApiResult
- TestResultHistoryReportApiResultStatus
- TestResultOutcome
- TestResultResponse
- TestResultShortApiResult
- TestResultShortResponse
- TestResultStepCommentUpdateRequest
- TestResultUpdateV2Request
- TestResultV2GetModel
- TestResultV2ShortModel
- TestResultsExtractionApiModel
- TestResultsFilterApiModel
- TestResultsFilterApiModelCompletedOn
- TestResultsFilterApiModelCreatedDate
- TestResultsFilterApiModelDuration
- TestResultsFilterApiModelModifiedDate
- TestResultsFilterApiModelStartedOn
- TestResultsLocalFilterModel
- TestResultsSelectApiModel
- TestResultsSelectApiModelExtractionModel
- TestResultsSelectApiModelFilter
- TestResultsStatisticsApiResult
- TestResultsStatisticsApiResultFailureCategories
- TestResultsStatisticsApiResultStatuses
- TestResultsStatisticsFailureCategoriesApiResult
- TestResultsStatisticsStatusesApiResult
- TestRunAnalyticApiResult
- TestRunApiResult
- TestRunApiResultAnalytic
- TestRunByAutoTestApiResult
- TestRunByAutoTestApiResultStatus
- TestRunExtractionApiModel
- TestRunExtractionApiModelIds
- TestRunFilterApiModel
- TestRunFilterApiModelAutoTestsCount
- TestRunFilterApiModelCompletedDate
- TestRunFilterApiModelCreatedDate
- TestRunFilterApiModelStartedDate
- TestRunGroupByFailureClassApiResult
- TestRunGroupByStatusApiResult
- TestRunGroupByStatusTypeApiResult
- TestRunNameApiResult
- TestRunSelectApiModel
- TestRunSelectApiModelExtractionModel
- TestRunShortApiResult
- TestRunShortApiResultStatistics
- TestRunShortApiResultStatus
- TestRunState
- TestRunStatisticsFilterApiModel
- TestRunTestResultsPartialBulkSetModel
- TestRunTestResultsPartialBulkSetModelSelector
- TestRunTestResultsSelectModel
- TestRunTestResultsSelectModelFilter
- TestRunTestResultsSelectModelTestResultIdsExtractionModel
- TestRunV2ApiResult
- TestStatusApiResult
- TestStatusApiResultReply
- TestStatusApiType
- TestStatusModel
- TestStatusShortApiResult
- TestStatusType
- TestSuiteApiResult
- TestSuiteChangeViewModel
- TestSuiteChangeViewModelChangedFieldViewModel
- TestSuiteHierarchyApiResult
- TestSuiteTestPlanApiModel
- TestSuiteType
- TestSuiteTypeApiResult
- TestSuiteV2GetModel
- TestSuiteV2PostModel
- TestSuiteV2PutModel
- TestSuiteWithChildrenModel
- TestSuiteWorkItemsSearchModel
- TestSuiteWorkItemsSearchModelDuration
- TestSuiteWorkItemsSearchModelExternalMetadata
- TestSuiteWorkItemsSearchModelLinks
- TestSuiteWorkItemsSearchModelMedianDuration
- UpdateAutoTestRequest
- UpdateCustomAttributeTestPlanProjectRelationsRequest
- UpdateEmptyRequest
- UpdateEmptyTestRunApiModel
- UpdateFailureCategoryApiModel
- UpdateFailureCategoryProjectApiModel
- UpdateFailureClassRegexApiModel
- UpdateLinkApiModel
- UpdateMultipleAttachmentsApiModel
- UpdateMultipleLinksApiModel
- UpdateMultipleTestRunsApiModel
- UpdateMultipleTestRunsApiModelAttachmentUpdateScheme
- UpdateMultipleTestRunsApiModelLinkUpdateScheme
- UpdateMultipleTestRunsApiModelSelectModel
- UpdateParameterApiModel
- UpdateParameterRequest
- UpdateProjectApiModel
- UpdateProjectRequest
- UpdateProjectsAttributeRequest
- UpdateSectionRequest
- UpdateStepApiModel
- UpdateTagApiModel
- UpdateTestPlanApiModel
- UpdateTestPlanRequest
- UpdateTestStatusApiModel
- UpdateWorkItemApiModel
- UpdateWorkItemRequest
- UpdateWorkflowApiModel
- UserCustomNameValidationResponse
- UserNameApiResult
- UserRankModel
- UserWithRankModel
- UserWithRankModelUserRank
- ValidationProblemDetails
- WebHookEventType
- WebHookEventTypeModel
- WebHookEventTypeRequest
- WebHookModel
- WebHookPostModel
- WebHookTestModel
- WebhookBulkUpdateApiModel
- WebhookLogApiResult
- WebhookResponse
- WebhookVariablesType
- WebhooksDeleteApiModel
- WebhooksDeleteApiModelExtractor
- WebhooksDeleteApiModelFilter
- WebhooksDeleteFilterApiModel
- WebhooksExtractionApiModel
- WebhooksFilterApiModel
- WebhooksUpdateApiModel
- WebhooksUpdateApiModelFilter
- WebhooksUpdateApiModelModel
- WebhooksUpdateApiResult
- WorkItemApiResult
- WorkItemChangeModel
- WorkItemChangeModelWorkItemChangedFields
- WorkItemChangedAttributeViewModel
- WorkItemChangedFieldsViewModel
- WorkItemChangedFieldsViewModelAttachments
- WorkItemChangedFieldsViewModelAutoTests
- WorkItemChangedFieldsViewModelDuration
- WorkItemChangedFieldsViewModelGlobalId
- WorkItemChangedFieldsViewModelIsDeleted
- WorkItemChangedFieldsViewModelLinks
- WorkItemChangedFieldsViewModelProjectId
- WorkItemChangedFieldsViewModelState
- WorkItemChangedFieldsViewModelSteps
- WorkItemChangedFieldsViewModelTags
- WorkItemCommentModel
- WorkItemCommentModelUser
- WorkItemCommentPostModel
- WorkItemCommentPutModel
- WorkItemEntityTypeApiModel
- WorkItemEntityTypes
- WorkItemExternalMetadataFieldFilterApiModel
- WorkItemExternalMetadataFieldFilterModel
- WorkItemExternalMetadataFilterApiModel
- WorkItemExternalMetadataFilterModel
- WorkItemExtractionApiModel
- WorkItemExtractionApiModelIds
- WorkItemExtractionApiModelSectionIds
- WorkItemExtractionModel
- WorkItemFilterApiModel
- WorkItemFilterApiModelExternalMetadata
- WorkItemFilterApiModelLinks
- WorkItemFilterModel
- WorkItemGroupGetModel
- WorkItemGroupGetModelSelectModel
- WorkItemGroupModel
- WorkItemGroupType
- WorkItemIdApiModel
- WorkItemIndexApiResult
- WorkItemLikeModel
- WorkItemLinkChangeViewModel
- WorkItemLinkChangeViewModelArrayChangedFieldViewModel
- WorkItemLinkExtractionApiModel
- WorkItemLinkFilterApiModel
- WorkItemLinkFilterModel
- WorkItemLinkUrlApiModel
- WorkItemLinkUrlApiModelExtractionModel
- WorkItemLinkUrlApiModelFilter
- WorkItemLinkUrlApiResult
- WorkItemLinkUrlFilterApiModel
- WorkItemLocalFilterModel
- WorkItemLocalSelectModel
- WorkItemLocalSelectModelExtractionModel
- WorkItemLocalSelectModelFilter
- WorkItemModel
- WorkItemMovePostModel
- WorkItemPreviewApiModel
- WorkItemPreviewStepApiModel
- WorkItemPriority
- WorkItemPriorityApiModel
- WorkItemPriorityModel
- WorkItemSearchQueryModel
- WorkItemSelectApiModel
- WorkItemSelectApiModelFilter
- WorkItemSelectModel
- WorkItemSelectModelFilter
- WorkItemShortApiResult
- WorkItemShortModel
- WorkItemSourceTypeApiModel
- WorkItemSourceTypeModel
- WorkItemState
- WorkItemStateApiModel
- WorkItemStates
- WorkItemStepChangeViewModel
- WorkItemStepChangeViewModelArrayChangedFieldWithDiffsViewModel
- WorkItemStepChangeViewModelWorkItem
- WorkItemUpdatingFieldsApiModel
- WorkItemUpdatingFieldsApiResult
- WorkItemVersionModel
- WorkflowApiResult
- WorkflowExistsByNameApiResult
- WorkflowProjectApiResult
- WorkflowProjectApiResultApiCollectionPreview
- WorkflowProjectApiResultReply
- WorkflowShortApiResult
- WorkflowShortApiResultProjects
- WorkflowShortApiResultReply
- WorkflowStatusApiModel
- WorkflowStatusApiResult
Documentation For Authorization
Authentication schemes defined for the API:
Bearer or PrivateToken
- Type: API key
- API key parameter name: Authorization
- Location: HTTP header
Author
Notes for Large OpenAPI documents
If the OpenAPI document is large, imports in testit_api_client.apis and testit_api_client.models may fail with a RecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:
Solution 1: Use specific imports for apis and models like:
from testit_api_client.api.default_api import DefaultApifrom testit_api_client.model.pet import Pet
Solution 2: Before importing the package, adjust the maximum recursion limit as shown below:
import sys
sys.setrecursionlimit(1500)
import testit_api_client
from testit_api_client.apis import *
from testit_api_client.models import *
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file testit_api_client-7.5.0.tar.gz.
File metadata
- Download URL: testit_api_client-7.5.0.tar.gz
- Upload date:
- Size: 489.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7cd3f81c4c7c4dd01cbc891d6cf9bbfe95bbcc211c009c716fb277e64d9c744d
|
|
| MD5 |
30cfd121ee38d6881fae1b7bbc3de852
|
|
| BLAKE2b-256 |
6e0b0b44ecb4a0e14583de0107c840a3691d1d1f326478925679e88955a225ba
|