KosmoKrator

productivity

Azure DevOps MCP, CLI, and Lua Integration for AI Agents

Azure DevOps integration docs for AI agents: MCP gateway setup, Azure DevOps CLI commands, Lua API reference, credentials, and function schemas.

Azure DevOps for agents

Credentials can be configured manually in web or CLI hosts.

Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.

Agent Surfaces

Machine-Readable Metadata

Function Catalog

FunctionTypeParametersDescription
azure-devops.azure_devops_account_accounts_list Read read 4 Get a list of accounts for a specific owner or a specific member. One of the following parameters is required: ownerId, memberId. Official Azure DevOps REST API 7.2 endpoint: GET https://app.vssps.visualstudio.com/_apis/accounts (spec: account/7.2/accounts.json).
azure-devops.azure_devops_advanced_security_filters_settings_list Read read 4 Gets all advanced filters for the organization. Official Azure DevOps REST API 7.2 endpoint: GET https://advsec.dev.azure.com/{organization}/_apis/reporting/filtersSettings/alertsbatch (spec: advancedSecurity/7.2/advancedSecurity.Reporting.json).
azure-devops.azure_devops_advanced_security_filters_settings_create Read read 3 Creates a new advanced filter for the organization. Official Azure DevOps REST API 7.2 endpoint: POST https://advsec.dev.azure.com/{organization}/_apis/reporting/filtersSettings/alertsbatch (spec: advancedSecurity/7.2/advancedSecurity.Reporting.json).
azure-devops.azure_devops_advanced_security_filters_settings_get Read read 3 Gets a specific advanced filter by its ID. Official Azure DevOps REST API 7.2 endpoint: GET https://advsec.dev.azure.com/{organization}/_apis/reporting/filtersSettings/alertsbatch/{filterId} (spec: advancedSecurity/7.2/advancedSecurity.Reporting.json).
azure-devops.azure_devops_advanced_security_filters_settings_update Read read 4 Updates an advanced filter. Only the name can be updated. Official Azure DevOps REST API 7.2 endpoint: PATCH https://advsec.dev.azure.com/{organization}/_apis/reporting/filtersSettings/alertsbatch/{filterId} (spec: advancedSecurity/7.2/advancedSecurity.Reporting.json).
azure-devops.azure_devops_advanced_security_filters_settings_delete Read read 3 Deletes an advanced filter. Official Azure DevOps REST API 7.2 endpoint: DELETE https://advsec.dev.azure.com/{organization}/_apis/reporting/filtersSettings/alertsbatch/{filterId} (spec: advancedSecurity/7.2/advancedSecurity.Reporting.json).
azure-devops.azure_devops_advanced_security_summary_dashboard_get_alert_summary_for_org Read read 7 Get Alert summary by severity for the org Official Azure DevOps REST API 7.2 endpoint: GET https://advsec.dev.azure.com/{organization}/_apis/reporting/summary/alerts (spec: advancedSecurity/7.2/advancedSecurity.Reporting.json).
azure-devops.azure_devops_advanced_security_summary_dashboard_list Read read 22 Get Combined Alerts for the org Official Azure DevOps REST API 7.2 endpoint: GET https://advsec.dev.azure.com/{organization}/_apis/reporting/summary/alertsbatch (spec: advancedSecurity/7.2/advancedSecurity.Reporting.json).
azure-devops.azure_devops_advanced_security_summary_dashboard_get_enablement_summary_for_org Read read 11 Get Enablement summary for the org Official Azure DevOps REST API 7.2 endpoint: GET https://advsec.dev.azure.com/{organization}/_apis/reporting/summary/enablement (spec: advancedSecurity/7.2/advancedSecurity.Reporting.json).
azure-devops.azure_devops_advanced_security_alerts_batch_list Read read 5 Get alerts by alert IDs Currently supports fetching secret alerts only. Official Azure DevOps REST API 7.2 endpoint: POST https://advsec.dev.azure.com/{organization}/{project}/_apis/alert/repositories/{repository}/AlertsBatch (spec: advancedSecurity/7.2/alert.json).
azure-devops.azure_devops_advanced_security_alerts_list Read read 31 Get alerts for a repository Official Azure DevOps REST API 7.2 endpoint: GET https://advsec.dev.azure.com/{organization}/{project}/_apis/alert/repositories/{repository}/alerts (spec: advancedSecurity/7.2/alert.json).
azure-devops.azure_devops_advanced_security_metadata_batch_list Read read 5 Get alerts metadata. Official Azure DevOps REST API 7.2 endpoint: POST https://advsec.dev.azure.com/{organization}/{project}/_apis/alert/repositories/{repository}/alerts/metadatabatch (spec: advancedSecurity/7.2/alert.json).
azure-devops.azure_devops_advanced_security_alerts_get Read read 7 Get an alert. Official Azure DevOps REST API 7.2 endpoint: GET https://advsec.dev.azure.com/{organization}/{project}/_apis/alert/repositories/{repository}/alerts/{alertId} (spec: advancedSecurity/7.2/alert.json).
azure-devops.azure_devops_advanced_security_alerts_update Read read 6 Update the status of an alert Official Azure DevOps REST API 7.2 endpoint: PATCH https://advsec.dev.azure.com/{organization}/{project}/_apis/alert/repositories/{repository}/alerts/{alertId} (spec: advancedSecurity/7.2/alert.json).
azure-devops.azure_devops_advanced_security_instances_list Read read 6 Get instances of an alert on a branch specified with @ref. If @ref is not provided, return instances of an alert on default branch(if the alert exist in default branch) or latest affected branch. Official Azure DevOps REST API 7.2 endpoint: GET https://advsec.dev.azure.com/{organization}/{project}/_apis/alert/repositories/{repository}/alerts/{alertId}/instances (spec: advancedSecurity/7.2/alert.json).
azure-devops.azure_devops_advanced_security_metadata2_get Read read 5 Get an alert metadata. Official Azure DevOps REST API 7.2 endpoint: GET https://advsec.dev.azure.com/{organization}/{project}/_apis/alert/repositories/{repository}/alerts/{alertId}/metadata (spec: advancedSecurity/7.2/alert.json).
azure-devops.azure_devops_advanced_security_analysis_list Read read 9 Returns the branches for which analysis results were submitted. Official Azure DevOps REST API 7.2 endpoint: GET https://advsec.dev.azure.com/{organization}/{project}/_apis/alert/repositories/{repository}/filters/branches (spec: advancedSecurity/7.2/alert.json).
azure-devops.azure_devops_advanced_security_pipeline_analyses_delete Read read 4 Soft-deletes analysis data for all pipelines in a repository, cleaning up the associated Advanced Security alerts. Official Azure DevOps REST API 7.2 endpoint: DELETE https://advsec.dev.azure.com/{organization}/{project}/_apis/alert/repositories/{repository}/pipelineAnalyses (spec: advancedSecurity/7.2/alert.json).
azure-devops.azure_devops_advanced_security_pipeline_analysis_delete Read read 5 Soft-deletes analysis data for a specific pipeline, cleaning up the associated Advanced Security alerts. Official Azure DevOps REST API 7.2 endpoint: DELETE https://advsec.dev.azure.com/{organization}/{project}/_apis/alert/repositories/{repository}/pipelineAnalysis/{adoPipelineId} (spec: advancedSecurity/7.2/alert.json).
azure-devops.azure_devops_advanced_security_org_enablement_get Read read 3 Get the current status of Advanced Security for the organization Official Azure DevOps REST API 7.2 endpoint: GET https://advsec.dev.azure.com/{organization}/_apis/management/enablement (spec: advancedSecurity/7.2/management.json).
azure-devops.azure_devops_advanced_security_org_enablement_update Read read 3 Update the status of Advanced Security for the organization Official Azure DevOps REST API 7.2 endpoint: PATCH https://advsec.dev.azure.com/{organization}/_apis/management/enablement (spec: advancedSecurity/7.2/management.json).
azure-devops.azure_devops_advanced_security_org_meter_usage_estimate_get Read read 3 Estimate the pushers that would be added to the customer's usage if Advanced Security was enabled for this organization. Official Azure DevOps REST API 7.2 endpoint: GET https://advsec.dev.azure.com/{organization}/_apis/management/meterUsageEstimate/default (spec: advancedSecurity/7.2/management.json).
azure-devops.azure_devops_advanced_security_meter_usage_get Read read 4 Get commiters used when calculating billing information. Official Azure DevOps REST API 7.2 endpoint: GET https://advsec.dev.azure.com/{organization}/_apis/management/meterusage/default (spec: advancedSecurity/7.2/management.json).
azure-devops.azure_devops_advanced_security_project_enablement_get Read read 4 Get the current status of Advanced Security for a project Official Azure DevOps REST API 7.2 endpoint: GET https://advsec.dev.azure.com/{organization}/{project}/_apis/management/enablement (spec: advancedSecurity/7.2/management.json).
azure-devops.azure_devops_advanced_security_project_enablement_update Read read 4 Update the status of Advanced Security for the project Official Azure DevOps REST API 7.2 endpoint: PATCH https://advsec.dev.azure.com/{organization}/{project}/_apis/management/enablement (spec: advancedSecurity/7.2/management.json).
azure-devops.azure_devops_advanced_security_project_meter_usage_estimate_get Read read 4 Estimate the pushers that would be added to the customer's usage if Advanced Security was enabled for this project. Official Azure DevOps REST API 7.2 endpoint: GET https://advsec.dev.azure.com/{organization}/{project}/_apis/management/meterUsageEstimate/default (spec: advancedSecurity/7.2/management.json).
azure-devops.azure_devops_advanced_security_repo_enablement_get Read read 5 Determines if Code Security, Secret Protection, and their features are enabled for the repository. Official Azure DevOps REST API 7.2 endpoint: GET https://advsec.dev.azure.com/{organization}/{project}/_apis/management/repositories/{repository}/enablement (spec: advancedSecurity/7.2/management.json).
azure-devops.azure_devops_advanced_security_repo_enablement_update Read read 5 Update the enablement status of Code Security and Secret Protection, along with their respective features, for a given repository. Official Azure DevOps REST API 7.2 endpoint: PATCH https://advsec.dev.azure.com/{organization}/{project}/_apis/management/repositories/{repository}/enablement (spec: advancedSecurity/7.2/management.json).
azure-devops.azure_devops_advanced_security_repo_meter_usage_estimate_get Read read 5 Estimate the pushers that would be added to the customer's usage if Advanced Security was enabled for this repository. Official Azure DevOps REST API 7.2 endpoint: GET https://advsec.dev.azure.com/{organization}/{project}/_apis/management/repositories/{repository}/meterUsageEstimate/default (spec: advancedSecurity/7.2/management.json).
azure-devops.azure_devops_approvals_and_checks_pipeline_permissions_update_pipeline_permisions_for_resources Write write 4 Batch API to authorize/unauthorize a list of definitions for a multiple resources. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/pipelines/pipelinepermissions (spec: approvalsAndChecks/7.2/pipelinePermissions.json).
azure-devops.azure_devops_approvals_and_checks_pipeline_permissions_get Read read 5 Given a ResourceType and ResourceId, returns authorized definitions for that resource. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/pipelines/pipelinepermissions/{resourceType}/{resourceId} (spec: approvalsAndChecks/7.2/pipelinePermissions.json).
azure-devops.azure_devops_approvals_and_checks_pipeline_permissions_update_pipeline_permisions_for_resource Write write 6 Authorizes/Unauthorizes a list of definitions for a given resource. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/pipelines/pipelinepermissions/{resourceType}/{resourceId} (spec: approvalsAndChecks/7.2/pipelinePermissions.json).
azure-devops.azure_devops_approvals_and_checks_check_configurations_list Read read 6 Get Check configuration by resource type and id Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/pipelines/checks/configurations (spec: approvalsAndChecks/7.2/pipelinesChecks.json).
azure-devops.azure_devops_approvals_and_checks_check_configurations_add Read read 4 Add a check configuration Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/pipelines/checks/configurations (spec: approvalsAndChecks/7.2/pipelinesChecks.json).
azure-devops.azure_devops_approvals_and_checks_check_configurations_get Read read 5 Get Check configuration by Id Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/pipelines/checks/configurations/{id} (spec: approvalsAndChecks/7.2/pipelinesChecks.json).
azure-devops.azure_devops_approvals_and_checks_check_configurations_update Read read 5 Update check configuration Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/pipelines/checks/configurations/{id} (spec: approvalsAndChecks/7.2/pipelinesChecks.json).
azure-devops.azure_devops_approvals_and_checks_check_configurations_delete Read read 4 Delete check configuration by id Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/pipelines/checks/configurations/{id} (spec: approvalsAndChecks/7.2/pipelinesChecks.json).
azure-devops.azure_devops_approvals_and_checks_check_configurations_query Read read 5 Get check configurations for multiple resources by resource type and id. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/pipelines/checks/queryconfigurations (spec: approvalsAndChecks/7.2/pipelinesChecks.json).
azure-devops.azure_devops_approvals_and_checks_check_evaluations_evaluate Read read 5 Initiate an evaluation for a check in a pipeline Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/pipelines/checks/runs (spec: approvalsAndChecks/7.2/pipelinesChecks.json).
azure-devops.azure_devops_approvals_and_checks_check_evaluations_get Read read 5 Get details for a specific check evaluation Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/pipelines/checks/runs/{checkSuiteId} (spec: approvalsAndChecks/7.2/pipelinesChecks.json).
azure-devops.azure_devops_approvals_and_checks_check_evaluations_update Read read 6 Update a check run of a check suite Following update actions are supported: * rerun - allows to rerun an already completed check, if the check retry interval is 0 * bypass - applied on a check which has not already been bypassed and whose check suite is not completed yet Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/pipelines/checks/runs/{checkSuiteId} (spec: approvalsAndChecks/7.2/pipelinesChecks.json).
azure-devops.azure_devops_approvals_and_checks_approvals_query Read read 8 List Approvals. This can be used to get a set of pending approvals in a pipeline, on an user or for a resource.. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/pipelines/approvals (spec: approvalsAndChecks/7.2/pipelinesapproval.json).
azure-devops.azure_devops_approvals_and_checks_approvals_update Read read 4 Update approvals. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/pipelines/approvals (spec: approvalsAndChecks/7.2/pipelinesapproval.json).
azure-devops.azure_devops_approvals_and_checks_approvals_get Read read 5 Get an approval. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/pipelines/approvals/{approvalId} (spec: approvalsAndChecks/7.2/pipelinesapproval.json).
azure-devops.azure_devops_artifacts_service_settings_get_global_permissions Read read 3 Get all service-wide feed creation and administration permissions. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/_apis/packaging/globalpermissions (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_service_settings_set_global_permissions Read read 3 Set service-wide permissions that govern feed creation and administration. Official Azure DevOps REST API 7.2 endpoint: PATCH https://feeds.dev.azure.com/{organization}/_apis/packaging/globalpermissions (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_artifact_details_get_package_version_provenance Read read 6 Gets provenance for a package version. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/Packages/{packageId}/Versions/{packageVersionId}/provenance (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_artifact_details_query_package_version_metrics Read read 6 POST /{organization}/{project}/_apis/packaging/Feeds/{feedId}/Packages/{packageId}/versionmetricsbatch Official Azure DevOps REST API 7.2 endpoint: POST https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/Packages/{packageId}/versionmetricsbatch (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_artifact_details_get_package_versions Read read 8 Get a list of package versions, optionally filtering by state. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/Packages/{packageId}/versions (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_artifact_details_get_package_version Read read 9 Get details about a specific package version. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/Packages/{packageId}/versions/{packageVersionId} (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_packages Read read 10 Query for packages within the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/RecycleBin/Packages (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_recycle_bin_empty_recycle_bin Read read 4 Queues a job to remove all package versions from a feed's recycle bin Official Azure DevOps REST API 7.2 endpoint: DELETE https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/RecycleBin/Packages (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_package Read read 6 Get information about a package and all its versions within the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/RecycleBin/Packages/{packageId} (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_package_versions Read read 6 Get a list of package versions within the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/RecycleBin/Packages/{packageId}/Versions (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_package_version Read read 7 Get information about a package version within the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/RecycleBin/Packages/{packageId}/Versions/{packageVersionId} (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_change_tracking_get_package_changes Write write 6 Get a batch of package changes made to a feed. The changes returned are 'most recent change' so if an Add is followed by an Update before you begin enumerating, you'll only see one change in the batch. While consuming batches using the continuation token, you may see changes to the same package version multiple times if they are happening as you enumerate. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/packagechanges (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_artifact_details_query_package_metrics Read read 5 POST /{organization}/{project}/_apis/packaging/Feeds/{feedId}/packagemetricsbatch Official Azure DevOps REST API 7.2 endpoint: POST https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/packagemetricsbatch (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_artifact_details_get_packages Read read 18 Get details about all of the packages in the feed. Use the various filters to include or exclude information from the result set. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/packages (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_artifact_details_get_package Read read 11 Get details about a specific package. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/packages/{packageId} (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_feed_management_get_feed_permissions Read read 8 Get the permissions for a feed. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/permissions (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_feed_management_set_feed_permissions Read read 5 Update the permissions on a feed. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: PATCH https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/permissions (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_retention_policies_get_retention_policy Read read 4 Get the retention policy for a feed. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/retentionpolicies (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_retention_policies_set_retention_policy Read read 5 Set the retention policy for a feed. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: PUT https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/retentionpolicies (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_retention_policies_delete_retention_policy Write write 4 Delete the retention policy for a feed. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: DELETE https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/retentionpolicies (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_feed_management_get_feed_views Read read 4 Get all views for a feed. The project parameter must be supplied if the feed was created in a project. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/views (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_feed_management_create_feed_view Write write 5 Create a new view on the referenced feed. The project parameter must be supplied if the feed was created in a project. Official Azure DevOps REST API 7.2 endpoint: POST https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/views (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_feed_management_get_feed_view Read read 5 Get a view by Id. The project parameter must be supplied if the feed was created in a project. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/views/{viewId} (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_feed_management_update_feed_view Write write 6 Update a view. The project parameter must be supplied if the feed was created in a project. Official Azure DevOps REST API 7.2 endpoint: PATCH https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/views/{viewId} (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_feed_management_delete_feed_view Write write 5 Delete a feed view. The project parameter must be supplied if the feed was created in a project. Official Azure DevOps REST API 7.2 endpoint: DELETE https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/Feeds/{feedId}/views/{viewId} (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_change_tracking_get_feed_changes Write write 6 Query to determine which feeds have changed since the last call, tracked through the provided continuationToken. Only changes to a feed itself are returned and impact the continuationToken, not additions or alterations to packages within the feeds. If the project parameter is present, gets all feed changes in the given project. If omitted, gets all feed changes in the organization. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/feedchanges (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_change_tracking_get_feed_change Write write 4 Query a feed to determine its current state. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/feedchanges/{feedId} (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_feed_recycle_bin_list Read read 3 Query for feeds within the recycle bin. If the project parameter is present, gets all feeds in recycle bin in the given project. If omitted, gets all feeds in recycle bin in the organization. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/feedrecyclebin (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_feed_recycle_bin_restore_deleted_feed Read read 5 Restores a deleted feed and all of its packages. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: PATCH https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/feedrecyclebin/{feedId} (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_feed_recycle_bin_permanent_delete_feed Write write 4 Permanently delete a feed and all of its packages. The action is irreversible and the package content will be deleted immediately. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: DELETE https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/feedrecyclebin/{feedId} (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_feed_management_get_feeds Read read 6 Get all feeds in an account where you have the provided role access. If the project parameter is present, gets all feeds in the given project. If omitted, gets all feeds in the organization. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/feeds (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_feed_management_create_feed Write write 4 Create a feed, a container for various package types. Feeds can be created in a project if the project parameter is included in the request url. If the project parameter is omitted, the feed will not be associated with a project and will be created at the organization level. Official Azure DevOps REST API 7.2 endpoint: POST https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/feeds (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_feed_management_get_feed Read read 5 Get the settings for a specific feed. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId} (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_feed_management_update_feed Write write 5 Change the attributes of a feed. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: PATCH https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId} (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_feed_management_delete_feed Write write 4 Remove a feed and all its packages. The feed moves to the recycle bin and is reversible. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: DELETE https://feeds.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId} (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_artifact_details_get_badge Read read 5 Generate a SVG badge for the latest version of a package. The generated SVG is typically used as the image in an HTML link which takes users to the feed containing the package to accelerate discovery and consumption. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://feeds.dev.azure.com/{organization}/{project}/_apis/public/packaging/Feeds/{feedId}/Packages/{packageId}/badge (spec: artifacts/7.2/feed.json).
azure-devops.azure_devops_artifacts_provenance_create_session Write write 5 Creates a session, a wrapper around a feed that can store additional metadata on the packages published to it. Official Azure DevOps REST API 7.2 endpoint: POST https://pkgs.dev.azure.com/{organization}/{project}/_apis/provenance/session/{protocol} (spec: artifacts/7.2/provenance.json).
azure-devops.azure_devops_artifacts_package_types_cargo_get_package_version_from_recycle_bin Read read 6 Get information about a package version in the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/cargo/RecycleBin/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/cargoApi-AzureArtifacts.json).
azure-devops.azure_devops_artifacts_package_types_cargo_restore_package_version_from_recycle_bin Read read 7 Restore a package version from the recycle bin to its associated feed. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/cargo/RecycleBin/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/cargoApi-AzureArtifacts.json).
azure-devops.azure_devops_artifacts_package_types_cargo_delete_package_version_from_recycle_bin Write write 6 Delete a package version from the feed, moving it to the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: DELETE https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/cargo/RecycleBin/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/cargoApi-AzureArtifacts.json).
azure-devops.azure_devops_artifacts_package_types_cargo_update_recycle_bin_package_versions Write write 5 Delete or restore several package versions from the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: POST https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/cargo/RecycleBin/packagesBatch (spec: artifactsPackageTypes/7.2/cargoApi-AzureArtifacts.json).
azure-devops.azure_devops_artifacts_package_types_cargo_get_package_version Read read 7 Get information about a package version. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/cargo/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/cargoApi-AzureArtifacts.json).
azure-devops.azure_devops_artifacts_package_types_cargo_update_package_version Write write 7 Update state for a package version. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/cargo/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/cargoApi-AzureArtifacts.json).
azure-devops.azure_devops_artifacts_package_types_cargo_delete_package_version Write write 6 Send a package version from the feed to its paired recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: DELETE https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/cargo/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/cargoApi-AzureArtifacts.json).
azure-devops.azure_devops_artifacts_package_types_cargo_get_upstreaming_behavior Read read 5 Get the upstreaming behavior of a package within the context of a feed Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feed}/cargo/packages/{packageName}/upstreaming (spec: artifactsPackageTypes/7.2/cargoApi-AzureArtifacts.json).
azure-devops.azure_devops_artifacts_package_types_cargo_set_upstreaming_behavior Read read 6 Set the upstreaming behavior of a package within the context of a feed The package does not need to necessarily exist in the feed prior to setting the behavior. This assists with packages that are not yet ingested from an upstream, yet the feed owner wants to apply a specific behavior on the first ingestion. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feed}/cargo/packages/{packageName}/upstreaming (spec: artifactsPackageTypes/7.2/cargoApi-AzureArtifacts.json).
azure-devops.azure_devops_artifacts_package_types_cargo_update_package_versions Write write 5 Update several packages from a single feed in a single request. The updates to the packages do not happen atomically. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: POST https://pkgs.dev.azure.com/{organization}/{project}/_packaging/packaging/feeds/{feedId}/cargo/packagesbatch (spec: artifactsPackageTypes/7.2/cargoApi-AzureArtifacts.json).
azure-devops.azure_devops_artifacts_package_types_maven_update_package_versions Write write 5 Update several packages from a single feed in a single request. The updates to the packages do not happen atomically. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: POST https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/maven/packagesbatch (spec: artifactsPackageTypes/7.2/maven.json).
azure-devops.azure_devops_artifacts_package_types_maven_download_package Read read 8 Fulfills Maven package file download requests by either returning the URL of the requested package file or, in the case of Azure DevOps Server (OnPrem), returning the content as a stream. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/maven/{groupId}/{artifactId}/{version}/{fileName}/content (spec: artifactsPackageTypes/7.2/maven.json).
azure-devops.azure_devops_artifacts_package_types_maven_get_package_version_from_recycle_bin Read read 7 Get information about a package version in the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feed}/maven/RecycleBin/groups/{groupId}/artifacts/{artifactId}/versions/{version} (spec: artifactsPackageTypes/7.2/maven.json).
azure-devops.azure_devops_artifacts_package_types_maven_restore_package_version_from_recycle_bin Read read 8 Restore a package version from the recycle bin to its associated feed. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feed}/maven/RecycleBin/groups/{groupId}/artifacts/{artifactId}/versions/{version} (spec: artifactsPackageTypes/7.2/maven.json).
azure-devops.azure_devops_artifacts_package_types_maven_delete_package_version_from_recycle_bin Write write 7 Permanently delete a package from a feed's recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: DELETE https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feed}/maven/RecycleBin/groups/{groupId}/artifacts/{artifactId}/versions/{version} (spec: artifactsPackageTypes/7.2/maven.json).
azure-devops.azure_devops_artifacts_package_types_maven_update_recycle_bin_packages Write write 5 Delete or restore several package versions from the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: POST https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feed}/maven/RecycleBin/packagesBatch (spec: artifactsPackageTypes/7.2/maven.json).
azure-devops.azure_devops_artifacts_package_types_maven_get_upstreaming_behavior Read read 6 Get the upstreaming behavior of a package within the context of a feed Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feed}/maven/groups/{groupId}/artifacts/{artifactId}/upstreaming (spec: artifactsPackageTypes/7.2/maven.json).
azure-devops.azure_devops_artifacts_package_types_maven_set_upstreaming_behavior Read read 7 Set the upstreaming behavior of a package within the context of a feed The package does not need to necessarily exist in the feed prior to setting the behavior. This assists with packages that are not yet ingested from an upstream, yet the feed owner wants to apply a specific behavior on the first ingestion. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feed}/maven/groups/{groupId}/artifacts/{artifactId}/upstreaming (spec: artifactsPackageTypes/7.2/maven.json).
azure-devops.azure_devops_artifacts_package_types_maven_get_package_version Read read 8 Get information about a package version. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feed}/maven/groups/{groupId}/artifacts/{artifactId}/versions/{version} (spec: artifactsPackageTypes/7.2/maven.json).
azure-devops.azure_devops_artifacts_package_types_maven_update_package_version Write write 8 Update state for a package version. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feed}/maven/groups/{groupId}/artifacts/{artifactId}/versions/{version} (spec: artifactsPackageTypes/7.2/maven.json).
azure-devops.azure_devops_artifacts_package_types_maven_delete_package_version Write write 7 Delete a package version from the feed and move it to the feed's recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: DELETE https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feed}/maven/groups/{groupId}/artifacts/{artifactId}/versions/{version} (spec: artifactsPackageTypes/7.2/maven.json).
azure-devops.azure_devops_artifacts_package_types_npm_validate_custom_public_upstream_source Read read 3 Validates whether the given upstream is valid to add as a custom upstream using the given package name. Official Azure DevOps REST API 7.2 endpoint: POST https://pkgs.dev.azure.com/{organization}/_apis/packaging/npm/validateupstream (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_version Read read 7 Get information about a scoped package version (such as @scope/name). The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/@{packageScope}/{unscopedPackageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_update_scoped_package Write write 8 Update state for an npm scoped package version. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/@{packageScope}/{unscopedPackageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_unpublish_scoped_package Read read 7 Unpublish a scoped package version (such as @scope/name). The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: DELETE https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/@{packageScope}/{unscopedPackageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_update_recycle_bin_packages Write write 5 Delete or restore several package versions from the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: POST https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/RecycleBin/PackagesBatch (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_version_from_recycle_bin Read read 7 Get information about a scoped package version in the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/RecycleBin/packages/@{packageScope}/{unscopedPackageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_restore_scoped_package_version_from_recycle_bin Read read 8 Restore a package version with an npm scope from the recycle bin to its feed. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/RecycleBin/packages/@{packageScope}/{unscopedPackageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_delete_scoped_package_version_from_recycle_bin Write write 7 Delete a package version with an npm scope from the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: DELETE https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/RecycleBin/packages/@{packageScope}/{unscopedPackageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_get_package_version_from_recycle_bin Read read 6 Get information about an unscoped package version in the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/RecycleBin/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_restore_package_version_from_recycle_bin Read read 7 Restore a package version without an npm scope from the recycle bin to its feed. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/RecycleBin/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_delete_package_version_from_recycle_bin Write write 6 Delete a package version without an npm scope from the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: DELETE https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/RecycleBin/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_get_package_upstreaming_behavior Read read 6 Get the upstreaming behavior of the (scoped) package within the context of a feed Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/packages/@{packageScope}/{unscopedPackageName}/upstreaming (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_set_scoped_upstreaming_behavior Read read 7 Set the upstreaming behavior of a (scoped) package within the context of a feed The package does not need to necessarily exist in the feed prior to setting the behavior. This assists with packages that are not yet ingested from an upstream, yet the feed owner wants to apply a specific behavior on the first ingestion. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/packages/@{packageScope}/{unscopedPackageName}/upstreaming (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_download_scoped_package Read read 7 Get scoped npm package. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/packages/@{packageScope}/{unscopedPackageName}/versions/{packageVersion}/content (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_readme Read read 7 Get the Readme for a package version with an npm scope. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/packages/@{packageScope}/{unscopedPackageName}/versions/{packageVersion}/readme (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_upstreaming_behavior Read read 5 Get the upstreaming behavior of the (unscoped) package within the context of a feed Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/packages/{packageName}/upstreaming (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_set_upstreaming_behavior Read read 6 Set the upstreaming behavior of a (scoped) package within the context of a feed The package does not need to necessarily exist in the feed prior to setting the behavior. This assists with packages that are not yet ingested from an upstream, yet the feed owner wants to apply a specific behavior on the first ingestion. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/packages/{packageName}/upstreaming (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_download_package Read read 6 Get an unscoped npm package. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/packages/{packageName}/versions/{packageVersion}/content (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_get_package_readme Read read 6 Get the Readme for a package version that has no npm scope. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/packages/{packageName}/versions/{packageVersion}/readme (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_update_packages Write write 5 Update several packages from a single feed in a single request. The updates to the packages do not happen atomically. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: POST https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/packagesbatch (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_get_package_version Read read 6 Get information about an unscoped package version. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_update_package Write write 7 Update state for an unscoped package version. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_npm_unpublish_package Read read 6 Unpublish an unscoped package version. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: DELETE https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/npm/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/npm.json).
azure-devops.azure_devops_artifacts_package_types_nu_get_get_package_version_from_recycle_bin Read read 6 View a package version's deletion/recycled status The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/nuget/RecycleBin/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/nuGet.json).
azure-devops.azure_devops_artifacts_package_types_nu_get_restore_package_version_from_recycle_bin Read read 7 Restore a package version from a feed's recycle bin back into the active feed. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/nuget/RecycleBin/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/nuGet.json).
azure-devops.azure_devops_artifacts_package_types_nu_get_delete_package_version_from_recycle_bin Write write 6 Delete a package version from a feed's recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: DELETE https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/nuget/RecycleBin/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/nuGet.json).
azure-devops.azure_devops_artifacts_package_types_nu_get_update_recycle_bin_package_versions Write write 5 Delete or restore several package versions from the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: POST https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/nuget/RecycleBin/packagesBatch (spec: artifactsPackageTypes/7.2/nuGet.json).
azure-devops.azure_devops_artifacts_package_types_nu_get_get_upstreaming_behavior Read read 5 Get the upstreaming behavior of a package within the context of a feed Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/nuget/packages/{packageName}/upstreaming (spec: artifactsPackageTypes/7.2/nuGet.json).
azure-devops.azure_devops_artifacts_package_types_nu_get_set_upstreaming_behavior Read read 6 Set the upstreaming behavior of a package within the context of a feed The package does not need to necessarily exist in the feed prior to setting the behavior. This assists with packages that are not yet ingested from an upstream, yet the feed owner wants to apply a specific behavior on the first ingestion. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/nuget/packages/{packageName}/upstreaming (spec: artifactsPackageTypes/7.2/nuGet.json).
azure-devops.azure_devops_artifacts_package_types_nu_get_get_package_version Read read 7 Get information about a package version. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/nuget/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/nuGet.json).
azure-devops.azure_devops_artifacts_package_types_nu_get_update_package_version Write write 7 Set mutable state on a package version. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/nuget/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/nuGet.json).
azure-devops.azure_devops_artifacts_package_types_nu_get_delete_package_version Write write 6 Send a package version from the feed to its paired recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: DELETE https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/nuget/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/nuGet.json).
azure-devops.azure_devops_artifacts_package_types_nu_get_download_package Read read 7 Download a package version directly. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/nuget/packages/{packageName}/versions/{packageVersion}/content (spec: artifactsPackageTypes/7.2/nuGet.json).
azure-devops.azure_devops_artifacts_package_types_nu_get_update_package_versions Write write 5 Update several packages from a single feed in a single request. The updates to the packages do not happen atomically. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: POST https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/nuget/packagesbatch (spec: artifactsPackageTypes/7.2/nuGet.json).
azure-devops.azure_devops_artifacts_package_types_python_get_package_version_from_recycle_bin Read read 6 Get information about a package version in the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/pypi/RecycleBin/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/pyPiApi.json).
azure-devops.azure_devops_artifacts_package_types_python_restore_package_version_from_recycle_bin Read read 7 Restore a package version from the recycle bin to its associated feed. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/pypi/RecycleBin/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/pyPiApi.json).
azure-devops.azure_devops_artifacts_package_types_python_delete_package_version_from_recycle_bin Write write 6 Delete a package version from the feed, moving it to the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: DELETE https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/pypi/RecycleBin/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/pyPiApi.json).
azure-devops.azure_devops_artifacts_package_types_python_update_recycle_bin_package_versions Write write 5 Delete or restore several package versions from the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: POST https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/pypi/RecycleBin/packagesBatch (spec: artifactsPackageTypes/7.2/pyPiApi.json).
azure-devops.azure_devops_artifacts_package_types_python_get_upstreaming_behavior Read read 5 Get the upstreaming behavior of a package within the context of a feed Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/pypi/packages/{packageName}/upstreaming (spec: artifactsPackageTypes/7.2/pyPiApi.json).
azure-devops.azure_devops_artifacts_package_types_python_set_upstreaming_behavior Read read 6 Set the upstreaming behavior of a package within the context of a feed The package does not need to necessarily exist in the feed prior to setting the behavior. This assists with packages that are not yet ingested from an upstream, yet the feed owner wants to apply a specific behavior on the first ingestion. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/pypi/packages/{packageName}/upstreaming (spec: artifactsPackageTypes/7.2/pyPiApi.json).
azure-devops.azure_devops_artifacts_package_types_python_get_package_version Read read 7 Get information about a package version. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/pypi/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/pyPiApi.json).
azure-devops.azure_devops_artifacts_package_types_python_update_package_version Write write 7 Update state for a package version. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/pypi/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/pyPiApi.json).
azure-devops.azure_devops_artifacts_package_types_python_delete_package_version Write write 6 Delete a package version, moving it to the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: DELETE https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/pypi/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/pyPiApi.json).
azure-devops.azure_devops_artifacts_package_types_python_download_package Read read 7 Download a python package file directly. This API is intended for manual UI download options, not for programmatic access and scripting. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/pypi/packages/{packageName}/versions/{packageVersion}/{fileName}/content (spec: artifactsPackageTypes/7.2/pyPiApi.json).
azure-devops.azure_devops_artifacts_package_types_python_update_package_versions Write write 5 Update several packages from a single feed in a single request. The updates to the packages do not happen atomically. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: POST https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/pypi/packagesbatch (spec: artifactsPackageTypes/7.2/pyPiApi.json).
azure-devops.azure_devops_artifacts_package_types_universal_get_package_version_from_recycle_bin Read read 6 Get information about a package version in the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/upack/RecycleBin/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/universal.json).
azure-devops.azure_devops_artifacts_package_types_universal_restore_package_version_from_recycle_bin Read read 7 Restore a package version from the recycle bin to its associated feed. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/upack/RecycleBin/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/universal.json).
azure-devops.azure_devops_artifacts_package_types_universal_delete_package_version_from_recycle_bin Write write 6 Delete a package version from the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: DELETE https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/upack/RecycleBin/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/universal.json).
azure-devops.azure_devops_artifacts_package_types_universal_update_recycle_bin_package_versions Write write 5 Delete or restore several package versions from the recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: POST https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/upack/RecycleBin/packagesBatch (spec: artifactsPackageTypes/7.2/universal.json).
azure-devops.azure_devops_artifacts_package_types_universal_get_package_version Read read 7 Show information about a package version. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: GET https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/upack/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/universal.json).
azure-devops.azure_devops_artifacts_package_types_universal_update_package_version Write write 7 Update information for a package version. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: PATCH https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/upack/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/universal.json).
azure-devops.azure_devops_artifacts_package_types_universal_delete_package_version Write write 6 Delete a package version from a feed's recycle bin. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: DELETE https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/upack/packages/{packageName}/versions/{packageVersion} (spec: artifactsPackageTypes/7.2/universal.json).
azure-devops.azure_devops_artifacts_package_types_universal_update_package_versions Write write 5 Update several packages from a single feed in a single request. The updates to the packages do not happen atomically. The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request. Official Azure DevOps REST API 7.2 endpoint: POST https://pkgs.dev.azure.com/{organization}/{project}/_apis/packaging/feeds/{feedId}/upack/packagesbatch (spec: artifactsPackageTypes/7.2/universal.json).
azure-devops.azure_devops_audit_actions_list Read read 3 Get all auditable actions filterable by area. Official Azure DevOps REST API 7.2 endpoint: GET https://auditservice.dev.azure.com/{organization}/_apis/audit/actions (spec: audit/7.2/audit.json).
azure-devops.azure_devops_audit_audit_log_query Read read 7 Queries audit log entries Official Azure DevOps REST API 7.2 endpoint: GET https://auditservice.dev.azure.com/{organization}/_apis/audit/auditlog (spec: audit/7.2/audit.json).
azure-devops.azure_devops_audit_download_log_download_log Read read 5 Downloads audit log entries. Official Azure DevOps REST API 7.2 endpoint: GET https://auditservice.dev.azure.com/{organization}/_apis/audit/downloadlog (spec: audit/7.2/audit.json).
azure-devops.azure_devops_audit_streams_query_all_streams Read read 2 Return all Audit Streams scoped to an organization Official Azure DevOps REST API 7.2 endpoint: GET https://auditservice.dev.azure.com/{organization}/_apis/audit/streams (spec: audit/7.2/audit.json).
azure-devops.azure_devops_audit_streams_create Read read 4 Create new Audit Stream Official Azure DevOps REST API 7.2 endpoint: POST https://auditservice.dev.azure.com/{organization}/_apis/audit/streams (spec: audit/7.2/audit.json).
azure-devops.azure_devops_audit_streams_update_stream Write write 3 Update existing Audit Stream Official Azure DevOps REST API 7.2 endpoint: PUT https://auditservice.dev.azure.com/{organization}/_apis/audit/streams (spec: audit/7.2/audit.json).
azure-devops.azure_devops_audit_streams_query_stream_by_id Read read 3 Return Audit Stream with id of streamId if one exists otherwise throw Official Azure DevOps REST API 7.2 endpoint: GET https://auditservice.dev.azure.com/{organization}/_apis/audit/streams/{streamId} (spec: audit/7.2/audit.json).
azure-devops.azure_devops_audit_streams_update_status Write write 5 Update existing Audit Stream status Official Azure DevOps REST API 7.2 endpoint: PUT https://auditservice.dev.azure.com/{organization}/_apis/audit/streams/{streamId} (spec: audit/7.2/audit.json).
azure-devops.azure_devops_audit_streams_delete Read read 3 Delete Audit Stream Official Azure DevOps REST API 7.2 endpoint: DELETE https://auditservice.dev.azure.com/{organization}/_apis/audit/streams/{streamId} (spec: audit/7.2/audit.json).
azure-devops.azure_devops_build_controllers_list Read read 3 Gets controller, optionally filtered by name Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/build/controllers (spec: build/7.2/build.json).
azure-devops.azure_devops_build_controllers_get Read read 3 Gets a controller Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/build/controllers/{controllerId} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_resource_usage_get Read read 2 Gets information about build resources in the system. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/build/resourceusage (spec: build/7.2/build.json).
azure-devops.azure_devops_build_history_get Read read 3 Returns the retention history for the project collection. This includes pipelines that have custom retention rules that may prevent the retention job from cleaning them up, runs per pipeline with retention type, files associated with pipelines owned by the collection with retention type, and the number of files per pipeline. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/build/retention/history (spec: build/7.2/build.json).
azure-devops.azure_devops_build_badge_get Read read 5 This endpoint is deprecated. Please see the Build Status REST endpoint. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/public/build/definitions/{project}/{definitionId}/badge (spec: build/7.2/build.json).
azure-devops.azure_devops_build_authorizedresources_list Read read 5 GET /{organization}/{project}/_apis/build/authorizedresources Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/authorizedresources (spec: build/7.2/build.json).
azure-devops.azure_devops_build_authorizedresources_authorize_project_resources Read read 4 PATCH /{organization}/{project}/_apis/build/authorizedresources Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/build/authorizedresources (spec: build/7.2/build.json).
azure-devops.azure_devops_build_builds_list Read read 23 Gets a list of builds. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/builds (spec: build/7.2/build.json).
azure-devops.azure_devops_build_builds_queue Read read 8 Queues a build Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/build/builds (spec: build/7.2/build.json).
azure-devops.azure_devops_build_builds_update_builds Write write 4 Updates multiple builds. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/build/builds (spec: build/7.2/build.json).
azure-devops.azure_devops_build_builds_get Read read 5 Gets a build Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_builds_update_build Write write 6 Updates a build. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_builds_delete Read read 4 Deletes a build. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_stage_timeline_get_build_stage_latest_timeline Read read 7 Gets the latest timeline for a build filtered to a specific stage. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/Timeline/stages/{stageName} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_stage_timeline_get_build_stage_timeline Read read 8 Gets the timeline for a build filtered to a specific stage. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/Timeline/{timelineId}/stages/{stageName} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_artifacts_list Read read 4 Gets all artifacts for a build. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/artifacts (spec: build/7.2/build.json).
azure-devops.azure_devops_build_artifacts_create Read read 5 Associates an artifact with a build. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/artifacts (spec: build/7.2/build.json).
azure-devops.azure_devops_build_attachments_list Read read 5 Gets the list of attachments of a specific type that are associated with a build. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/attachments/{type} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_builds_get_build_changes Read read 7 Gets the changes associated with a build Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/changes (spec: build/7.2/build.json).
azure-devops.azure_devops_build_builds_get_retention_leases_for_build Read read 4 Gets all retention leases that apply to a specific build. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/leases (spec: build/7.2/build.json).
azure-devops.azure_devops_build_builds_get_build_logs Read read 4 Gets the logs for a build. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/logs (spec: build/7.2/build.json).
azure-devops.azure_devops_build_builds_get_build_log Read read 7 Gets an individual log file for a build. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/logs/{logId} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_properties_get_build_properties Read read 5 Gets properties for a build. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/properties (spec: build/7.2/build.json).
azure-devops.azure_devops_build_properties_update_build_properties Write write 5 Updates properties for a build. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/properties (spec: build/7.2/build.json).
azure-devops.azure_devops_build_report_get Read read 5 Gets a build report. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/report (spec: build/7.2/build.json).
azure-devops.azure_devops_build_stages_update Read read 6 Update a build stage Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/stages/{stageRefName} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_tags_get_build_tags Read read 4 Gets the tags for a build. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/tags (spec: build/7.2/build.json).
azure-devops.azure_devops_build_tags_add_build_tags Write write 5 Adds tags to a build. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/tags (spec: build/7.2/build.json).
azure-devops.azure_devops_build_tags_update_build_tags Write write 5 Adds/Removes tags from a build. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/tags (spec: build/7.2/build.json).
azure-devops.azure_devops_build_tags_add_build_tag Write write 6 Adds a tag to a build. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/tags/{tag} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_tags_delete_build_tag Write write 5 Removes a tag from a build. NOTE: This API will not work for tags with special characters. To remove tags with special characters, use the PATCH method instead (in 6.0+) Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/tags/{tag} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_timeline_get Read read 7 Gets details for a build Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/timeline/{timelineId} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_builds_get_build_work_items_refs Read read 5 Gets the work items associated with a build. Only work items in the same project are returned. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/workitems (spec: build/7.2/build.json).
azure-devops.azure_devops_build_builds_get_build_work_items_refs_from_commits Read read 6 Gets the work items associated with a build, filtered to specific commits. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/workitems (spec: build/7.2/build.json).
azure-devops.azure_devops_build_attachments_get Read read 8 Gets a specific attachment. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/{timelineId}/{recordId}/attachments/{type}/{name} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_builds_get_changes_between_builds Read read 6 Gets the changes made to the repository between two given builds. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/changes (spec: build/7.2/build.json).
azure-devops.azure_devops_build_definitions_list Read read 19 Gets a list of definitions. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/definitions (spec: build/7.2/build.json).
azure-devops.azure_devops_build_definitions_create Read read 6 Creates a new definition. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/build/definitions (spec: build/7.2/build.json).
azure-devops.azure_devops_build_templates_list Read read 3 Gets all definition templates. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/definitions/templates (spec: build/7.2/build.json).
azure-devops.azure_devops_build_templates_get Read read 4 Gets a specific build definition template. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/definitions/templates/{templateId} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_templates_save_template Read read 5 Updates an existing build definition template. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/_apis/build/definitions/templates/{templateId} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_templates_delete Read read 4 Deletes a build definition template. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/build/definitions/templates/{templateId} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_tags_get_definition_tags Read read 5 Gets the tags for a definition. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/definitions/{DefinitionId}/tags (spec: build/7.2/build.json).
azure-devops.azure_devops_build_tags_add_definition_tags Write write 5 Adds multiple tags to a definition. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/build/definitions/{DefinitionId}/tags (spec: build/7.2/build.json).
azure-devops.azure_devops_build_tags_update_definition_tags Write write 5 Adds/Removes tags from a definition. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/build/definitions/{DefinitionId}/tags (spec: build/7.2/build.json).
azure-devops.azure_devops_build_tags_add_definition_tag Write write 6 Adds a tag to a definition Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/_apis/build/definitions/{DefinitionId}/tags/{tag} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_tags_delete_definition_tag Write write 5 Removes a tag from a definition. NOTE: This API will not work for tags with special characters. To remove tags with special characters, use the PATCH method instead (in 6.0+) Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/build/definitions/{DefinitionId}/tags/{tag} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_definitions_get Read read 8 Gets a definition, optionally at a specific revision. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/definitions/{definitionId} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_definitions_update Read read 8 Updates an existing build definition. In order for this operation to succeed, the value of the "Revision" property of the request body must match the existing build definition's. It is recommended that you obtain the existing build definition by using GET, modify the build definition as necessary, and then submit the modified definition with PUT. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/_apis/build/definitions/{definitionId} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_definitions_restore_definition Read read 6 Restores a deleted definition Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/build/definitions/{definitionId} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_definitions_delete Read read 4 Deletes a definition and all associated builds. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/build/definitions/{definitionId} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_metrics_get_definition_metrics Read read 5 Gets build metrics for a definition. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/definitions/{definitionId}/metrics (spec: build/7.2/build.json).
azure-devops.azure_devops_build_properties_get_definition_properties Read read 5 Gets properties for a definition. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/definitions/{definitionId}/properties (spec: build/7.2/build.json).
azure-devops.azure_devops_build_properties_update_definition_properties Write write 5 Updates properties for a definition. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/build/definitions/{definitionId}/properties (spec: build/7.2/build.json).
azure-devops.azure_devops_build_resources_list Read read 4 GET /{organization}/{project}/_apis/build/definitions/{definitionId}/resources Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/definitions/{definitionId}/resources (spec: build/7.2/build.json).
azure-devops.azure_devops_build_resources_authorize_definition_resources Read read 5 PATCH /{organization}/{project}/_apis/build/definitions/{definitionId}/resources Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/build/definitions/{definitionId}/resources (spec: build/7.2/build.json).
azure-devops.azure_devops_build_definitions_get_definition_revisions Read read 4 Gets all revisions of a definition. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/definitions/{definitionId}/revisions (spec: build/7.2/build.json).
azure-devops.azure_devops_build_yaml_get Read read 8 Converts a definition to YAML, optionally at a specific revision. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/definitions/{definitionId}/yaml (spec: build/7.2/build.json).
azure-devops.azure_devops_build_folders_update Read read 5 Updates an existing folder at given existing path Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/build/folders (spec: build/7.2/build.json).
azure-devops.azure_devops_build_folders_create Read read 5 Creates a new folder. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/_apis/build/folders (spec: build/7.2/build.json).
azure-devops.azure_devops_build_folders_delete Read read 4 Deletes a definition folder. Definitions and their corresponding builds will also be deleted. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/build/folders (spec: build/7.2/build.json).
azure-devops.azure_devops_build_folders_list Read read 5 Gets a list of build definition folders. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/folders/{path} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_general_settings_get Read read 3 Gets pipeline general settings. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/generalsettings (spec: build/7.2/build.json).
azure-devops.azure_devops_build_general_settings_update Read read 4 Updates pipeline general settings. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/build/generalsettings (spec: build/7.2/build.json).
azure-devops.azure_devops_build_latest_get Read read 5 Gets the latest build for a definition, optionally scoped to a specific branch. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/latest/{definition} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_metrics_get_project_metrics Read read 5 Gets build metrics for a project. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/metrics/{metricAggregationType} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_options_list Read read 3 Gets all build definition options supported by the system. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/options (spec: build/7.2/build.json).
azure-devops.azure_devops_build_badge_get_build_badge_data Read read 6 Gets a badge that indicates the status of the most recent build for the specified branch. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/repos/{repoType}/badge (spec: build/7.2/build.json).
azure-devops.azure_devops_build_retention_get Read read 3 Gets the project's retention settings. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/retention (spec: build/7.2/build.json).
azure-devops.azure_devops_build_retention_update Read read 4 Updates the project's retention settings. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/build/retention (spec: build/7.2/build.json).
azure-devops.azure_devops_build_leases_get_retention_leases_by_minimal_retention_leases Read read 4 Returns any leases matching the specified MinimalRetentionLeases Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/retention/leases (spec: build/7.2/build.json).
azure-devops.azure_devops_build_leases_add Read read 4 Adds new leases for pipeline runs. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/build/retention/leases (spec: build/7.2/build.json).
azure-devops.azure_devops_build_leases_delete Read read 4 Removes specific retention leases. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/build/retention/leases (spec: build/7.2/build.json).
azure-devops.azure_devops_build_leases_get Read read 4 Returns the details of the retention lease given a lease id. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/retention/leases/{leaseId} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_leases_update Read read 5 Updates the duration or pipeline protection status of a retention lease. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/build/retention/leases/{leaseId} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_settings_get Read read 3 Gets the build settings. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/settings (spec: build/7.2/build.json).
azure-devops.azure_devops_build_settings_update Read read 4 Updates the build settings. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/build/settings (spec: build/7.2/build.json).
azure-devops.azure_devops_build_status_get Read read 9 <p>Gets the build status for a definition, optionally scoped to a specific branch, stage, job, and configuration.</p> <p>If there are more than one, then it is required to pass in a stageName value when specifying a jobName, and the same rule then applies for both if passing a configuration parameter.</p> Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/status/{definition} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_tags_get_tags Read read 3 Gets a list of all build tags in the project. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/tags (spec: build/7.2/build.json).
azure-devops.azure_devops_build_tags_delete_tag Write write 4 Removes a tag from builds, definitions, and from the tag store Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/build/tags/{tag} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_builds_get_work_items_between_builds Read read 6 Gets all the work items between two builds. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/build/workitems (spec: build/7.2/build.json).
azure-devops.azure_devops_build_source_providers_list_branches Read read 7 Gets a list of branches for the given source code repository. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/sourceProviders/{providerName}/branches (spec: build/7.2/build.json).
azure-devops.azure_devops_build_source_providers_get_file_contents Read read 8 Gets the contents of a file in the given source code repository. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/sourceProviders/{providerName}/filecontents (spec: build/7.2/build.json).
azure-devops.azure_devops_build_source_providers_get_path_contents Read read 8 Gets the contents of a directory in the given source code repository. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/sourceProviders/{providerName}/pathcontents (spec: build/7.2/build.json).
azure-devops.azure_devops_build_source_providers_get_pull_request Read read 7 Gets a pull request object from source provider. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/sourceProviders/{providerName}/pullrequests/{pullRequestId} (spec: build/7.2/build.json).
azure-devops.azure_devops_build_source_providers_list_repositories Read read 9 Gets a list of source code repositories. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/sourceProviders/{providerName}/repositories (spec: build/7.2/build.json).
azure-devops.azure_devops_build_source_providers_list_webhooks Read read 6 Gets a list of webhooks installed in the given source code repository. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/sourceProviders/{providerName}/webhooks (spec: build/7.2/build.json).
azure-devops.azure_devops_build_source_providers_restore_webhooks Read read 7 Recreates the webhooks for the specified triggers in the given source code repository. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/sourceProviders/{providerName}/webhooks (spec: build/7.2/build.json).
azure-devops.azure_devops_build_source_providers_list Read read 3 Get a list of source providers and their capabilities. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/sourceproviders (spec: build/7.2/build.json).
azure-devops.azure_devops_core_processes_list Read read 2 Get a list of processes. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/process/processes (spec: core/7.2/core.json).
azure-devops.azure_devops_core_processes_get Read read 3 Get a process by ID. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/process/processes/{processId} (spec: core/7.2/core.json).
azure-devops.azure_devops_core_projects_list Read read 7 Get all projects in the organization that the authenticated user has access to. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/projects (spec: core/7.2/core.json).
azure-devops.azure_devops_core_projects_create Read read 3 Queues a project to be created. Use the [GetOperation](../../operations/operations/get) to periodically check for create project status. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/projects (spec: core/7.2/core.json).
azure-devops.azure_devops_core_projects_get Read read 5 Get project with the specified id or name, optionally including capabilities. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/projects/{projectId} (spec: core/7.2/core.json).
azure-devops.azure_devops_core_projects_update Read read 4 Update an existing project's name, abbreviation, description, or restore a project. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/projects/{projectId} (spec: core/7.2/core.json).
azure-devops.azure_devops_core_projects_delete Read read 3 Queues a project to be deleted. Use the [GetOperation](../../operations/operations/get) to periodically check for delete project status. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/projects/{projectId} (spec: core/7.2/core.json).
azure-devops.azure_devops_core_avatar_set_project_avatar Read read 4 Sets the avatar for the project. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/_apis/projects/{projectId}/avatar (spec: core/7.2/core.json).
azure-devops.azure_devops_core_avatar_remove_project_avatar Write write 3 Removes the avatar for the project. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/projects/{projectId}/avatar (spec: core/7.2/core.json).
azure-devops.azure_devops_core_categorized_teams_get Read read 6 Gets list of user readable teams in a project and teams user is member of (excluded from readable list). Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/projects/{projectId}/categorizedteams/ (spec: core/7.2/core.json).
azure-devops.azure_devops_core_projects_get_project_properties Read read 4 Get a collection of team project properties. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/projects/{projectId}/properties (spec: core/7.2/core.json).
azure-devops.azure_devops_core_projects_set_project_properties Read read 4 Create, update, and delete team project properties. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/projects/{projectId}/properties (spec: core/7.2/core.json).
azure-devops.azure_devops_core_teams_get_teams Read read 7 Get a list of teams. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/projects/{projectId}/teams (spec: core/7.2/core.json).
azure-devops.azure_devops_core_teams_create Read read 4 Create a team in a team project. Possible failure scenarios Invalid project name/ID (project doesn't exist) 404 Invalid team name or description 400 Team already exists 400 Insufficient privileges 400 Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/projects/{projectId}/teams (spec: core/7.2/core.json).
azure-devops.azure_devops_core_teams_get Read read 5 Get a specific team. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/projects/{projectId}/teams/{teamId} (spec: core/7.2/core.json).
azure-devops.azure_devops_core_teams_update Read read 5 Update a team's name and/or description. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/projects/{projectId}/teams/{teamId} (spec: core/7.2/core.json).
azure-devops.azure_devops_core_teams_delete Read read 4 Delete a team. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/projects/{projectId}/teams/{teamId} (spec: core/7.2/core.json).
azure-devops.azure_devops_core_teams_get_team_members_with_extended_properties Read read 6 Get a list of members for a specific team. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/projects/{projectId}/teams/{teamId}/members (spec: core/7.2/core.json).
azure-devops.azure_devops_core_teams_get_all_teams Read read 6 Get a list of all teams. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/teams (spec: core/7.2/core.json).
azure-devops.azure_devops_dashboard_widget_types_get_widget_types Read read 4 Get all available widget metadata in alphabetical order, including widgets marked with isVisibleFromCatalog == false. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/dashboard/widgettypes (spec: dashboard/7.2/dashboard.json).
azure-devops.azure_devops_dashboard_widget_types_get_widget_metadata Read read 4 Get the widget metadata satisfying the specified contribution ID. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/dashboard/widgettypes/{contributionId} (spec: dashboard/7.2/dashboard.json).
azure-devops.azure_devops_dashboard_dashboards_list Read read 4 Get a list of dashboards under a project. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/dashboard/dashboards (spec: dashboard/7.2/dashboard.json).
azure-devops.azure_devops_dashboard_dashboards_create Read read 5 Create the supplied dashboard. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/{team}/_apis/dashboard/dashboards (spec: dashboard/7.2/dashboard.json).
azure-devops.azure_devops_dashboard_dashboards_replace_dashboards Read read 5 Update the name and position of dashboards in the supplied group, and remove omitted dashboards. Does not modify dashboard content. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/{team}/_apis/dashboard/dashboards (spec: dashboard/7.2/dashboard.json).
azure-devops.azure_devops_dashboard_dashboards_get Read read 5 Get a dashboard by its ID. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/dashboard/dashboards/{dashboardId} (spec: dashboard/7.2/dashboard.json).
azure-devops.azure_devops_dashboard_dashboards_replace_dashboard Read read 6 Replace configuration for the specified dashboard. Replaces Widget list on Dashboard, only if property is supplied. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/{team}/_apis/dashboard/dashboards/{dashboardId} (spec: dashboard/7.2/dashboard.json).
azure-devops.azure_devops_dashboard_dashboards_delete Read read 5 Delete a dashboard given its ID. This also deletes the widgets associated with this dashboard. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/{team}/_apis/dashboard/dashboards/{dashboardId} (spec: dashboard/7.2/dashboard.json).
azure-devops.azure_devops_dashboard_widgets_get_widgets Read read 6 Get widgets contained on the specified dashboard. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/dashboard/dashboards/{dashboardId}/widgets (spec: dashboard/7.2/dashboard.json).
azure-devops.azure_devops_dashboard_widgets_create Read read 6 Create a widget on the specified dashboard. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/{team}/_apis/dashboard/dashboards/{dashboardId}/widgets (spec: dashboard/7.2/dashboard.json).
azure-devops.azure_devops_dashboard_widgets_replace_widgets Read read 7 Replace the widgets on specified dashboard with the supplied widgets. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/{team}/_apis/dashboard/dashboards/{dashboardId}/widgets (spec: dashboard/7.2/dashboard.json).
azure-devops.azure_devops_dashboard_widgets_update_widgets Write write 7 Update the supplied widgets on the dashboard using supplied state. State of existing Widgets not passed in the widget list is preserved. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/{team}/_apis/dashboard/dashboards/{dashboardId}/widgets (spec: dashboard/7.2/dashboard.json).
azure-devops.azure_devops_dashboard_widgets_get_widget Read read 6 Get the current state of the specified widget. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/dashboard/dashboards/{dashboardId}/widgets/{widgetId} (spec: dashboard/7.2/dashboard.json).
azure-devops.azure_devops_dashboard_widgets_replace_widget Read read 7 Override the state of the specified widget. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/{team}/_apis/dashboard/dashboards/{dashboardId}/widgets/{widgetId} (spec: dashboard/7.2/dashboard.json).
azure-devops.azure_devops_dashboard_widgets_update_widget Write write 7 Perform a partial update of the specified widget. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/{team}/_apis/dashboard/dashboards/{dashboardId}/widgets/{widgetId} (spec: dashboard/7.2/dashboard.json).
azure-devops.azure_devops_dashboard_widgets_delete Read read 6 Delete the specified widget. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/{team}/_apis/dashboard/dashboards/{dashboardId}/widgets/{widgetId} (spec: dashboard/7.2/dashboard.json).
azure-devops.azure_devops_delegated_auth_registration_secret_create Read read 3 Create Alternative Secret for the ADO OAuth App Registration Official Azure DevOps REST API 7.2 endpoint: POST https://vssps.dev.azure.com/_apis/delegatedauth/registrationsecret/{registrationId} (spec: delegatedAuth/7.2/delegatedAuthorization.json).
azure-devops.azure_devops_delegated_auth_registration_secret_rotate_secret Read read 4 Rotate one of the two secrets for the ADO OAuth App Registration Official Azure DevOps REST API 7.2 endpoint: PUT https://vssps.dev.azure.com/_apis/delegatedauth/registrationsecret/{registrationId} (spec: delegatedAuth/7.2/delegatedAuthorization.json).
azure-devops.azure_devops_distributed_task_elasticpools_list Read read 2 Get a list of all Elastic Pools. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/distributedtask/elasticpools (spec: distributedTask/7.2/elastic.json).
azure-devops.azure_devops_distributed_task_elasticpools_create Read read 7 Create a new elastic pool. This will create a new TaskAgentPool at the organization level. If a project id is provided, this will create a new TaskAgentQueue in the specified project. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/distributedtask/elasticpools (spec: distributedTask/7.2/elastic.json).
azure-devops.azure_devops_distributed_task_elasticpools_get Read read 3 Returns the Elastic Pool with the specified Pool Id. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/distributedtask/elasticpools/{poolId} (spec: distributedTask/7.2/elastic.json).
azure-devops.azure_devops_distributed_task_elasticpools_update Read read 4 Update settings on a specified Elastic Pool. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/distributedtask/elasticpools/{poolId} (spec: distributedTask/7.2/elastic.json).
azure-devops.azure_devops_distributed_task_elasticpoollogs_list Read read 4 Get elastic pool diagnostics logs for a specified Elastic Pool. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/distributedtask/elasticpools/{poolId}/logs (spec: distributedTask/7.2/elastic.json).
azure-devops.azure_devops_distributed_task_nodes_list Read read 4 Get a list of ElasticNodes currently in the ElasticPool Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/distributedtask/elasticpools/{poolId}/nodes (spec: distributedTask/7.2/elastic.json).
azure-devops.azure_devops_distributed_task_nodes_update Read read 5 Update properties on a specified ElasticNode Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/distributedtask/elasticpools/{poolId}/nodes/{elasticNodeId} (spec: distributedTask/7.2/elastic.json).
azure-devops.azure_devops_distributed_task_webhooks_receive_external_event Read read 4 Triggers a pipeline run of pipelines which have a webhook resource defined with specified WebHook Name property of the WebHook service connection. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/public/distributedtask/webhooks/{webHookId} (spec: distributedTask/7.2/task.json).
azure-devops.azure_devops_distributed_task_events_post_event Read read 6 Send a pipeline job event to be processed by the execution plan. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{scopeIdentifier}/_apis/distributedtask/hubs/{hubName}/plans/{planId}/events (spec: distributedTask/7.2/task.json).
azure-devops.azure_devops_distributed_task_oidctoken_create Read read 8 POST /{organization}/{scopeIdentifier}/_apis/distributedtask/hubs/{hubName}/plans/{planId}/jobs/{jobId}/oidctoken Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{scopeIdentifier}/_apis/distributedtask/hubs/{hubName}/plans/{planId}/jobs/{jobId}/oidctoken (spec: distributedTask/7.2/task.json).
azure-devops.azure_devops_distributed_task_logs_create Read read 6 Create a log and connect it to a pipeline run's execution plan. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{scopeIdentifier}/_apis/distributedtask/hubs/{hubName}/plans/{planId}/logs (spec: distributedTask/7.2/task.json).
azure-devops.azure_devops_distributed_task_logs_append_log_content Read read 7 Append a log to a task's log. The log should be sent in the body of the request as a TaskLog object stream. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{scopeIdentifier}/_apis/distributedtask/hubs/{hubName}/plans/{planId}/logs/{logId} (spec: distributedTask/7.2/task.json).
azure-devops.azure_devops_distributed_task_records_update Read read 7 Update timeline records if they already exist, otherwise create new ones for the same timeline. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{scopeIdentifier}/_apis/distributedtask/hubs/{hubName}/plans/{planId}/timelines/{timelineId}/records (spec: distributedTask/7.2/task.json).
azure-devops.azure_devops_distributed_task_agentclouds_list Read read 2 GET /{organization}/_apis/distributedtask/agentclouds Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/distributedtask/agentclouds (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_agentclouds_add Read read 3 POST /{organization}/_apis/distributedtask/agentclouds Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/distributedtask/agentclouds (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_agentclouds_get Read read 3 GET /{organization}/_apis/distributedtask/agentclouds/{agentCloudId} Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/distributedtask/agentclouds/{agentCloudId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_agentclouds_update Read read 4 PATCH /{organization}/_apis/distributedtask/agentclouds/{agentCloudId} Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/distributedtask/agentclouds/{agentCloudId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_agentclouds_delete Read read 3 DELETE /{organization}/_apis/distributedtask/agentclouds/{agentCloudId} Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/distributedtask/agentclouds/{agentCloudId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_requests_list Read read 3 GET /{organization}/_apis/distributedtask/agentclouds/{agentCloudId}/requests Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/distributedtask/agentclouds/{agentCloudId}/requests (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_agentcloudtypes_list Read read 2 Get agent cloud types. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/distributedtask/agentcloudtypes (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_pools_get_agent_pools_by_ids Read read 4 Get a list of agent pools. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/distributedtask/pools (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_pools_add Read read 3 Create an agent pool. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/distributedtask/pools (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_pools_get Read read 5 Get information about an agent pool. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/distributedtask/pools/{poolId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_pools_update Read read 4 Update properties on an agent pool Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/distributedtask/pools/{poolId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_pools_delete Read read 3 Delete an agent pool. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/distributedtask/pools/{poolId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_agents_list Read read 9 Get a list of agents. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/distributedtask/pools/{poolId}/agents (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_agents_add Read read 4 Adds an agent to a pool. You probably don't want to call this endpoint directly. Instead, [configure an agent](https://docs.microsoft.com/azure/devops/pipelines/agents/agents) using the agent download package. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/distributedtask/pools/{poolId}/agents (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_agents_get Read read 8 Get information about an agent. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/distributedtask/pools/{poolId}/agents/{agentId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_agents_replace_agent Read read 5 Replace an agent. You probably don't want to call this endpoint directly. Instead, [use the agent configuration script](https://docs.microsoft.com/azure/devops/pipelines/agents/agents) to remove and reconfigure an agent from your organization. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/_apis/distributedtask/pools/{poolId}/agents/{agentId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_agents_update Read read 5 Update agent details. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/distributedtask/pools/{poolId}/agents/{agentId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_agents_delete Read read 4 Delete an agent. You probably don't want to call this endpoint directly. Instead, [use the agent configuration script](https://docs.microsoft.com/azure/devops/pipelines/agents/agents) to remove an agent from your organization. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/distributedtask/pools/{poolId}/agents/{agentId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_poolpermissions_has_pool_permissions Read read 4 Checks if current identity has passed permissions on a pool. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/distributedtask/pools/{poolId}/permissions/{permissions} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_variablegroups_add Read read 3 Add a variable group. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/distributedtask/variablegroups (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_variablegroups_share_variable_group Read read 4 Add a variable group. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/distributedtask/variablegroups (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_variablegroups_update Read read 4 Update a variable group. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/_apis/distributedtask/variablegroups/{groupId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_variablegroups_delete Read read 4 Delete a variable group Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/distributedtask/variablegroups/{groupId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_yamlschema_get Read read 3 GET the Yaml schema used for Yaml file validation. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/distributedtask/yamlschema (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_deploymentgroups_list Read read 9 Get a list of deployment groups by name or IDs. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/distributedtask/deploymentgroups (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_deploymentgroups_add Read read 4 Create a deployment group. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/distributedtask/deploymentgroups (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_deploymentgroups_get Read read 6 Get a deployment group by its ID. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/distributedtask/deploymentgroups/{deploymentGroupId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_deploymentgroups_update Read read 5 Update a deployment group. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/distributedtask/deploymentgroups/{deploymentGroupId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_deploymentgroups_delete Read read 4 Delete a deployment group. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/distributedtask/deploymentgroups/{deploymentGroupId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_targets_list Read read 14 Get a list of deployment targets in a deployment group. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/distributedtask/deploymentgroups/{deploymentGroupId}/targets (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_targets_update Read read 5 Update tags of a list of deployment targets in a deployment group. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/distributedtask/deploymentgroups/{deploymentGroupId}/targets (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_targets_get Read read 6 Get a deployment target by its ID in a deployment group Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/distributedtask/deploymentgroups/{deploymentGroupId}/targets/{targetId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_targets_delete Read read 5 Delete a deployment target in a deployment group. This deletes the agent from associated deployment pool too. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/distributedtask/deploymentgroups/{deploymentGroupId}/targets/{targetId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_queues_get_agent_queues_for_pools Read read 5 Get a list of agent queues by pool ids Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/distributedtask/queues (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_queues_add Read read 5 Create a new agent queue to connect a project to an agent pool. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/distributedtask/queues (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_queues_get Read read 5 Get information about an agent queue. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/distributedtask/queues/{queueId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_queues_delete Read read 4 Removes an agent queue from a project. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/distributedtask/queues/{queueId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_securefiles_get_secure_files_by_names Read read 6 Get secure files Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/distributedtask/securefiles (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_securefiles_query Read read 5 Query secure files using a name pattern and a condition on file properties. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/distributedtask/securefiles (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_securefiles_update_secure_files Write write 4 Update properties and/or names of a set of secure files. Files are identified by their IDs. Properties provided override the existing one entirely, i.e. do not merge. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/distributedtask/securefiles (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_securefiles_get Read read 6 Get a secure file Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/distributedtask/securefiles/{secureFileId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_securefiles_update_secure_file Write write 5 Update the name or properties of an existing secure file Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/distributedtask/securefiles/{secureFileId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_securefiles_delete Read read 4 Delete a secure file Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/distributedtask/securefiles/{secureFileId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_taskgroups_add Read read 4 Create a task group. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/distributedtask/taskgroups (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_taskgroups_list Read read 10 List task groups. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/distributedtask/taskgroups/{taskGroupId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_taskgroups_update Read read 5 Update a task group. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/_apis/distributedtask/taskgroups/{taskGroupId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_taskgroups_delete Read read 5 Delete a task group. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/distributedtask/taskgroups/{taskGroupId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_variablegroups_get_variable_groups_by_id Read read 5 Get variable groups by ids. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/distributedtask/variablegroups (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_distributed_task_variablegroups_get Read read 4 Get a variable group. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/distributedtask/variablegroups/{groupId} (spec: distributedTask/7.2/taskAgent.json).
azure-devops.azure_devops_environments_environments_list Read read 6 Get all environments. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/pipelines/environments (spec: environments/7.2/environments.json).
azure-devops.azure_devops_environments_environments_add Read read 4 Create an environment. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/pipelines/environments (spec: environments/7.2/environments.json).
azure-devops.azure_devops_environments_environmentaccesstoken_generate_environment_access_token Read read 5 GET a PAT token for creating and deleting deployment targets in an environment. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/pipelines/environments/environmentaccesstoken/{environmentId} (spec: environments/7.2/environments.json).
azure-devops.azure_devops_environments_environments_get Read read 5 Get an environment by its ID. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/pipelines/environments/{environmentId} (spec: environments/7.2/environments.json).
azure-devops.azure_devops_environments_environments_update Read read 5 Update the specified environment. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/pipelines/environments/{environmentId} (spec: environments/7.2/environments.json).
azure-devops.azure_devops_environments_environments_delete Read read 4 Delete the specified environment. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/pipelines/environments/{environmentId} (spec: environments/7.2/environments.json).
azure-devops.azure_devops_environments_environmentdeploymentrecords_list Read read 6 Get environment deployment execution history Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/pipelines/environments/{environmentId}/environmentdeploymentrecords (spec: environments/7.2/environments.json).
azure-devops.azure_devops_environments_kubernetes_add Read read 5 POST /{organization}/{project}/_apis/pipelines/environments/{environmentId}/providers/kubernetes Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/pipelines/environments/{environmentId}/providers/kubernetes (spec: environments/7.2/environments.json).
azure-devops.azure_devops_environments_kubernetes_update Read read 5 PATCH /{organization}/{project}/_apis/pipelines/environments/{environmentId}/providers/kubernetes Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/pipelines/environments/{environmentId}/providers/kubernetes (spec: environments/7.2/environments.json).
azure-devops.azure_devops_environments_kubernetes_get Read read 5 GET /{organization}/{project}/_apis/pipelines/environments/{environmentId}/providers/kubernetes/{resourceId} Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/pipelines/environments/{environmentId}/providers/kubernetes/{resourceId} (spec: environments/7.2/environments.json).
azure-devops.azure_devops_environments_kubernetes_delete Read read 5 DELETE /{organization}/{project}/_apis/pipelines/environments/{environmentId}/providers/kubernetes/{resourceId} Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/pipelines/environments/{environmentId}/providers/kubernetes/{resourceId} (spec: environments/7.2/environments.json).
azure-devops.azure_devops_environments_vmresource_list Read read 8 Get Virtual Machine Resources Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/pipelines/environments/{environmentId}/providers/virtualmachines (spec: environments/7.2/environments.json).
azure-devops.azure_devops_environments_vmresource_add Read read 5 Add Virtual Machine Resource Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/pipelines/environments/{environmentId}/providers/virtualmachines (spec: environments/7.2/environments.json).
azure-devops.azure_devops_environments_vmresource_replace_virtual_machine_resource Read read 5 Replace Virtual Machine Resource Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/_apis/pipelines/environments/{environmentId}/providers/virtualmachines (spec: environments/7.2/environments.json).
azure-devops.azure_devops_environments_vmresource_update Read read 5 Update Virtual Machine Resource Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/pipelines/environments/{environmentId}/providers/virtualmachines (spec: environments/7.2/environments.json).
azure-devops.azure_devops_environments_pool_get Read read 4 GET /{organization}/{project}/_apis/pipelines/environments/{environmentId}/providers/virtualmachines/pool Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/pipelines/environments/{environmentId}/providers/virtualmachines/pool (spec: environments/7.2/environments.json).
azure-devops.azure_devops_environments_vmresource_delete Read read 5 Delete Virtual Machine Resource Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/pipelines/environments/{environmentId}/providers/virtualmachines/{resourceId} (spec: environments/7.2/environments.json).
azure-devops.azure_devops_extension_management_installed_extensions_list Read read 6 List the installed extensions in the account / project collection. Official Azure DevOps REST API 7.2 endpoint: GET https://extmgmt.dev.azure.com/{organization}/_apis/extensionmanagement/installedextensions (spec: extensionManagement/7.2/extensionManagement.json).
azure-devops.azure_devops_extension_management_installed_extensions_update Read read 3 Update an installed extension. Typically this API is used to enable or disable an extension. Official Azure DevOps REST API 7.2 endpoint: PATCH https://extmgmt.dev.azure.com/{organization}/_apis/extensionmanagement/installedextensions (spec: extensionManagement/7.2/extensionManagement.json).
azure-devops.azure_devops_extension_management_installed_extensions_get Read read 5 Get an installed extension by its publisher and extension name. Official Azure DevOps REST API 7.2 endpoint: GET https://extmgmt.dev.azure.com/{organization}/_apis/extensionmanagement/installedextensionsbyname/{publisherName}/{extensionName} (spec: extensionManagement/7.2/extensionManagement.json).
azure-devops.azure_devops_extension_management_installed_extensions_uninstall_extension_by_name Read read 6 Uninstall the specified extension from the account / project collection. Official Azure DevOps REST API 7.2 endpoint: DELETE https://extmgmt.dev.azure.com/{organization}/_apis/extensionmanagement/installedextensionsbyname/{publisherName}/{extensionName} (spec: extensionManagement/7.2/extensionManagement.json).
azure-devops.azure_devops_extension_management_installed_extensions_install_extension_by_name Read read 6 Install the specified extension into the account / project collection. Official Azure DevOps REST API 7.2 endpoint: POST https://extmgmt.dev.azure.com/{organization}/_apis/extensionmanagement/installedextensionsbyname/{publisherName}/{extensionName}/{version} (spec: extensionManagement/7.2/extensionManagement.json).
azure-devops.azure_devops_favorite_favorites_get_favorites Read read 6 GET /{organization}/_apis/favorite/favorites Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/favorite/favorites (spec: favorite/7.2/favorite.json).
azure-devops.azure_devops_favorite_favorites_create_favorite Write write 3 POST /{organization}/_apis/favorite/favorites Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/favorite/favorites (spec: favorite/7.2/favorite.json).
azure-devops.azure_devops_favorite_favorites_get_favorite_by_id Read read 7 GET /{organization}/_apis/favorite/favorites/{favoriteId} Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/favorite/favorites/{favoriteId} (spec: favorite/7.2/favorite.json).
azure-devops.azure_devops_favorite_favorites_delete_favorite_by_id Write write 6 DELETE /{organization}/_apis/favorite/favorites/{favoriteId} Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/favorite/favorites/{favoriteId} (spec: favorite/7.2/favorite.json).
azure-devops.azure_devops_git_repositories_get_deleted_repositories Read read 3 Retrieve deleted git repositories. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/deletedrepositories (spec: git/7.2/git.json).
azure-devops.azure_devops_git_refs_favorites_list Read read 5 Gets the refs favorites for a repo and an identity. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/favorites/refs (spec: git/7.2/git.json).
azure-devops.azure_devops_git_refs_favorites_create Read read 4 Creates a ref favorite Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/favorites/refs (spec: git/7.2/git.json).
azure-devops.azure_devops_git_refs_favorites_get Read read 4 Gets the refs favorite for a favorite Id. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/favorites/refs/{favoriteId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_refs_favorites_delete Read read 4 Deletes the refs favorite specified Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/git/favorites/refs/{favoriteId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_refs_favorites_for_project_list Read read 4 GET /{organization}/{project}/_apis/git/favorites/refsForProject Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/favorites/refsForProject (spec: git/7.2/git.json).
azure-devops.azure_devops_git_policy_configurations_get Read read 8 Retrieve a list of policy configurations by a given set of scope/filtering criteria. Azure Repos uses two types of policies to protect your code: **Repository policies (push policies)** check every push to your repository. They validate things like file size limits, path restrictions, or commit requirements. When someone pushes code that violates these rules, the push gets rejected - no matter which branch they're pushing to. **Branch policies (PR policies)** protect specific branches by requiring pull requests. When you set a branch policy on `main`, for example, nobody can push directly to `main` anymore. They must create a pull request instead, which can then require reviews, builds, or other checks to pass first. ## How Policies Work with Your Project Structure Both types of policies can be defined at different levels in your project hierarchy. A policy defined at the project level affects all repositories in that project. A policy defined at the repository level affects just that repository. A branch policy can even be defined at the project level to protect all branches with the same name - like protecting all `main` branches across your entire project with one policy. ### Branch Patterns and Wildcards Branches in Git follow a folder-like structure. You might have branches like: - `refs/heads/main` - `refs/heads/releases/1.0.0` - `refs/heads/releases/2.0.0` - `refs/heads/features/new-login` You can create policies for specific branches or for groups of branches using wildcards. When you create a policy for `refs/heads/releases/*`, it protects all branches in the `releases` "folder" - both the ones that exist now and any new release branches you create later. This pattern matching works recursively, so `refs/heads/releases/*` also covers branches like `refs/heads/releases/v1/hotfix`. This helps you set up consistent protection without creating the same policy over and over. For example, you can require two reviewers for all release branches with just one policy. ## Understanding Policy Inheritance When you query for policies, this endpoint shows you what policies are actually enforcing rules at your specified scope. This includes policies inherited from higher levels. For example, if you query for policies on a specific branch, you get: - Branch policies for that exact branch - Branch policies with wildcards that match your branch - Repository policies for that repo - Any applicable project-level policies Everything that protects that branch shows up in your results. ## How to Query for Policies The `repositoryId` and `refName` parameters let you focus on specific parts of your project. Here's what you get with different combinations: **Both `repositoryId` and `refName` specified:** - When `refName` is a specific branch name: You see all policies affecting that specific branch. This includes exact branch policies, wildcard branch policies that match, repository policies for that repo, and any project-level policies. - When `refName` is `~all`: You see every policy that affects any branch in that repository. This special value gives you the same results as if you called this API once for every single branch in the repo and then combined all the results (removing duplicates). You get all branch-specific policies, all wildcard policies, all repository policies, and all inherited project-level policies that apply to this repository. This helps you see the complete picture of what protects all your branches without making multiple API calls. **Only `repositoryId` specified:** You see policies that apply to the repository as a whole - repository policies and inherited project-level repository policies. Branch policies aren't included because they don't affect the whole repository. **Neither parameter specified:** You see only project-level repository policies. Branch policies defined at the project level aren't included, even though they exist at the project level. This happens because branch policies need a branch context to be meaningful - without specifying a repository or branch name, the API only returns policies that apply to repositories as a whole. **Only `refName` specified:** You see project-level branch policies for branches with that name (like all `main` branch policies defined at project level), plus project-level repository policies. You can add the `policyType` parameter to filter for a specific type of policy, such as "Minimum number of reviewers" or "File size restriction". This parameter accepts the policy type ID and filters the results to show only that specific policy type. ## Common Scenarios - **"What protects my main branch?"** - Use `repositoryId` + `refName=refs/heads/main` - **"What protects all my release branches?"** - Use `repositoryId` + `refName=refs/heads/releases/*` - **"Show me every policy that affects any branch in this repository"** - Use `repositoryId` + `refName=~all` - **"What repository policies apply to this repo?"** - Use `repositoryId` only - **"What file size limits apply to this repository?"** - Use `repositoryId` with the `policyType` for file size restrictions - **"What project-wide repository policies do we have?"** - Don't specify `repositoryId` or `refName` - **"Which policies apply to develop branches across all repositories?"** - Use `refName=refs/heads/develop` Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/policy/configurations (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_requests_get_pull_requests_by_project Read read 20 Retrieve all pull requests matching a specified criteria. Please note that description field will be truncated up to 400 symbols in the result. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/pullrequests (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_requests_get_pull_request_by_id Read read 4 Retrieve a pull request. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/pullrequests/{pullRequestId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_repositories_get_recycle_bin_repositories Read read 3 Retrieve soft-deleted git repositories from the recycle bin. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/recycleBin/repositories (spec: git/7.2/git.json).
azure-devops.azure_devops_git_repositories_restore_repository_from_recycle_bin Read read 5 Recover a soft-deleted Git repository. Recently deleted repositories go into a soft-delete state for a period of time before they are hard deleted and become unrecoverable. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/git/recycleBin/repositories/{repositoryId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_repositories_delete_repository_from_recycle_bin Write write 4 Destroy (hard delete) a soft-deleted Git repository. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/git/recycleBin/repositories/{repositoryId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_repositories_list Read read 6 Retrieve git repositories. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories (spec: git/7.2/git.json).
azure-devops.azure_devops_git_repositories_create Read read 5 Create a git repository in a team project. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories (spec: git/7.2/git.json).
azure-devops.azure_devops_git_repositories_get_repository Read read 4 Retrieve a git repository. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_repositories_update Read read 5 Updates the Git repository with either a new repo name or a new default branch. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_repositories_delete Read read 4 Delete a git repository Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_annotated_tags_create Read read 5 Create an annotated tag. Repositories have both a name and an identifier. Identifiers are globally unique, but several projects may contain a repository of the same name. You don't need to include the project if you specify a repository by ID. However, if you specify a repository by name, you must also specify the project (by name or ID). Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/annotatedtags (spec: git/7.2/git.json).
azure-devops.azure_devops_git_annotated_tags_get Read read 5 Get an annotated tag. Repositories have both a name and an identifier. Identifiers are globally unique, but several projects may contain a repository of the same name. You don't need to include the project if you specify a repository by ID. However, if you specify a repository by name, you must also specify the project (by name or ID). Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/annotatedtags/{objectId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_blobs_get_blobs_zip Read read 6 Gets one or more blobs in a zip file download. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/blobs (spec: git/7.2/git.json).
azure-devops.azure_devops_git_blobs_get_blob Read read 9 Get a single blob. Repositories have both a name and an identifier. Identifiers are globally unique, but several projects may contain a repository of the same name. You don't need to include the project if you specify a repository by ID. However, if you specify a repository by name, you must also specify the project (by name or ID). Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/blobs/{sha1} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_cherry_picks_get_cherry_pick_for_ref_name Read read 5 Retrieve information about a cherry pick operation for a specific branch. This operation is expensive due to the underlying object structure, so this API only looks at the 1000 most recent cherry pick operations. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/cherryPicks (spec: git/7.2/git.json).
azure-devops.azure_devops_git_cherry_picks_create Read read 5 Cherry pick a specific commit or commits that are associated to a pull request into a new branch. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/cherryPicks (spec: git/7.2/git.json).
azure-devops.azure_devops_git_cherry_picks_get_cherry_pick Read read 5 Retrieve information about a cherry pick operation by cherry pick Id. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/cherryPicks/{cherryPickId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_commits_get_push_commits Read read 8 Retrieve a list of commits associated with a particular push. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/commits (spec: git/7.2/git.json).
azure-devops.azure_devops_git_commits_get Read read 6 Retrieve a particular commit. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/commits/{commitId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_commits_get_changes Read read 7 Retrieve changes for a particular commit. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/commits/{commitId}/changes (spec: git/7.2/git.json).
azure-devops.azure_devops_git_statuses_list Read read 8 Get statuses associated with the Git commit. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/commits/{commitId}/statuses (spec: git/7.2/git.json).
azure-devops.azure_devops_git_statuses_create Read read 6 Create Git commit status. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/commits/{commitId}/statuses (spec: git/7.2/git.json).
azure-devops.azure_devops_git_commits_get_commits_batch Read read 8 Retrieve git commits for a project matching the search criteria Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/commitsbatch (spec: git/7.2/git.json).
azure-devops.azure_devops_git_diffs_get Read read 13 Find the closest common commit (the merge base) between base and target commits, and get the diff between either the base and target commits or common and target commits. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/diffs/commits (spec: git/7.2/git.json).
azure-devops.azure_devops_git_import_requests_query Read read 5 Retrieve import requests for a repository. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/importRequests (spec: git/7.2/git.json).
azure-devops.azure_devops_git_import_requests_create Read read 5 Create an import request. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/importRequests (spec: git/7.2/git.json).
azure-devops.azure_devops_git_import_requests_get Read read 5 Retrieve a particular import request. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/importRequests/{importRequestId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_import_requests_update Read read 6 Retry or abandon a failed import request. There can only be one active import request associated with a repository. Marking a failed import request abandoned makes it inactive. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/importRequests/{importRequestId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_items_list Read read 15 Get Item Metadata and/or Content for a collection of items. The download parameter is to indicate whether the content should be available as a download or just sent as a stream in the response. Doesn't apply to zipped content which is always returned as a download. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/items (spec: git/7.2/git.json).
azure-devops.azure_devops_git_items_get_items_batch Read read 5 Retrieves a batch of items in a repo / project for a given list of paths or a long path Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/itemsbatch (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_attachments_list Read read 5 Get a list of files attached to a given pull request. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/attachments (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_attachments_get Read read 6 Get the file content of a pull request attachment. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/attachments/{fileName} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_attachments_create Read read 7 Attach a new file to a pull request. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/attachments/{fileName} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_attachments_delete Read read 6 Delete a pull request attachment. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/attachments/{fileName} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_commits_get_pull_request_commits Read read 7 Get the commits for the specified pull request. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/commits (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_iterations_list Read read 6 Get the list of iterations for the specified pull request. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/iterations (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_iterations_get Read read 6 Get the specified iteration for a pull request. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/iterations/{iterationId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_iteration_changes_get Read read 9 Retrieve the changes made in a pull request between two iterations. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/iterations/{iterationId}/changes (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_commits_get_pull_request_iteration_commits Read read 8 Get the commits for the specified iteration of a pull request. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/iterations/{iterationId}/commits (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_iteration_statuses_list Read read 6 Get all the statuses associated with a pull request iteration. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/iterations/{iterationId}/statuses (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_iteration_statuses_create Read read 7 Create a pull request status on the iteration. This operation will have the same result as Create status on pull request with specified iteration ID in the request body. The only required field for the status is `Context.Name` that uniquely identifies the status. Note that `iterationId` in the request body is optional since `iterationId` can be specified in the URL. A conflict between `iterationId` in the URL and `iterationId` in the request body will result in status code 400. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/iterations/{iterationId}/statuses (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_iteration_statuses_update Read read 7 Update pull request iteration statuses collection. The only supported operation type is `remove`. This operation allows to delete multiple statuses in one call. The path of the `remove` operation should refer to the ID of the pull request status. For example `path="/1"` refers to the pull request status with ID 1. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/iterations/{iterationId}/statuses (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_iteration_statuses_get Read read 7 Get the specific pull request iteration status by ID. The status ID is unique within the pull request across all iterations. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/iterations/{iterationId}/statuses/{statusId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_iteration_statuses_delete Read read 7 Delete pull request iteration status. You can remove multiple statuses in one call by using Update operation. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/iterations/{iterationId}/statuses/{statusId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_labels_list Read read 6 Get all the labels (tags) assigned to a pull request. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/labels (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_labels_create Read read 7 Create a tag (if that does not exists yet) and add that as a label (tag) for a specified pull request. The only required field is the name of the new label (tag). Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/labels (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_labels_get Read read 7 Retrieves a single label (tag) that has been assigned to a pull request. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/labels/{labelIdOrName} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_labels_delete Read read 7 Removes a label (tag) from the set of those assigned to the pull request. The tag itself will not be deleted. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/labels/{labelIdOrName} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_properties_list Read read 5 Get external properties of the pull request. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/properties (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_properties_update Read read 6 Create or update pull request external properties. The patch operation can be `add`, `replace` or `remove`. For `add` operation, the path can be empty. If the path is empty, the value must be a list of key value pairs. For `replace` operation, the path cannot be empty. If the path does not exist, the property will be added to the collection. For `remove` operation, the path cannot be empty. If the path does not exist, no action will be performed. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/properties (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_reviewers_list Read read 5 Retrieve the reviewers for a pull request Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/reviewers (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_reviewers_create_pull_request_reviewers Write write 6 Add reviewers to a pull request. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/reviewers (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_reviewers_create_unmaterialized_pull_request_reviewer Write write 6 Add an unmaterialized identity to the reviewers of a pull request. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/reviewers (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_reviewers_update_pull_request_reviewers Write write 6 Reset the votes of multiple reviewers on a pull request. NOTE: This endpoint only supports updating votes, but does not support updating required reviewers (use policy) or display names. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/reviewers (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_reviewers_get Read read 6 Retrieve information about a particular reviewer on a pull request Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/reviewers/{reviewerId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_reviewers_create_pull_request_reviewer Write write 7 Add a reviewer to a pull request or cast a vote. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/reviewers/{reviewerId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_reviewers_update_pull_request_reviewer Write write 7 Edit a reviewer entry. These fields are patchable: isFlagged, hasDeclined Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/reviewers/{reviewerId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_reviewers_delete Read read 6 Remove a reviewer from a pull request. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/reviewers/{reviewerId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_share_share_pull_request Read read 6 Sends an e-mail notification about a specific pull request to a set of recipients Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/share (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_statuses_list Read read 5 Get all the statuses associated with a pull request. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/statuses (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_statuses_create Read read 6 Create a pull request status. The only required field for the status is `Context.Name` that uniquely identifies the status. Note that you can specify iterationId in the request body to post the status on the iteration. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/statuses (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_statuses_update Read read 6 Update pull request statuses collection. The only supported operation type is `remove`. This operation allows to delete multiple statuses in one call. The path of the `remove` operation should refer to the ID of the pull request status. For example `path="/1"` refers to the pull request status with ID 1. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/statuses (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_statuses_get Read read 6 Get the specific pull request status by ID. The status ID is unique within the pull request across all iterations. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/statuses/{statusId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_statuses_delete Read read 6 Delete pull request status. You can remove multiple statuses in one call by using Update operation. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/statuses/{statusId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_threads_list Read read 7 Retrieve all threads in a pull request. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/threads (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_threads_create Read read 6 Create a thread in a pull request. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/threads (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_threads_get Read read 8 Retrieve a thread in a pull request. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/threads/{threadId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_threads_update Read read 7 Update a thread in a pull request. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/threads/{threadId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_thread_comments_list Read read 6 Retrieve all comments associated with a specific thread in a pull request. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/threads/{threadId}/comments (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_thread_comments_create Read read 7 Create a comment on a specific thread in a pull request (up to 500 comments can be created per thread). Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/threads/{threadId}/comments (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_thread_comments_get Read read 7 Retrieve a comment associated with a specific thread in a pull request. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/threads/{threadId}/comments/{commentId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_thread_comments_update Read read 8 Update a comment associated with a specific thread in a pull request. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/threads/{threadId}/comments/{commentId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_thread_comments_delete Read read 7 Delete a comment associated with a specific thread in a pull request. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/threads/{threadId}/comments/{commentId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_comment_likes_list Read read 7 Get likes for a comment. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/threads/{threadId}/comments/{commentId}/likes (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_comment_likes_create Read read 8 Add a like on a comment. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/threads/{threadId}/comments/{commentId}/likes (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_comment_likes_delete Read read 7 Delete a like on a comment. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/threads/{threadId}/comments/{commentId}/likes (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_work_items_list Read read 5 Retrieve a list of work items associated with a pull request. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/workitems (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_request_query_get Read read 5 This API is used to find what pull requests are related to a given commit. It can be used to either find the pull request that created a particular merge commit or it can be used to find all pull requests that have ever merged a particular commit. The input is a list of queries which each contain a list of commits. For each commit that you search against, you will get back a dictionary of commit -> pull requests. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullrequestquery (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_requests_get_pull_requests Read read 21 Retrieve all pull requests matching a specified criteria. Please note that description field will be truncated up to 400 symbols in the result. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullrequests (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_requests_create Read read 6 Create a pull request. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullrequests (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_requests_get_pull_request Read read 10 Retrieve a pull request. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullrequests/{pullRequestId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pull_requests_update Read read 6 Update a pull request These are the properties that can be updated with the API: - Status - Title - Description (up to 4000 characters) - CompletionOptions - MergeOptions - AutoCompleteSetBy.Id - TargetRefName (when the PR retargeting feature is enabled) Attempting to update other properties outside of this list will either cause the server to throw an `InvalidArgumentValueException`, or to silently ignore the update. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullrequests/{pullRequestId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pushes_list Read read 12 Retrieves pushes associated with the specified repository. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pushes (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pushes_create Read read 5 Push changes to the repository. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pushes (spec: git/7.2/git.json).
azure-devops.azure_devops_git_pushes_get Read read 7 Retrieves a particular push. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pushes/{pushId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_refs_list Read read 14 Queries the provided repository for its refs and returns them. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/refs (spec: git/7.2/git.json).
azure-devops.azure_devops_git_refs_update_refs Write write 6 Creating, updating, or deleting refs(branches). Updating a ref means making it point at a different commit than it used to. You must specify both the old and new commit to avoid race conditions. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/refs (spec: git/7.2/git.json).
azure-devops.azure_devops_git_refs_update_ref Write write 7 Lock or Unlock a branch. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/refs (spec: git/7.2/git.json).
azure-devops.azure_devops_git_reverts_get_revert_for_ref_name Read read 5 Retrieve information about a revert operation for a specific branch. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/reverts (spec: git/7.2/git.json).
azure-devops.azure_devops_git_reverts_create Read read 5 Starts the operation to create a new branch which reverts changes introduced by either a specific commit or commits that are associated to a pull request. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/reverts (spec: git/7.2/git.json).
azure-devops.azure_devops_git_reverts_get_revert Read read 5 Retrieve information about a revert operation by revert Id. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/reverts/{revertId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_stats_list Read read 7 Retrieve statistics about all branches within a repository. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/stats/branches (spec: git/7.2/git.json).
azure-devops.azure_devops_git_suggestions_list Read read 5 Retrieve a pull request suggestion for a particular repository or team project. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/suggestions (spec: git/7.2/git.json).
azure-devops.azure_devops_git_trees_get Read read 9 The Tree endpoint returns the collection of objects underneath the specified tree. Trees are folders in a Git repository. Repositories have both a name and an identifier. Identifiers are globally unique, but several projects may contain a repository of the same name. You don't need to include the project if you specify a repository by ID. However, if you specify a repository by name, you must also specify the project (by name or ID. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/trees/{sha1} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_merge_bases_list Write write 8 Find the merge bases of two commits, optionally across forks. If otherRepositoryId is not specified, the merge bases will only be calculated within the context of the local repositoryNameOrId. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryNameOrId}/commits/{commitId}/mergebases (spec: git/7.2/git.json).
azure-devops.azure_devops_git_forks_get_fork_sync_requests Read read 6 Retrieve all requested fork sync operations on this repository. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryNameOrId}/forkSyncRequests (spec: git/7.2/git.json).
azure-devops.azure_devops_git_forks_create_fork_sync_request Write write 6 Request that another repository's refs be fetched into this one. It syncs two existing forks. To create a fork, please see the <a href="https://docs.microsoft.com/en-us/rest/api/vsts/git/repositories/create?view=azure-devops-rest-5.1"> repositories endpoint</a> Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryNameOrId}/forkSyncRequests (spec: git/7.2/git.json).
azure-devops.azure_devops_git_forks_get_fork_sync_request Read read 6 Get a specific fork sync operation's details. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryNameOrId}/forkSyncRequests/{forkSyncOperationId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_forks_list Read read 6 Retrieve all forks of a repository in the collection. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryNameOrId}/forks/{collectionId} (spec: git/7.2/git.json).
azure-devops.azure_devops_git_merges_create Read read 6 Request a git merge operation. Currently we support merging only 2 commits. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryNameOrId}/merges (spec: git/7.2/git.json).
azure-devops.azure_devops_git_merges_get Read read 6 Get a specific merge operation's details. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryNameOrId}/merges/{mergeOperationId} (spec: git/7.2/git.json).
azure-devops.azure_devops_graph_memberships_list Read read 5 Get all the memberships where this descriptor is a member in the relationship. The default value for direction is 'up' meaning return all memberships where the subject is a member (e.g. all groups the subject is a member of). Alternatively, passing the direction as 'down' will return all memberships where the subject is a container (e.g. all members of the subject group). Official Azure DevOps REST API 7.2 endpoint: GET https://vssps.dev.azure.com/{organization}/_apis/graph/Memberships/{subjectDescriptor} (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_avatars_get Read read 5 GET /{organization}/_apis/graph/Subjects/{subjectDescriptor}/avatars Official Azure DevOps REST API 7.2 endpoint: GET https://vssps.dev.azure.com/{organization}/_apis/graph/Subjects/{subjectDescriptor}/avatars (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_avatars_set_avatar Read read 4 PUT /{organization}/_apis/graph/Subjects/{subjectDescriptor}/avatars Official Azure DevOps REST API 7.2 endpoint: PUT https://vssps.dev.azure.com/{organization}/_apis/graph/Subjects/{subjectDescriptor}/avatars (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_avatars_delete Read read 3 DELETE /{organization}/_apis/graph/Subjects/{subjectDescriptor}/avatars Official Azure DevOps REST API 7.2 endpoint: DELETE https://vssps.dev.azure.com/{organization}/_apis/graph/Subjects/{subjectDescriptor}/avatars (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_provider_info_get Read read 3 GET /{organization}/_apis/graph/Users/{userDescriptor}/providerinfo Official Azure DevOps REST API 7.2 endpoint: GET https://vssps.dev.azure.com/{organization}/_apis/graph/Users/{userDescriptor}/providerinfo (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_descriptors_get Read read 3 Resolve a storage key to a descriptor Official Azure DevOps REST API 7.2 endpoint: GET https://vssps.dev.azure.com/{organization}/_apis/graph/descriptors/{storageKey} (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_groups_list Read read 5 Gets a list of all groups in the current scope (usually organization or account). The optional parameters are used to filter down the returned results. Returned results are in no guaranteed order. Since the list of groups may be large, results are returned in pages of groups. If there are more results than can be returned in a single page, the result set will contain a continuation token for retrieval of the next set of results. Official Azure DevOps REST API 7.2 endpoint: GET https://vssps.dev.azure.com/{organization}/_apis/graph/groups (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_groups_create Read read 5 Create a new Azure DevOps group or materialize an existing AAD group. The body of the request must be a derived type of GraphGroupCreationContext: * GraphGroupVstsCreationContext - Create a new Azure DevOps group that is not backed by an external provider. * GraphGroupMailAddressCreationContext - Create a new group using the mail address as a reference to an existing group from an external AD or AAD backed provider. * GraphGroupOriginIdCreationContext - Create a new group using the OriginID as a reference to a group from an external AD or AAD backed provider. Optionally, you can add the newly created group as a member of an existing Azure DevOps group and/or specify a custom storage key for the group. Official Azure DevOps REST API 7.2 endpoint: POST https://vssps.dev.azure.com/{organization}/_apis/graph/groups (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_groups_get Read read 3 Get a group by its descriptor. The group will be returned even if it has been deleted from the account or has had all its memberships deleted. Official Azure DevOps REST API 7.2 endpoint: GET https://vssps.dev.azure.com/{organization}/_apis/graph/groups/{groupDescriptor} (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_groups_update Read read 4 Update the properties of an Azure DevOps group. Currently limited to only changing the description and account name. Official Azure DevOps REST API 7.2 endpoint: PATCH https://vssps.dev.azure.com/{organization}/_apis/graph/groups/{groupDescriptor} (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_groups_delete Read read 3 Removes an Azure DevOps group from all of its parent groups. The group will still be visible, but membership checks for the group, and all descendants which derive membership through it, will return false.” Official Azure DevOps REST API 7.2 endpoint: DELETE https://vssps.dev.azure.com/{organization}/_apis/graph/groups/{groupDescriptor} (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_memberships_get Read read 4 Get a membership relationship between a container and subject. Official Azure DevOps REST API 7.2 endpoint: GET https://vssps.dev.azure.com/{organization}/_apis/graph/memberships/{subjectDescriptor}/{containerDescriptor} (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_memberships_add Read read 5 Create a new membership between a container and subject. Official Azure DevOps REST API 7.2 endpoint: PUT https://vssps.dev.azure.com/{organization}/_apis/graph/memberships/{subjectDescriptor}/{containerDescriptor} (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_memberships_remove_membership Write write 4 Deletes a membership between a container and subject. Official Azure DevOps REST API 7.2 endpoint: DELETE https://vssps.dev.azure.com/{organization}/_apis/graph/memberships/{subjectDescriptor}/{containerDescriptor} (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_membership_states_get Read read 3 Check whether a subject is active or inactive. Official Azure DevOps REST API 7.2 endpoint: GET https://vssps.dev.azure.com/{organization}/_apis/graph/membershipstates/{subjectDescriptor} (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_request_access_request_access Read read 3 POST /{organization}/_apis/graph/requestaccess Official Azure DevOps REST API 7.2 endpoint: POST https://vssps.dev.azure.com/{organization}/_apis/graph/requestaccess (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_service_principals_list Read read 4 Get a list of all service principals in a given scope. Since the list of service principals may be large, results are returned in pages of service principals. If there are more results than can be returned in a single page, the result set will contain a continuation token for retrieval of the next set of results. The only reliable way to know if there is no more service principals left is the lack of a continuation token. Official Azure DevOps REST API 7.2 endpoint: GET https://vssps.dev.azure.com/{organization}/_apis/graph/serviceprincipals (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_service_principals_create Read read 4 Materialize an existing AAD service principal into the ADO account. NOTE: Created service principals are not active in an account. Adding a service principal to an account is required before the service principal can be added to ADO groups or assigned an asset. The body of the request must be a derived type of GraphServicePrincipalCreationContext: * GraphServicePrincipalOriginIdCreationContext - Create a new service principal using the OriginID as a reference to an existing service principal from AAD backed provider. If the service principal to be added corresponds to a service principal that was previously deleted, then that service principal will be restored. Optionally, you can add the newly created service principal as a member of an existing ADO group and/or specify a custom storage key for the service principal. Official Azure DevOps REST API 7.2 endpoint: POST https://vssps.dev.azure.com/{organization}/_apis/graph/serviceprincipals (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_service_principals_get Read read 3 Get a service principal by its descriptor. Official Azure DevOps REST API 7.2 endpoint: GET https://vssps.dev.azure.com/{organization}/_apis/graph/serviceprincipals/{servicePrincipalDescriptor} (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_service_principals_delete Read read 3 Disables a service principal. The service principal will still be visible, but membership checks for the service principal will return false. Official Azure DevOps REST API 7.2 endpoint: DELETE https://vssps.dev.azure.com/{organization}/_apis/graph/serviceprincipals/{servicePrincipalDescriptor} (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_storage_keys_get Read read 3 Resolve a descriptor to a storage key. Official Azure DevOps REST API 7.2 endpoint: GET https://vssps.dev.azure.com/{organization}/_apis/graph/storagekeys/{subjectDescriptor} (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_subject_lookup_lookup_subjects Read read 3 Resolve descriptors to users, groups or scopes (Subjects) in a batch. Official Azure DevOps REST API 7.2 endpoint: POST https://vssps.dev.azure.com/{organization}/_apis/graph/subjectlookup (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_subject_query_query Read read 3 Search for Azure Devops users, or/and groups. Results will be returned in a batch with no more than 100 graph subjects. Official Azure DevOps REST API 7.2 endpoint: POST https://vssps.dev.azure.com/{organization}/_apis/graph/subjectquery (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_users_list Read read 5 Get a list of all users in a given scope. Since the list of users may be large, results are returned in pages of users. If there are more results than can be returned in a single page, the result set will contain a continuation token for retrieval of the next set of results. Official Azure DevOps REST API 7.2 endpoint: GET https://vssps.dev.azure.com/{organization}/_apis/graph/users (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_users_create Read read 4 Materialize an existing AAD or MSA user into the ADO account. NOTE: Created users are not active in an account unless they have been explicitly assigned a parent group at creation time or have signed in and been autolicensed through AAD group memberships. Adding a user to an account is required before the user can be added to ADO groups or assigned an asset. The body of the request must be a derived type of GraphUserCreationContext: * GraphUserMailAddressCreationContext - Create a new user using the mail address as a reference to an existing user from an external AD or AAD backed provider. * GraphUserOriginIdCreationContext - Create a new user using the OriginID as a reference to an existing user from an external AD or AAD backed provider. * GraphUserPrincipalNameCreationContext - Create a new user using the principal name as a reference to an existing user from an external AD or AAD backed provider. If the user to be added corresponds to a user that was previously deleted, then that user will be restored. Optionally, you can add the newly created user as a member of an existing ADO group and/or specify a custom storage key for the user. Official Azure DevOps REST API 7.2 endpoint: POST https://vssps.dev.azure.com/{organization}/_apis/graph/users (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_users_get Read read 3 Get a user by its descriptor. Official Azure DevOps REST API 7.2 endpoint: GET https://vssps.dev.azure.com/{organization}/_apis/graph/users/{userDescriptor} (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_users_update Read read 4 Map an existing user to a different user. The body of the request must be a derived type of GraphUserUpdateContext: * GraphUserOriginIdUpdateContext - Map an existing user in an account, to an existing user from an external AD or AAD backed provider using the OriginId as a reference. Official Azure DevOps REST API 7.2 endpoint: PATCH https://vssps.dev.azure.com/{organization}/_apis/graph/users/{userDescriptor} (spec: graph/7.2/graph.json).
azure-devops.azure_devops_graph_users_delete Read read 3 Disables a user. The user will still be visible, but membership checks for the user will return false. Official Azure DevOps REST API 7.2 endpoint: DELETE https://vssps.dev.azure.com/{organization}/_apis/graph/users/{userDescriptor} (spec: graph/7.2/graph.json).
azure-devops.azure_devops_hooks_consumers_list Read read 3 Get a list of available service hook consumer services. Optionally filter by consumers that support at least one event type from the specific publisher. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/hooks/consumers (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_consumers_get Read read 4 Get a specific consumer service. Optionally filter out consumer actions that do not support any event types for the specified publisher. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/hooks/consumers/{consumerId} (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_consumers_list_consumer_actions Read read 4 Get a list of consumer actions for a specific consumer. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/hooks/consumers/{consumerId}/actions (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_consumers_get_consumer_action Read read 5 Get details about a specific consumer action. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/hooks/consumers/{consumerId}/actions/{consumerActionId} (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_notifications_query Read read 3 Query for notifications. A notification includes details about the event, the request to and the response from the consumer service. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/hooks/notificationsquery (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_publishers_list Read read 2 Get a list of publishers. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/hooks/publishers (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_publishers_get Read read 3 Get a specific service hooks publisher. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/hooks/publishers/{publisherId} (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_publishers_list_event_types Read read 3 Get the event types for a specific publisher. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/hooks/publishers/{publisherId}/eventtypes (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_publishers_get_event_type Read read 4 Get a specific event type. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/hooks/publishers/{publisherId}/eventtypes/{eventTypeId} (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_publishers_query_input_values Read read 4 POST /{organization}/_apis/hooks/publishers/{publisherId}/inputValuesQuery Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/hooks/publishers/{publisherId}/inputValuesQuery (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_publishers_query_publishers Read read 3 Query for service hook publishers. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/hooks/publishersquery (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_subscriptions_list Read read 6 Get a list of subscriptions. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/hooks/subscriptions (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_subscriptions_create Read read 3 Create a subscription. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/hooks/subscriptions (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_subscriptions_get Read read 3 Get a specific service hooks subscription. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/hooks/subscriptions/{subscriptionId} (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_subscriptions_replace_subscription Read read 4 Update a subscription. <param name="subscriptionId">ID for a subscription that you wish to update.</param> Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/_apis/hooks/subscriptions/{subscriptionId} (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_subscriptions_delete Read read 3 Delete a specific service hooks subscription. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/hooks/subscriptions/{subscriptionId} (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_diagnostics_get Read read 3 GET /{organization}/_apis/hooks/subscriptions/{subscriptionId}/diagnostics Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/hooks/subscriptions/{subscriptionId}/diagnostics (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_diagnostics_update Read read 4 PUT /{organization}/_apis/hooks/subscriptions/{subscriptionId}/diagnostics Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/_apis/hooks/subscriptions/{subscriptionId}/diagnostics (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_notifications_list Read read 6 Get a list of notifications for a specific subscription. A notification includes details about the event, the request to and the response from the consumer service. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/hooks/subscriptions/{subscriptionId}/notifications (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_notifications_get Read read 4 Get a specific notification for a subscription. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/hooks/subscriptions/{subscriptionId}/notifications/{notificationId} (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_subscriptions_create_subscriptions_query Write write 3 Query for service hook subscriptions. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/hooks/subscriptionsquery (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_hooks_notifications_create Read read 4 Sends a test notification. This is useful for verifying the configuration of an updated or new service hooks subscription. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/hooks/testnotifications (spec: hooks/7.2/serviceHooks.json).
azure-devops.azure_devops_ims_identities_read_identities Read read 8 Resolve legacy identity information for use with older APIs such as the Security APIs Official Azure DevOps REST API 7.2 endpoint: GET https://vssps.dev.azure.com/{organization}/_apis/identities (spec: ims/7.2/identities.json).
azure-devops.azure_devops_member_entitlement_management_members_get Read read 5 Get direct members of a Group. Official Azure DevOps REST API 7.2 endpoint: GET https://vsaex.dev.azure.com/{organization}/_apis/GroupEntitlements/{groupId}/members (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_members_add Read read 5 Add a member to a Group. Official Azure DevOps REST API 7.2 endpoint: PUT https://vsaex.dev.azure.com/{organization}/_apis/GroupEntitlements/{groupId}/members/{memberId} (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_members_remove_member_from_group Write write 4 Remove a member from a Group. Official Azure DevOps REST API 7.2 endpoint: DELETE https://vsaex.dev.azure.com/{organization}/_apis/GroupEntitlements/{groupId}/members/{memberId} (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_group_entitlements_list Read read 2 Get the group entitlements for an account. Official Azure DevOps REST API 7.2 endpoint: GET https://vsaex.dev.azure.com/{organization}/_apis/groupentitlements (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_group_entitlements_add Read read 4 Create a group entitlement with license rule, extension rule. Official Azure DevOps REST API 7.2 endpoint: POST https://vsaex.dev.azure.com/{organization}/_apis/groupentitlements (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_group_entitlements_get Read read 3 Get a group entitlement. If the group entitlement does not exist, returns null. Official Azure DevOps REST API 7.2 endpoint: GET https://vsaex.dev.azure.com/{organization}/_apis/groupentitlements/{groupId} (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_group_entitlements_update Read read 5 Update entitlements (License Rule, Extensions Rule, Project memberships etc.) for a group. Official Azure DevOps REST API 7.2 endpoint: PATCH https://vsaex.dev.azure.com/{organization}/_apis/groupentitlements/{groupId} (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_group_entitlements_delete Read read 5 Delete a group entitlement. Official Azure DevOps REST API 7.2 endpoint: DELETE https://vsaex.dev.azure.com/{organization}/_apis/groupentitlements/{groupId} (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_member_entitlements_search_member_entitlements Read read 6 GET /{organization}/_apis/memberentitlements Official Azure DevOps REST API 7.2 endpoint: GET https://vsaex.dev.azure.com/{organization}/_apis/memberentitlements (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_add Read read 3 Add a service principal, assign license and extensions and make them a member of a project group in an account. NOTE: If you are working with AAD app registration, you can find service principal of your app in enterprise applications, and make sure to use service principal's object id as originId parameter in the request body Official Azure DevOps REST API 7.2 endpoint: POST https://vsaex.dev.azure.com/{organization}/_apis/serviceprincipalentitlements (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_update_service_principal_entitlements Write write 3 Edit the entitlements (License, Extensions, Projects, Teams etc) for one or more service principals. Official Azure DevOps REST API 7.2 endpoint: PATCH https://vsaex.dev.azure.com/{organization}/_apis/serviceprincipalentitlements (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_get Read read 3 Get Service principal Entitlement for a service principal. Official Azure DevOps REST API 7.2 endpoint: GET https://vsaex.dev.azure.com/{organization}/_apis/serviceprincipalentitlements/{servicePrincipalId} (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_update_service_principal_entitlement Write write 4 Edit the entitlements (License, Extensions, Projects, Teams etc) for a service principal. Official Azure DevOps REST API 7.2 endpoint: PATCH https://vsaex.dev.azure.com/{organization}/_apis/serviceprincipalentitlements/{servicePrincipalId} (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_delete Read read 3 Delete a service principal from the account. The delete operation includes unassigning Extensions and Licenses and removing the service principal from all project memberships. The service principal would continue to have access to the account if it is member of an AAD group, that is added directly to the account. Official Azure DevOps REST API 7.2 endpoint: DELETE https://vsaex.dev.azure.com/{organization}/_apis/serviceprincipalentitlements/{servicePrincipalId} (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_user_entitlements_search_user_entitlements Read read 6 Get a paged set of user entitlements matching the filter and sort criteria built with properties that match the select input. Official Azure DevOps REST API 7.2 endpoint: GET https://vsaex.dev.azure.com/{organization}/_apis/userentitlements (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_user_entitlements_add Read read 3 Add a user, assign license and extensions and make them a member of a project group in an account. Official Azure DevOps REST API 7.2 endpoint: POST https://vsaex.dev.azure.com/{organization}/_apis/userentitlements (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_user_entitlements_update_user_entitlements Write write 4 Edit the entitlements (License, Extensions, Projects, Teams etc) for one or more users. MSA Backed organizations may face limitation when using this API. Official Azure DevOps REST API 7.2 endpoint: PATCH https://vsaex.dev.azure.com/{organization}/_apis/userentitlements (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_user_entitlements_get Read read 3 Get User Entitlement for a user. Official Azure DevOps REST API 7.2 endpoint: GET https://vsaex.dev.azure.com/{organization}/_apis/userentitlements/{userId} (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_user_entitlements_update_user_entitlement Write write 4 Edit the entitlements (License, Extensions, Projects, Teams etc) for a user. MSA Backed organizations may face limitation when using this API. Official Azure DevOps REST API 7.2 endpoint: PATCH https://vsaex.dev.azure.com/{organization}/_apis/userentitlements/{userId} (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_user_entitlements_delete Read read 3 Delete a user from the account. The delete operation includes unassigning Extensions and Licenses and removing the user from all project memberships. The user would continue to have access to the account if she is member of an AAD group, that is added directly to the account. Official Azure DevOps REST API 7.2 endpoint: DELETE https://vsaex.dev.azure.com/{organization}/_apis/userentitlements/{userId} (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_member_entitlement_management_user_entitlement_summary_get Read read 3 Get summary of Licenses, Extension, Projects, Groups and their assignments in the collection. Official Azure DevOps REST API 7.2 endpoint: GET https://vsaex.dev.azure.com/{organization}/_apis/userentitlementsummary (spec: memberEntitlementManagement/7.2/memberEntitlementManagement.json).
azure-devops.azure_devops_notification_subscriptions_update_subscription_user_settings Write write 5 Update the specified user's settings for the specified subscription. This API is typically used to opt in or out of a shared subscription. User settings can only be applied to shared subscriptions, like team subscriptions or default subscriptions. Official Azure DevOps REST API 7.2 endpoint: PUT https://{service}dev.azure.com/{organization}/_apis/notification/Subscriptions/{subscriptionId}/usersettings/{userId} (spec: notification/7.2/notification.json).
azure-devops.azure_devops_notification_diagnostic_logs_list Read read 6 Get a list of diagnostic logs for this service. Official Azure DevOps REST API 7.2 endpoint: GET https://{service}dev.azure.com/{organization}/_apis/notification/diagnosticlogs/{source}/entries/{entryId} (spec: notification/7.2/notification.json).
azure-devops.azure_devops_notification_event_types_list Read read 3 List available event types for this service. Optionally filter by only event types for the specified publisher. Official Azure DevOps REST API 7.2 endpoint: GET https://{service}dev.azure.com/{organization}/_apis/notification/eventtypes (spec: notification/7.2/notification.json).
azure-devops.azure_devops_notification_event_types_get Read read 3 Get a specific event type. Official Azure DevOps REST API 7.2 endpoint: GET https://{service}dev.azure.com/{organization}/_apis/notification/eventtypes/{eventType} (spec: notification/7.2/notification.json).
azure-devops.azure_devops_notification_settings_get Read read 2 GET /{organization}/_apis/notification/settings Official Azure DevOps REST API 7.2 endpoint: GET https://{service}dev.azure.com/{organization}/_apis/notification/settings (spec: notification/7.2/notification.json).
azure-devops.azure_devops_notification_settings_update Read read 3 PATCH /{organization}/_apis/notification/settings Official Azure DevOps REST API 7.2 endpoint: PATCH https://{service}dev.azure.com/{organization}/_apis/notification/settings (spec: notification/7.2/notification.json).
azure-devops.azure_devops_notification_subscribers_get Read read 3 Get delivery preferences of a notifications subscriber. Official Azure DevOps REST API 7.2 endpoint: GET https://{service}dev.azure.com/{organization}/_apis/notification/subscribers/{subscriberId} (spec: notification/7.2/notification.json).
azure-devops.azure_devops_notification_subscribers_update Read read 4 Update delivery preferences of a notifications subscriber. Official Azure DevOps REST API 7.2 endpoint: PATCH https://{service}dev.azure.com/{organization}/_apis/notification/subscribers/{subscriberId} (spec: notification/7.2/notification.json).
azure-devops.azure_devops_notification_subscriptions_query Read read 3 Query for subscriptions. A subscription is returned if it matches one or more of the specified conditions. Official Azure DevOps REST API 7.2 endpoint: POST https://{service}dev.azure.com/{organization}/_apis/notification/subscriptionquery (spec: notification/7.2/notification.json).
azure-devops.azure_devops_notification_subscriptions_list Read read 5 Get a list of notification subscriptions, either by subscription IDs or by all subscriptions for a given user or group. Official Azure DevOps REST API 7.2 endpoint: GET https://{service}dev.azure.com/{organization}/_apis/notification/subscriptions (spec: notification/7.2/notification.json).
azure-devops.azure_devops_notification_subscriptions_create Read read 3 Create a new subscription. Official Azure DevOps REST API 7.2 endpoint: POST https://{service}dev.azure.com/{organization}/_apis/notification/subscriptions (spec: notification/7.2/notification.json).
azure-devops.azure_devops_notification_subscriptions_get Read read 4 Get a notification subscription by its ID. Official Azure DevOps REST API 7.2 endpoint: GET https://{service}dev.azure.com/{organization}/_apis/notification/subscriptions/{subscriptionId} (spec: notification/7.2/notification.json).
azure-devops.azure_devops_notification_subscriptions_update Read read 4 Update an existing subscription. Depending on the type of subscription and permissions, the caller can update the description, filter settings, channel (delivery) settings and more. Official Azure DevOps REST API 7.2 endpoint: PATCH https://{service}dev.azure.com/{organization}/_apis/notification/subscriptions/{subscriptionId} (spec: notification/7.2/notification.json).
azure-devops.azure_devops_notification_subscriptions_delete Read read 3 Delete a subscription. Official Azure DevOps REST API 7.2 endpoint: DELETE https://{service}dev.azure.com/{organization}/_apis/notification/subscriptions/{subscriptionId} (spec: notification/7.2/notification.json).
azure-devops.azure_devops_notification_diagnostics_get Read read 3 Get the diagnostics settings for a subscription. Official Azure DevOps REST API 7.2 endpoint: GET https://{service}dev.azure.com/{organization}/_apis/notification/subscriptions/{subscriptionId}/diagnostics (spec: notification/7.2/notification.json).
azure-devops.azure_devops_notification_diagnostics_update Read read 4 Update the diagnostics settings for a subscription. Official Azure DevOps REST API 7.2 endpoint: PUT https://{service}dev.azure.com/{organization}/_apis/notification/subscriptions/{subscriptionId}/diagnostics (spec: notification/7.2/notification.json).
azure-devops.azure_devops_notification_subscriptions_get_subscription_templates Read read 2 Get available subscription templates. Official Azure DevOps REST API 7.2 endpoint: GET https://{service}dev.azure.com/{organization}/_apis/notification/subscriptiontemplates (spec: notification/7.2/notification.json).
azure-devops.azure_devops_operations_operations_get Read read 4 Gets an operation from the operationId using the given pluginId. Some scenarios don’t require a pluginId. If a pluginId is not included in the call then just the operationId will be used to find an operation. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/operations/{operationId} (spec: operations/7.2/operations.json).
azure-devops.azure_devops_permissions_report_permissions_report_list Read read 2 Get a list of permissions reports Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/permissionsreport (spec: permissionsReport/7.2/permissionsReport.json).
azure-devops.azure_devops_permissions_report_permissions_report_create Read read 3 Request a permissions report to be created asyncronously Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/permissionsreport (spec: permissionsReport/7.2/permissionsReport.json).
azure-devops.azure_devops_permissions_report_permissions_report_get Read read 3 Get a specific permissions report Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/permissionsreport/{id} (spec: permissionsReport/7.2/permissionsReport.json).
azure-devops.azure_devops_permissions_report_permissions_report_download_download Read read 3 Download the json results of a permissions report Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/permissionsreport/{id}/download (spec: permissionsReport/7.2/permissionsReport.json).
azure-devops.azure_devops_pipelines_pipelines_list Read read 6 Get a list of pipelines. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/pipelines (spec: pipelines/7.2/pipelines.json).
azure-devops.azure_devops_pipelines_pipelines_create Read read 4 Create a pipeline. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/pipelines (spec: pipelines/7.2/pipelines.json).
azure-devops.azure_devops_pipelines_pipelines_get Read read 5 Gets a pipeline, optionally at the specified version Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/pipelines/{pipelineId} (spec: pipelines/7.2/pipelines.json).
azure-devops.azure_devops_pipelines_preview_preview Read read 6 Queues a dry run of the pipeline and returns an object containing the final yaml. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/pipelines/{pipelineId}/preview (spec: pipelines/7.2/pipelines.json).
azure-devops.azure_devops_pipelines_runs_list Read read 4 Gets top 10000 runs for a particular pipeline. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/pipelines/{pipelineId}/runs (spec: pipelines/7.2/pipelines.json).
azure-devops.azure_devops_pipelines_runs_run_pipeline Write write 6 Runs a pipeline. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/pipelines/{pipelineId}/runs (spec: pipelines/7.2/pipelines.json).
azure-devops.azure_devops_pipelines_runs_get Read read 5 Gets a run for a particular pipeline. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/pipelines/{pipelineId}/runs/{runId} (spec: pipelines/7.2/pipelines.json).
azure-devops.azure_devops_pipelines_artifacts_get Read read 7 Get a specific artifact from a pipeline run Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/pipelines/{pipelineId}/runs/{runId}/artifacts (spec: pipelines/7.2/pipelines.json).
azure-devops.azure_devops_pipelines_logs_list Read read 6 Get a list of logs from a pipeline run. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/pipelines/{pipelineId}/runs/{runId}/logs (spec: pipelines/7.2/pipelines.json).
azure-devops.azure_devops_pipelines_logs_get Read read 7 Get a specific log from a pipeline run Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/pipelines/{pipelineId}/runs/{runId}/logs/{logId} (spec: pipelines/7.2/pipelines.json).
azure-devops.azure_devops_policy_configurations_list Read read 7 Get a list of policy configurations in a project. The 'scope' parameter for this API should not be used, except for legacy compatability reasons. It returns specifically scoped policies and does not support heirarchical nesting. Instead, use the /_apis/git/policy/configurations API, which provides first class scope filtering support. The optional `policyType` parameter can be used to filter the set of policies returned from this method. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/policy/configurations (spec: policy/7.2/policy.json).
azure-devops.azure_devops_policy_configurations_create Read read 4 Create a policy configuration of a given policy type. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/policy/configurations (spec: policy/7.2/policy.json).
azure-devops.azure_devops_policy_configurations_get Read read 4 Get a policy configuration by its ID. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/policy/configurations/{configurationId} (spec: policy/7.2/policy.json).
azure-devops.azure_devops_policy_configurations_update Read read 5 Update a policy configuration by its ID. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/_apis/policy/configurations/{configurationId} (spec: policy/7.2/policy.json).
azure-devops.azure_devops_policy_configurations_delete Read read 4 Delete a policy configuration by its ID. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/policy/configurations/{configurationId} (spec: policy/7.2/policy.json).
azure-devops.azure_devops_policy_revisions_list Read read 6 Retrieve all revisions for a given policy. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/policy/configurations/{configurationId}/revisions (spec: policy/7.2/policy.json).
azure-devops.azure_devops_policy_revisions_get Read read 5 Retrieve a specific revision of a given policy by ID. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/policy/configurations/{configurationId}/revisions/{revisionId} (spec: policy/7.2/policy.json).
azure-devops.azure_devops_policy_evaluations_list Read read 7 Retrieves a list of all the policy evaluation statuses for a specific pull request. Evaluations are retrieved using an artifact ID which uniquely identifies the pull request. To generate an artifact ID for a pull request, use this template: ``` vstfs:///CodeReview/CodeReviewId/{projectId}/{pullRequestId} ``` Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/policy/evaluations (spec: policy/7.2/policy.json).
azure-devops.azure_devops_policy_evaluations_get Read read 4 Gets the present evaluation state of a policy. Each policy which applies to a pull request will have an evaluation state which is specific to that policy running in the context of that pull request. Each evaluation is uniquely identified via a Guid. You can find all the policy evaluations for a specific pull request using the List operation of this controller. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/policy/evaluations/{evaluationId} (spec: policy/7.2/policy.json).
azure-devops.azure_devops_policy_evaluations_requeue_policy_evaluation Read read 5 Requeue the policy evaluation. Some policies define a "requeue" action which performs some policy-specific operation. You can trigger this operation by updating an existing policy evaluation and setting the PolicyEvaluationRecord.Status field to Queued. Although any policy evaluation can be requeued, at present only build policies perform any action in response. Requeueing a build policy will queue a new build to run (cancelling any existing build which is running). Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/policy/evaluations/{evaluationId} (spec: policy/7.2/policy.json).
azure-devops.azure_devops_policy_types_list Read read 3 Retrieve all available policy types. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/policy/types (spec: policy/7.2/policy.json).
azure-devops.azure_devops_policy_types_get Read read 4 Retrieve a specific policy type by ID. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/policy/types/{typeId} (spec: policy/7.2/policy.json).
azure-devops.azure_devops_processadmin_processes_export_process_template Read read 3 Returns requested process template. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processadmin/processes/export/{id} (spec: processadmin/7.2/workItemTrackingProcessTemplate.json).
azure-devops.azure_devops_processadmin_processes_import_process_template Read read 5 Imports a process from zip file. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/work/processadmin/processes/import (spec: processadmin/7.2/workItemTrackingProcessTemplate.json).
azure-devops.azure_devops_processadmin_processes_import_process_template_status Read read 3 Tells whether promote has completed for the specified promote job ID. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processadmin/processes/status/{id} (spec: processadmin/7.2/workItemTrackingProcessTemplate.json).
azure-devops.azure_devops_processadmin_behaviors_list Read read 3 Returns a list of behaviors for the process. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processadmin/{processId}/behaviors (spec: processadmin/7.2/workItemTrackingProcessTemplate.json).
azure-devops.azure_devops_processes_processes_list Read read 3 Get list of all processes including system and inherited. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processes (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_processes_create Read read 3 Creates a process. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/work/processes (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_lists_list Read read 2 Returns meta data of the picklist. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processes/lists (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_lists_create Read read 3 Creates a picklist. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/work/processes/lists (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_lists_get Read read 3 Returns a picklist. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processes/lists/{listId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_lists_update Read read 4 Updates a list. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/_apis/work/processes/lists/{listId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_lists_delete Read read 3 Removes a picklist. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/work/processes/lists/{listId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_behaviors_list Read read 4 Returns a list of all behaviors in the process. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processes/{processId}/behaviors (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_behaviors_create Read read 4 Creates a single behavior in the given process. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/work/processes/{processId}/behaviors (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_behaviors_get Read read 5 Returns a behavior of the process. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processes/{processId}/behaviors/{behaviorRefName} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_behaviors_update Read read 5 Replaces a behavior in the process. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/_apis/work/processes/{processId}/behaviors/{behaviorRefName} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_behaviors_delete Read read 4 Removes a behavior in the process. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/work/processes/{processId}/behaviors/{behaviorRefName} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_fields_list Read read 4 Returns a list of all fields in a work item type. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/fields (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_fields_add Read read 5 Adds a field to a work item type. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/fields (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_fields_get Read read 6 Returns a field in a work item type. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/fields/{fieldRefName} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_fields_update Read read 6 Updates a field in a work item type. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/fields/{fieldRefName} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_fields_remove_work_item_type_field Write write 5 Removes a field from a work item type. Does not permanently delete the field. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/fields/{fieldRefName} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_layout_get Read read 4 Gets the form layout. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/layout (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_controls_create Read read 6 Creates a control in a group. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/layout/groups/{groupId}/controls (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_controls_move_control_to_group Write write 8 Moves a control to a specified group. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/layout/groups/{groupId}/controls/{controlId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_controls_update Read read 7 Updates a control on the work item form. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/layout/groups/{groupId}/controls/{controlId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_controls_remove_control_from_group Write write 6 Removes a control from the work item form. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/layout/groups/{groupId}/controls/{controlId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_pages_add Read read 5 Adds a page to the work item form. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/layout/pages (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_pages_update Read read 5 Updates a page on the work item form Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/layout/pages (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_pages_remove_page Write write 5 Removes a page from the work item form Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/layout/pages/{pageId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_groups_add Read read 7 Adds a group to the work item form. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/layout/pages/{pageId}/sections/{sectionId}/groups (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_groups_move_group_to_section Write write 9 Moves a group to a different section. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/layout/pages/{pageId}/sections/{sectionId}/groups/{groupId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_groups_update Read read 8 Updates a group in the work item form. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/layout/pages/{pageId}/sections/{sectionId}/groups/{groupId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_groups_remove_group Write write 7 Removes a group from the work item form. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/layout/pages/{pageId}/sections/{sectionId}/groups/{groupId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_system_controls_list Read read 4 Gets edited system controls for a work item type in a process. To get all system controls (base + edited) use layout API(s) Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/layout/systemcontrols (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_system_controls_update Read read 6 Updates/adds a system control on the work item form. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/layout/systemcontrols/{controlId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_system_controls_delete Read read 5 Deletes a system control modification on the work item form. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/layout/systemcontrols/{controlId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_rules_list Read read 4 Returns a list of all rules in the work item type of the process. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/rules (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_rules_add Read read 5 Adds a rule to work item type in the process. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/rules (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_rules_get Read read 5 Returns a single rule in the work item type of the process. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/rules/{ruleId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_rules_update Read read 6 Updates a rule in the work item type of the process. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/rules/{ruleId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_rules_delete Read read 5 Removes a rule from the work item type in the process. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/rules/{ruleId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_states_list Read read 4 Returns a list of all state definitions in a work item type of the process. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/states (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_states_create Read read 5 Creates a state definition in the work item type of the process. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/states (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_states_get Read read 5 Returns a single state definition in a work item type of the process. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/states/{stateId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_states_hide_state_definition Read read 6 Hides a state definition in the work item type of the process.Only states with customizationType:System can be hidden. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/states/{stateId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_states_update Read read 6 Updates a given state definition in the work item type of the process. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/states/{stateId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_states_delete Read read 5 Removes a state definition in the work item type of the process. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workItemTypes/{witRefName}/states/{stateId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_work_item_types_list Read read 4 Returns a list of all work item types in a process. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workitemtypes (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_work_item_types_create Read read 4 Creates a work item type in the process. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workitemtypes (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_work_item_types_get Read read 5 Returns a single work item type in a process. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workitemtypes/{witRefName} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_work_item_types_update Read read 5 Updates a work item type of the process. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workitemtypes/{witRefName} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_work_item_types_delete Read read 4 Removes a work item type in the process. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workitemtypes/{witRefName} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_work_item_types_behaviors_list Read read 4 Returns a list of all behaviors for the work item type of the process. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workitemtypesbehaviors/{witRefNameForBehaviors}/behaviors (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_work_item_types_behaviors_add Read read 5 Adds a behavior to the work item type of the process. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workitemtypesbehaviors/{witRefNameForBehaviors}/behaviors (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_work_item_types_behaviors_update Read read 5 Updates a behavior for the work item type of the process. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workitemtypesbehaviors/{witRefNameForBehaviors}/behaviors (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_work_item_types_behaviors_get Read read 5 Returns a behavior for the work item type of the process. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workitemtypesbehaviors/{witRefNameForBehaviors}/behaviors/{behaviorRefName} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_work_item_types_behaviors_remove_behavior_from_work_item_type Write write 5 Removes a behavior for the work item type of the process. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/work/processes/{processId}/workitemtypesbehaviors/{witRefNameForBehaviors}/behaviors/{behaviorRefName} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_processes_get Read read 4 Get a single process of a specified ID. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/processes/{processTypeId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_processes_edit_process Read read 4 Edit a process of a specific ID. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/work/processes/{processTypeId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_processes_processes_delete Read read 3 Removes a process of a specific ID. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/work/processes/{processTypeId} (spec: processes/7.2/workItemTrackingProcess.json).
azure-devops.azure_devops_profile_profiles_get Read read 7 Gets a user profile. Official Azure DevOps REST API 7.2 endpoint: GET https://app.vssps.visualstudio.com/_apis/profile/profiles/{id} (spec: profile/7.2/profile.json).
azure-devops.azure_devops_release_definitions_get_release_definition_history Read read 4 Get revision history for a release definition Official Azure DevOps REST API 7.2 endpoint: GET https://vsrm.dev.azure.com/{organization}/{project}/_apis/Release/definitions/{definitionId}/revisions (spec: release/7.2/release.json).
azure-devops.azure_devops_release_definitions_get_definition_revision Read read 5 Get release definition for a given definitionId and revision Official Azure DevOps REST API 7.2 endpoint: GET https://vsrm.dev.azure.com/{organization}/{project}/_apis/Release/definitions/{definitionId}/revisions/{revision} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_releases_get_release_environment Read read 6 Get a release environment. Official Azure DevOps REST API 7.2 endpoint: GET https://vsrm.dev.azure.com/{organization}/{project}/_apis/Release/releases/{releaseId}/environments/{environmentId} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_releases_update_release_environment Write write 6 Update the status of a release environment Official Azure DevOps REST API 7.2 endpoint: PATCH https://vsrm.dev.azure.com/{organization}/{project}/_apis/Release/releases/{releaseId}/environments/{environmentId} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_manual_interventions_list Read read 4 List all manual interventions for a given release. Official Azure DevOps REST API 7.2 endpoint: GET https://vsrm.dev.azure.com/{organization}/{project}/_apis/Release/releases/{releaseId}/manualinterventions (spec: release/7.2/release.json).
azure-devops.azure_devops_release_manual_interventions_get Read read 5 Get manual intervention for a given release and manual intervention id. Official Azure DevOps REST API 7.2 endpoint: GET https://vsrm.dev.azure.com/{organization}/{project}/_apis/Release/releases/{releaseId}/manualinterventions/{manualInterventionId} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_manual_interventions_update Read read 6 Update manual intervention. Official Azure DevOps REST API 7.2 endpoint: PATCH https://vsrm.dev.azure.com/{organization}/{project}/_apis/Release/releases/{releaseId}/manualinterventions/{manualInterventionId} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_approvals_list Read read 11 Get a list of approvals Official Azure DevOps REST API 7.2 endpoint: GET https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/approvals (spec: release/7.2/release.json).
azure-devops.azure_devops_release_approvals_update Read read 5 Update status of an approval Official Azure DevOps REST API 7.2 endpoint: PATCH https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/approvals/{approvalId} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_definitions_list Read read 17 Get a list of release definitions. Official Azure DevOps REST API 7.2 endpoint: GET https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/definitions (spec: release/7.2/release.json).
azure-devops.azure_devops_release_definitions_create Read read 4 Create a release definition Official Azure DevOps REST API 7.2 endpoint: POST https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/definitions (spec: release/7.2/release.json).
azure-devops.azure_devops_release_definitions_update Read read 5 Update a release definition. Official Azure DevOps REST API 7.2 endpoint: PUT https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/definitions (spec: release/7.2/release.json).
azure-devops.azure_devops_release_definitions_get Read read 6 Get a release definition. Official Azure DevOps REST API 7.2 endpoint: GET https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/definitions/{definitionId} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_definitions_delete Read read 6 Delete a release definition. Official Azure DevOps REST API 7.2 endpoint: DELETE https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/definitions/{definitionId} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_deployments_list Read read 18 Get a list of deployments Official Azure DevOps REST API 7.2 endpoint: GET https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/deployments (spec: release/7.2/release.json).
azure-devops.azure_devops_release_folders_list Read read 5 Gets folders. Official Azure DevOps REST API 7.2 endpoint: GET https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/folders/{path} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_folders_create Read read 5 This method is no longer supported. Use CreateFolder with folder parameter API. Official Azure DevOps REST API 7.2 endpoint: POST https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/folders/{path} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_folders_update Read read 5 Updates an existing folder at given existing path. Official Azure DevOps REST API 7.2 endpoint: PATCH https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/folders/{path} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_folders_delete Read read 4 Deletes a definition folder for given folder name and path and all it's existing definitions. Official Azure DevOps REST API 7.2 endpoint: DELETE https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/folders/{path} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_gates_update Read read 5 Updates the gate for a deployment. Official Azure DevOps REST API 7.2 endpoint: PATCH https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/gates/{gateStepId} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_releases_list Read read 24 Get a list of releases Official Azure DevOps REST API 7.2 endpoint: GET https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/releases (spec: release/7.2/release.json).
azure-devops.azure_devops_release_releases_create Read read 4 Create a release. Official Azure DevOps REST API 7.2 endpoint: POST https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/releases (spec: release/7.2/release.json).
azure-devops.azure_devops_release_releases_get_release_revision Read read 5 Get release for a given revision number. Official Azure DevOps REST API 7.2 endpoint: GET https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/releases/{releaseId} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_releases_update_release Write write 5 Update a complete release object. Official Azure DevOps REST API 7.2 endpoint: PUT https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/releases/{releaseId} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_releases_update_release_resource Write write 5 Update few properties of a release. Official Azure DevOps REST API 7.2 endpoint: PATCH https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/releases/{releaseId} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_attachments_get_release_task_attachments Read read 8 Get the release task attachments. Official Azure DevOps REST API 7.2 endpoint: GET https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/releases/{releaseId}/environments/{environmentId}/attempts/{attemptId}/plan/{planId}/attachments/{type} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_attachments_get_release_task_attachment_content Read read 11 Get a release task attachment. Official Azure DevOps REST API 7.2 endpoint: GET https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/releases/{releaseId}/environments/{environmentId}/attempts/{attemptId}/plan/{planId}/timelines/{timelineId}/records/{recordId}/attachments/{type}/{name} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_attachments_get_task_attachments Read read 8 GetTaskAttachments API is deprecated. Use GetReleaseTaskAttachments API instead. Official Azure DevOps REST API 7.2 endpoint: GET https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/releases/{releaseId}/environments/{environmentId}/attempts/{attemptId}/timelines/{timelineId}/attachments/{type} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_attachments_get_task_attachment_content Read read 10 GetTaskAttachmentContent API is deprecated. Use GetReleaseTaskAttachmentContent API instead. Official Azure DevOps REST API 7.2 endpoint: GET https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/releases/{releaseId}/environments/{environmentId}/attempts/{attemptId}/timelines/{timelineId}/records/{recordId}/attachments/{type}/{name} (spec: release/7.2/release.json).
azure-devops.azure_devops_release_releases_get_task_log Read read 9 Gets the task log of a release as a plain text file. Official Azure DevOps REST API 7.2 endpoint: GET https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/releases/{releaseId}/environments/{environmentId}/deployPhases/{releaseDeployPhaseId}/tasks/{taskId}/logs (spec: release/7.2/release.json).
azure-devops.azure_devops_release_releases_get_logs Read read 4 Get logs for a release Id. Official Azure DevOps REST API 7.2 endpoint: GET https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/releases/{releaseId}/logs (spec: release/7.2/release.json).
azure-devops.azure_devops_resource_usage_team_project_collection_list Read read 2 GET /{organization}/_apis/resourceusage Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/resourceusage (spec: resourceUsage/7.2/resourceUsage.json).
azure-devops.azure_devops_resource_usage_project_list Read read 3 Gets the Project Level limits and Usage for a project. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/resourceusage (spec: resourceUsage/7.2/resourceUsage.json).
azure-devops.azure_devops_search_package_search_results_fetch_package_search_results Read read 3 Provides a set of results for the search text. Official Azure DevOps REST API 7.2 endpoint: POST https://almsearch.dev.azure.com/{organization}/_apis/search/packagesearchresults (spec: search/7.2/search.json).
azure-devops.azure_devops_search_code_search_results_fetch_code_search_results Read read 4 Provides a set of results for the search text. Official Azure DevOps REST API 7.2 endpoint: POST https://almsearch.dev.azure.com/{organization}/{project}/_apis/search/codesearchresults (spec: search/7.2/search.json).
azure-devops.azure_devops_search_repositories_get Read read 4 Provides status of Repository. Official Azure DevOps REST API 7.2 endpoint: GET https://almsearch.dev.azure.com/{organization}/{project}/_apis/search/status/repositories/{repository} (spec: search/7.2/search.json).
azure-devops.azure_devops_search_tfvc_get Read read 3 Provides status of TFVC Repository. Official Azure DevOps REST API 7.2 endpoint: GET https://almsearch.dev.azure.com/{organization}/{project}/_apis/search/status/tfvc (spec: search/7.2/search.json).
azure-devops.azure_devops_search_wiki_search_results_fetch_wiki_search_results Read read 4 Provides a set of results for the search request. Official Azure DevOps REST API 7.2 endpoint: POST https://almsearch.dev.azure.com/{organization}/{project}/_apis/search/wikisearchresults (spec: search/7.2/search.json).
azure-devops.azure_devops_search_work_item_search_results_fetch_work_item_search_results Read read 4 Provides a set of results for the search text. Official Azure DevOps REST API 7.2 endpoint: POST https://almsearch.dev.azure.com/{organization}/{project}/_apis/search/workitemsearchresults (spec: search/7.2/search.json).
azure-devops.azure_devops_security_access_control_entries_set_access_control_entries Read read 4 Add or update ACEs in the ACL for the provided token. The request body contains the target token, a list of [ACEs](https://docs.microsoft.com/en-us/rest/api/azure/devops/security/access-control-entries/set-access-control-entries?#accesscontrolentry) and a optional merge parameter. In the case of a collision (by identity descriptor) with an existing ACE in the ACL, the "merge" parameter determines the behavior. If set, the existing ACE has its allow and deny merged with the incoming ACE's allow and deny. If unset, the existing ACE is displaced. For optimal performance and reliability, it is strongly recommended to batch multiple ACEs in a single request rather than sending individual requests. Batching requests improves efficiency, reduces overhead, and helps ensure successful completion of your operations. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/accesscontrolentries/{securityNamespaceId} (spec: security/7.2/security.json).
azure-devops.azure_devops_security_access_control_entries_remove_access_control_entries Write write 5 Remove the specified ACEs from the ACL belonging to the specified token. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/accesscontrolentries/{securityNamespaceId} (spec: security/7.2/security.json).
azure-devops.azure_devops_security_access_control_lists_query Read read 7 Return a list of access control lists for the specified security namespace and token. All ACLs in the security namespace will be retrieved if no optional parameters are provided. Note that the response will include all project IDs, including projects the current user does not have access to. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/accesscontrollists/{securityNamespaceId} (spec: security/7.2/security.json).
azure-devops.azure_devops_security_access_control_lists_set_access_control_lists Read read 4 Create or update one or more access control lists. All data that currently exists for the ACLs supplied will be overwritten. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/accesscontrollists/{securityNamespaceId} (spec: security/7.2/security.json).
azure-devops.azure_devops_security_access_control_lists_remove_access_control_lists Write write 5 Remove access control lists under the specfied security namespace. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/accesscontrollists/{securityNamespaceId} (spec: security/7.2/security.json).
azure-devops.azure_devops_security_permissions_has_permissions Read read 7 Evaluates whether the caller has the specified permissions on the specified set of security tokens. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/permissions/{securityNamespaceId}/{permissions} (spec: security/7.2/security.json).
azure-devops.azure_devops_security_permissions_remove_permission Write write 6 Removes the specified permissions on a security token for a user or group. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/permissions/{securityNamespaceId}/{permissions} (spec: security/7.2/security.json).
azure-devops.azure_devops_security_permissions_has_permissions_batch Read read 3 Evaluates multiple permissions for the calling user. Note: This method does not aggregate the results, nor does it short-circuit if one of the permissions evaluates to false. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/security/permissionevaluationbatch (spec: security/7.2/security.json).
azure-devops.azure_devops_security_security_namespaces_query Read read 4 List all security namespaces or just the specified namespace. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/securitynamespaces/{securityNamespaceId} (spec: security/7.2/security.json).
azure-devops.azure_devops_security_roles_roleassignments_list Read read 4 Get role assignments for the resource Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/securityroles/scopes/{scopeId}/roleassignments/resources/{resourceId} (spec: securityRoles/7.2/securityRoles.json).
azure-devops.azure_devops_security_roles_roleassignments_set_role_assignments Read read 6 Set role assignments on a resource Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/_apis/securityroles/scopes/{scopeId}/roleassignments/resources/{resourceId} (spec: securityRoles/7.2/securityRoles.json).
azure-devops.azure_devops_security_roles_roleassignments_remove_role_assignments Write write 5 PATCH /{organization}/_apis/securityroles/scopes/{scopeId}/roleassignments/resources/{resourceId} Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/securityroles/scopes/{scopeId}/roleassignments/resources/{resourceId} (spec: securityRoles/7.2/securityRoles.json).
azure-devops.azure_devops_security_roles_roleassignments_set_role_assignment Read read 6 Set role assignment on a resource Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/_apis/securityroles/scopes/{scopeId}/roleassignments/resources/{resourceId}/{identityId} (spec: securityRoles/7.2/securityRoles.json).
azure-devops.azure_devops_security_roles_roleassignments_remove_role_assignment Write write 5 Remove the role assignment on a resource Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/securityroles/scopes/{scopeId}/roleassignments/resources/{resourceId}/{identityId} (spec: securityRoles/7.2/securityRoles.json).
azure-devops.azure_devops_security_roles_roledefinitions_list Read read 3 GET /{organization}/_apis/securityroles/scopes/{scopeId}/roledefinitions Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/securityroles/scopes/{scopeId}/roledefinitions (spec: securityRoles/7.2/securityRoles.json).
azure-devops.azure_devops_service_endpoint_endpoints_create Read read 3 Creates a new service endpoint Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/serviceendpoint/endpoints (spec: serviceEndpoint/7.2/serviceEndpoint.json).
azure-devops.azure_devops_service_endpoint_endpoints_update_service_endpoints Write write 3 Update the service endpoints. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/_apis/serviceendpoint/endpoints (spec: serviceEndpoint/7.2/serviceEndpoint.json).
azure-devops.azure_devops_service_endpoint_endpoints_update_service_endpoint Write write 5 Update the service endpoint Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/_apis/serviceendpoint/endpoints/{endpointId} (spec: serviceEndpoint/7.2/serviceEndpoint.json).
azure-devops.azure_devops_service_endpoint_endpoints_share_service_endpoint Read read 4 Share service endpoint across projects Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/_apis/serviceendpoint/endpoints/{endpointId} (spec: serviceEndpoint/7.2/serviceEndpoint.json).
azure-devops.azure_devops_service_endpoint_endpoints_delete Read read 5 Delete a service endpoint Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/_apis/serviceendpoint/endpoints/{endpointId} (spec: serviceEndpoint/7.2/serviceEndpoint.json).
azure-devops.azure_devops_service_endpoint_types_get_service_endpoint_types Read read 4 Get service endpoint types. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/serviceendpoint/types (spec: serviceEndpoint/7.2/serviceEndpoint.json).
azure-devops.azure_devops_service_endpoint_types_get_filtered_service_endpoint_types Read read 3 Get service endpoint types with passed types filter. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/serviceendpoint/types (spec: serviceEndpoint/7.2/serviceEndpoint.json).
azure-devops.azure_devops_service_endpoint_endpointproxy_query Read read 4 Use ExecuteServiceEndpointRequest API Instead Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/serviceendpoint/endpointproxy (spec: serviceEndpoint/7.2/serviceEndpoint.json).
azure-devops.azure_devops_service_endpoint_endpoints_get_service_endpoints_by_names Read read 9 Get the service endpoints by name. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/serviceendpoint/endpoints (spec: serviceEndpoint/7.2/serviceEndpoint.json).
azure-devops.azure_devops_service_endpoint_endpoints_get_service_endpoints_with_refreshed_authentication Read read 5 Gets the service endpoints and patch new authorization parameters Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/serviceendpoint/endpoints (spec: serviceEndpoint/7.2/serviceEndpoint.json).
azure-devops.azure_devops_service_endpoint_endpoints_get Read read 6 Get the service endpoint details. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/serviceendpoint/endpoints/{endpointId} (spec: serviceEndpoint/7.2/serviceEndpoint.json).
azure-devops.azure_devops_service_endpoint_executionhistory_list Read read 6 Get service endpoint execution records. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/serviceendpoint/{endpointId}/executionhistory (spec: serviceEndpoint/7.2/serviceEndpoint.json).
azure-devops.azure_devops_status_health_get Read read 3 Queries status information for the service all-up, or scoped to a particular service and/or geography Official Azure DevOps REST API 7.2 endpoint: GET https://status.dev.azure.com/_apis/status/health (spec: status/7.2/status.json).
azure-devops.azure_devops_symbol_availability_check_availability Read read 2 Check the availability of symbol service. This includes checking for feature flag, and possibly license in future. Note this is NOT an anonymous endpoint, and the caller will be redirected to authentication before hitting it. Official Azure DevOps REST API 7.2 endpoint: GET https://artifacts.dev.azure.com/{organization}/_apis/symbol/availability (spec: symbol/7.2/symbol.json).
azure-devops.azure_devops_symbol_client_get Read read 3 Get the client package. Official Azure DevOps REST API 7.2 endpoint: GET https://artifacts.dev.azure.com/{organization}/_apis/symbol/client/{clientType} (spec: symbol/7.2/symbol.json).
azure-devops.azure_devops_symbol_requests_get_requests_request_name Read read 3 Get a symbol request by request name. Official Azure DevOps REST API 7.2 endpoint: GET https://artifacts.dev.azure.com/{organization}/_apis/symbol/requests (spec: symbol/7.2/symbol.json).
azure-devops.azure_devops_symbol_requests_create_requests Write write 3 Create a new symbol request. Official Azure DevOps REST API 7.2 endpoint: POST https://artifacts.dev.azure.com/{organization}/_apis/symbol/requests (spec: symbol/7.2/symbol.json).
azure-devops.azure_devops_symbol_requests_update_requests_request_name Write write 4 Update a symbol request by request name. Official Azure DevOps REST API 7.2 endpoint: PATCH https://artifacts.dev.azure.com/{organization}/_apis/symbol/requests (spec: symbol/7.2/symbol.json).
azure-devops.azure_devops_symbol_requests_delete_requests_request_name Write write 4 Delete a symbol request by request name. Official Azure DevOps REST API 7.2 endpoint: DELETE https://artifacts.dev.azure.com/{organization}/_apis/symbol/requests (spec: symbol/7.2/symbol.json).
azure-devops.azure_devops_symbol_requests_get_requests_request_id Read read 3 Get a symbol request by request identifier. Official Azure DevOps REST API 7.2 endpoint: GET https://artifacts.dev.azure.com/{organization}/_apis/symbol/requests/{requestId} (spec: symbol/7.2/symbol.json).
azure-devops.azure_devops_symbol_requests_create_requests_request_id_debug_entries Write write 5 Create debug entries for a symbol request as specified by its identifier. Official Azure DevOps REST API 7.2 endpoint: POST https://artifacts.dev.azure.com/{organization}/_apis/symbol/requests/{requestId} (spec: symbol/7.2/symbol.json).
azure-devops.azure_devops_symbol_requests_update_requests_request_id Write write 4 Update a symbol request by request identifier. Official Azure DevOps REST API 7.2 endpoint: PATCH https://artifacts.dev.azure.com/{organization}/_apis/symbol/requests/{requestId} (spec: symbol/7.2/symbol.json).
azure-devops.azure_devops_symbol_requests_delete_requests_request_id Write write 4 Delete a symbol request by request identifier. Official Azure DevOps REST API 7.2 endpoint: DELETE https://artifacts.dev.azure.com/{organization}/_apis/symbol/requests/{requestId} (spec: symbol/7.2/symbol.json).
azure-devops.azure_devops_symbol_contents_get Read read 4 Get a stitched debug entry for a symbol request as specified by symbol request identifier and debug entry identifier. Official Azure DevOps REST API 7.2 endpoint: GET https://artifacts.dev.azure.com/{organization}/_apis/symbol/requests/{requestId}/contents/{debugEntryId} (spec: symbol/7.2/symbol.json).
azure-devops.azure_devops_symbol_symsrv_get Read read 3 Given a client key, returns the best matched debug entry. Official Azure DevOps REST API 7.2 endpoint: GET https://artifacts.dev.azure.com/{organization}/_apis/symbol/symsrv/{debugEntryClientKey} (spec: symbol/7.2/symbol.json).
azure-devops.azure_devops_test_points_list Write write 12 Get a list of test points. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/test/Plans/{planId}/Suites/{suiteId}/points (spec: test/7.2/test.json).
azure-devops.azure_devops_test_points_get_point Write write 7 Get a test point. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/test/Plans/{planId}/Suites/{suiteId}/points/{pointIds} (spec: test/7.2/test.json).
azure-devops.azure_devops_test_points_update Write write 7 Update test points. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/test/Plans/{planId}/Suites/{suiteId}/points/{pointIds} (spec: test/7.2/test.json).
azure-devops.azure_devops_test_test_suites_list Write write 5 Get all test cases in a suite. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/test/Plans/{planId}/suites/{suiteId}/testcases (spec: test/7.2/test.json).
azure-devops.azure_devops_test_test_suites_get Write write 6 Get a specific test case in a test suite with test case id. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/test/Plans/{planId}/suites/{suiteId}/testcases/{testCaseIds} (spec: test/7.2/test.json).
azure-devops.azure_devops_test_test_suites_add Write write 7 Add test cases to suite. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/test/Plans/{planId}/suites/{suiteId}/testcases/{testCaseIds} (spec: test/7.2/test.json).
azure-devops.azure_devops_test_test_suites_update Write write 7 Updates the properties of the test case association in a suite. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/test/Plans/{planId}/suites/{suiteId}/testcases/{testCaseIds} (spec: test/7.2/test.json).
azure-devops.azure_devops_test_test_suites_remove_test_cases_from_suite_url Write write 6 The test points associated with the test cases are removed from the test suite. The test case work item is not deleted from the system. See test cases resource to delete a test case permanently. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/test/Plans/{planId}/suites/{suiteId}/testcases/{testCaseIds} (spec: test/7.2/test.json).
azure-devops.azure_devops_test_test_history_query Write write 4 Get history of a test method using TestHistoryQuery Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/test/Results/testhistory (spec: test/7.2/test.json).
azure-devops.azure_devops_test_attachments_get_test_result_attachments Write write 5 Get list of test result attachments reference. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/test/Runs/{runId}/Results/{testCaseResultId}/attachments (spec: test/7.2/test.json).
azure-devops.azure_devops_test_attachments_create_test_result_attachment Write write 6 Attach a file to a test result. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/test/Runs/{runId}/Results/{testCaseResultId}/attachments (spec: test/7.2/test.json).
azure-devops.azure_devops_test_attachments_get_test_result_attachment_zip Write write 6 Download a test result attachment by its ID. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/test/Runs/{runId}/Results/{testCaseResultId}/attachments/{attachmentId} (spec: test/7.2/test.json).
azure-devops.azure_devops_test_iterations_list Write write 6 Get iterations for a result Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/test/Runs/{runId}/Results/{testCaseResultId}/iterations (spec: test/7.2/test.json).
azure-devops.azure_devops_test_iterations_get Write write 7 Get iteration for a result Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/test/Runs/{runId}/Results/{testCaseResultId}/iterations/{iterationId} (spec: test/7.2/test.json).
azure-devops.azure_devops_test_attachments_get_test_run_attachments Write write 4 Get list of test run attachments reference. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/test/Runs/{runId}/attachments (spec: test/7.2/test.json).
azure-devops.azure_devops_test_attachments_create_test_run_attachment Write write 5 Attach a file to a test run. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/test/Runs/{runId}/attachments (spec: test/7.2/test.json).
azure-devops.azure_devops_test_attachments_get_test_run_attachment_zip Write write 5 Download a test run attachment by its ID. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/test/Runs/{runId}/attachments/{attachmentId} (spec: test/7.2/test.json).
azure-devops.azure_devops_test_code_coverage_get_test_run_code_coverage Write write 5 Get code coverage data for a test run Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/test/Runs/{runId}/codecoverage (spec: test/7.2/test.json).
azure-devops.azure_devops_test_results_list Write write 8 Get test results for a test run. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/test/Runs/{runId}/results (spec: test/7.2/test.json).
azure-devops.azure_devops_test_results_add Write write 5 Add test results to a test run. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/test/Runs/{runId}/results (spec: test/7.2/test.json).
azure-devops.azure_devops_test_results_update Write write 5 Update test results in a test run. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/test/Runs/{runId}/results (spec: test/7.2/test.json).
azure-devops.azure_devops_test_results_get Write write 6 Get a test result for a test run. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/test/Runs/{runId}/results/{testCaseResultId} (spec: test/7.2/test.json).
azure-devops.azure_devops_test_code_coverage_get_build_code_coverage Write write 5 Get code coverage data for a build. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/test/codecoverage (spec: test/7.2/test.json).
azure-devops.azure_devops_test_points_get_points_by_query Write write 6 Get test points using query. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/test/points (spec: test/7.2/test.json).
azure-devops.azure_devops_test_result_retention_settings_get Write write 3 Get test result retention settings Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/test/resultretentionsettings (spec: test/7.2/test.json).
azure-devops.azure_devops_test_result_retention_settings_update Write write 4 Update test result retention settings Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/test/resultretentionsettings (spec: test/7.2/test.json).
azure-devops.azure_devops_test_runs_list Write write 11 Get a list of test runs. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/test/runs (spec: test/7.2/test.json).
azure-devops.azure_devops_test_runs_create Write write 4 Create new test run. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/test/runs (spec: test/7.2/test.json).
azure-devops.azure_devops_test_runs_get_test_run_by_id Write write 5 Get a test run by its ID. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/test/runs/{runId} (spec: test/7.2/test.json).
azure-devops.azure_devops_test_runs_update Write write 5 Update test run by its ID. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/test/runs/{runId} (spec: test/7.2/test.json).
azure-devops.azure_devops_test_runs_delete Write write 4 Delete a test run by its ID. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/test/runs/{runId} (spec: test/7.2/test.json).
azure-devops.azure_devops_test_runs_get_test_run_statistics Write write 4 Get test run statistics , used when we want to get summary of a run by outcome. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/test/runs/{runId}/Statistics (spec: test/7.2/test.json).
azure-devops.azure_devops_test_test_cases_delete Write write 4 Delete a test case. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/test/testcases/{testCaseId} (spec: test/7.2/test.json).
azure-devops.azure_devops_test_session_list Write write 9 Get a list of test sessions Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/test/session (spec: test/7.2/test.json).
azure-devops.azure_devops_test_session_create Write write 5 Create a test session Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/{team}/_apis/test/session (spec: test/7.2/test.json).
azure-devops.azure_devops_test_session_update Write write 5 Update a test session Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/{team}/_apis/test/session (spec: test/7.2/test.json).
azure-devops.azure_devops_test_plan_test_suites_get_suites_by_test_case_id Write write 3 Find the list of all test suites in which a given test case is present. This is helpful if you need to find out which test suites are using a test case, when you need to make changes to a test case. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/testplan/suites (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_plan_clone_clone_test_plan Write write 5 Clone test plan Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/testplan/Plans/CloneOperation (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_plan_clone_get Write write 4 Get clone information. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/testplan/Plans/CloneOperation/{cloneOperationId} (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_suite_test_case_get_test_case_list Write write 13 Get Test Case List return those test cases which have all the configuration Ids as mentioned in the optional parameter. If configuration Ids is null, it return all the test cases Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/testplan/Plans/{planId}/Suites/{suiteId}/TestCase (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_suite_test_case_add Write write 6 Add test cases to a suite with specified configurations Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/testplan/Plans/{planId}/Suites/{suiteId}/TestCase (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_suite_test_case_update Write write 6 Update the configurations for test cases Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/testplan/Plans/{planId}/Suites/{suiteId}/TestCase (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_suite_test_case_remove_test_cases_list_from_suite Write write 6 Removes test cases from a suite based on the list of test case Ids provided. This API can be used to remove a larger number of test cases. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/testplan/Plans/{planId}/Suites/{suiteId}/TestCase (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_suite_test_case_get_test_case Write write 8 Get a particular Test Case from a Suite. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/testplan/Plans/{planId}/Suites/{suiteId}/TestCase/{testCaseId} (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_point_get_points Write write 8 Get a particular Test Point from a suite. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/testplan/Plans/{planId}/Suites/{suiteId}/TestPoint (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_point_update Write write 8 Update Test Points. This is used to Reset test point to active, update the outcome of a test point or update the tester of a test point Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/testplan/Plans/{planId}/Suites/{suiteId}/TestPoint (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_suites_get_test_suites_for_plan Write write 7 Get test suites for plan. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/testplan/Plans/{planId}/suites (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_suites_create Write write 5 Create test suite. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/testplan/Plans/{planId}/suites (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_suites_get Write write 6 Get test suite by suite id. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/testplan/Plans/{planId}/suites/{suiteId} (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_suites_update Write write 6 Update test suite. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/testplan/Plans/{planId}/suites/{suiteId} (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_suites_delete Write write 5 Delete test suite. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/testplan/Plans/{planId}/suites/{suiteId} (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_suite_clone_clone_test_suite Write write 5 Clone test suite Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/testplan/Suites/CloneOperation (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_suite_clone_get Write write 4 Get clone information. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/testplan/Suites/CloneOperation/{cloneOperationId} (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_case_clone_clone_test_case Write write 4 POST /{organization}/{project}/_apis/testplan/TestCases/CloneTestCaseOperation Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/testplan/TestCases/CloneTestCaseOperation (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_case_clone_get Write write 4 Get clone information. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/testplan/TestCases/CloneTestCaseOperation/{cloneOperationId} (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_configurations_list Write write 4 Get a list of test configurations. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/testplan/configurations (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_configurations_create Write write 4 Create a test configuration. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/testplan/configurations (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_configurations_update Write write 5 Update a test configuration by its ID. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/testplan/configurations (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_configurations_delete Write write 4 Delete a test configuration by its ID. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/testplan/configurations (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_configurations_get Write write 4 Get a test configuration Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/testplan/configurations/{testConfigurationId} (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_plans_list Write write 7 Get a list of test plans Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/testplan/plans (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_plans_create Write write 4 Create a test plan. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/testplan/plans (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_plans_get Write write 4 Get a test plan by Id. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/testplan/plans/{planId} (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_plans_update Write write 5 Update a test plan. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/testplan/plans/{planId} (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_plans_delete Write write 4 Delete a test plan. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/testplan/plans/{planId} (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_suite_recycle_bin_operations_get_deleted_test_suites_for_plan Write write 7 Get Deleted Test Suites for a Test Plan. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/testplan/recycleBin/TestPlan/{planId}/testsuite (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_plan_recycle_bin_list Write write 4 Get a list of deleted test plans Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/testplan/recycleBin/testplan (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_plan_recycle_bin_restore_deleted_test_plan Write write 5 Restores the deleted test plan Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/testplan/recycleBin/testplan/{planId} (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_suite_recycle_bin_operations_get_deleted_test_suites_for_project Write write 6 Get Deleted Test Suites within a Project. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/testplan/recycleBin/testsuite (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_suite_recycle_bin_operations_restore_deleted_test_suite Write write 5 Restores the deleted test suite Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/testplan/recycleBin/testsuite/{suiteId} (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_suite_entry_list Write write 5 Get a list of test suite entries in the test suite. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/testplan/suiteentry/{suiteId} (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_suite_entry_reorder_suite_entries Write write 5 Reorder test suite entries in the test suite. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/testplan/suiteentry/{suiteId} (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_test_cases_delete Write write 4 Delete a test case. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/testplan/testcases/{testCaseId} (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_variables_list Write write 4 Get a list of test variables. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/testplan/variables (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_variables_create Write write 4 Create a test variable. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/testplan/variables (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_variables_get Write write 4 Get a test variable by its ID. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/testplan/variables/{testVariableId} (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_variables_update Write write 5 Update a test variable by its ID. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/testplan/variables/{testVariableId} (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_plan_variables_delete Write write 4 Delete a test variable by its ID. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/testplan/variables/{testVariableId} (spec: testPlan/7.2/testPlan.json).
azure-devops.azure_devops_test_results_codecoverage_get Write write 5 http://(tfsserver):8080/tfs/DefaultCollection/_apis/test/CodeCoverage?buildId=10&deltaBuildId=9 Request: build id and delta build id (optional) Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/codecoverage (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_codecoverage_update Write write 5 http://(tfsserver):8080/tfs/DefaultCollection/_apis/test/CodeCoverage?buildId=10 Request: Json of code coverage summary Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/codecoverage (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_filecoverage_get Write write 4 Get file coverage for the specified file Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/codecoverage/filecoverage (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_codecoverage_fetch_source_code_coverage_report Write write 4 GET /{organization}/{project}/_apis/testresults/codecoverage/sourceview Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/codecoverage/sourceview (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_status_get Write write 6 <p>Gets the coverage status for the last successful build of a definition, optionally scoped to a specific branch</p> Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/codecoverage/status/{definition} (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_extensionfields_query Write write 4 Returns List of custom test fields for the given custom test field scope. Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/extensionfields (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_extensionfields_add Write write 4 Creates custom test fields based on the data provided. Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/extensionfields (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_extensionfields_update Write write 4 Returns details of the custom test field which is updated. Official Azure DevOps REST API 7.2 endpoint: PATCH https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/extensionfields (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_extensionfields_delete Write write 4 Returns details of the custom test field for the specified testExtensionFieldId. Official Azure DevOps REST API 7.2 endpoint: DELETE https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/extensionfields/{testExtensionFieldId} (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_metrics_get Write write 9 Get summary of test results. Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/metrics (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_resultdetailsbybuild_get Write write 10 GET /{organization}/{project}/_apis/testresults/resultdetailsbybuild Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/resultdetailsbybuild (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_resultdetailsbyrelease_get Write write 11 GET /{organization}/{project}/_apis/testresults/resultdetailsbyrelease Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/resultdetailsbyrelease (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_resultgroupsbybuild_list Write write 7 GET /{organization}/{project}/_apis/testresults/resultgroupsbybuild Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/resultgroupsbybuild (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_resultgroupsbyrelease_list Write write 8 GET /{organization}/{project}/_apis/testresults/resultgroupsbyrelease Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/resultgroupsbyrelease (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_results_get_test_results_by_query Write write 4 POST /{organization}/{project}/_apis/testresults/results Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/results (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_history_query Write write 4 POST /{organization}/{project}/_apis/testresults/results/history Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/results/history (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_results_get_test_results_by_query_wiql Write write 8 POST /{organization}/{project}/_apis/testresults/results/query Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/results/query (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_result_meta_data_query Write write 5 Get list of test Result meta data details for corresponding testcasereferenceId Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/results/resultmetadata (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_result_meta_data_update Write write 5 Update properties of test result meta data Official Azure DevOps REST API 7.2 endpoint: PATCH https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/results/resultmetadata/{testCaseReferenceId} (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_test_history_query Write write 4 Get history of a test method using TestHistoryQuery Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/results/testhistory (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_workitems_query_test_result_work_items Write write 9 Query Test Result WorkItems based on filter Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/results/workitems (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_resultsbybuild_list Write write 8 GET /{organization}/{project}/_apis/testresults/resultsbybuild Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/resultsbybuild (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_resultsbypipeline_list Write write 11 Get a list of results. Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/resultsbypipeline (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_resultsbyrelease_list Write write 9 GET /{organization}/{project}/_apis/testresults/resultsbyrelease Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/resultsbyrelease (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_resultsgroup_details_test_results_group_details Write write 9 Get all the available groups details and for these groups get failed and aborted results. Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/resultsgroupdetails (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_resultsummarybybuild_query Write write 13 GET /{organization}/{project}/_apis/testresults/resultsummarybybuild Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/resultsummarybybuild (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_resultsummarybypipeline_query Write write 8 Get summary of test results. Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/resultsummarybypipeline (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_resultsummarybyrelease_query_test_results_report_for_release Write write 17 GET /{organization}/{project}/_apis/testresults/resultsummarybyrelease Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/resultsummarybyrelease (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_resultsummarybyrelease_query_test_results_summary_for_releases Write write 4 POST /{organization}/{project}/_apis/testresults/resultsummarybyrelease Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/resultsummarybyrelease (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_resultsummarybyrequirement_query Write write 5 POST /{organization}/{project}/_apis/testresults/resultsummarybyrequirement Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/resultsummarybyrequirement (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_result_trend_by_build_query Write write 4 POST /{organization}/{project}/_apis/testresults/resulttrendbybuild Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/resulttrendbybuild (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_result_trend_by_release_query Write write 4 POST /{organization}/{project}/_apis/testresults/resulttrendbyrelease Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/resulttrendbyrelease (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_runs_list Write write 11 GET /{organization}/{project}/_apis/testresults/runs Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_runs_create Write write 4 POST /{organization}/{project}/_apis/testresults/runs Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_runs_get Write write 6 GET /{organization}/{project}/_apis/testresults/runs/{runId} Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId} (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_runs_update Write write 5 PATCH /{organization}/{project}/_apis/testresults/runs/{runId} Official Azure DevOps REST API 7.2 endpoint: PATCH https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId} (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_runs_delete Write write 4 DELETE /{organization}/{project}/_apis/testresults/runs/{runId} Official Azure DevOps REST API 7.2 endpoint: DELETE https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId} (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_attachments_get_test_run_attachments Write write 4 GET /{organization}/{project}/_apis/testresults/runs/{runId}/attachments Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/attachments (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_attachments_create_test_run_attachment Write write 5 POST /{organization}/{project}/_apis/testresults/runs/{runId}/attachments Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/attachments (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_attachments_get_test_run_attachment_zip Write write 5 Returns a test run attachment Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/attachments/{attachmentId} (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_attachments_delete_test_run_attachment Write write 5 DELETE /{organization}/{project}/_apis/testresults/runs/{runId}/attachments/{attachmentId} Official Azure DevOps REST API 7.2 endpoint: DELETE https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/attachments/{attachmentId} (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_codecoverage_get_test_run_code_coverage Write write 5 GET /{organization}/{project}/_apis/testresults/runs/{runId}/codecoverage Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/codecoverage (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_message_logs_list Write write 4 Get test run message logs Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/messagelogs (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_result_document_publish_test_result_document Write write 5 POST /{organization}/{project}/_apis/testresults/runs/{runId}/resultdocument Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/resultdocument (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_results_get_test_results Write write 9 GET /{organization}/{project}/_apis/testresults/runs/{runId}/results Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/results (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_results_add Write write 5 POST /{organization}/{project}/_apis/testresults/runs/{runId}/results Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/results (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_results_update Write write 5 PATCH /{organization}/{project}/_apis/testresults/runs/{runId}/results Official Azure DevOps REST API 7.2 endpoint: PATCH https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/results (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testlog_get_test_result_logs Write write 11 Get list of test result attachments reference Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/results/{resultId}/testlog (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testlogstoreendpoint_get_test_log_store_endpoint_details_for_result_log Write write 7 Get SAS Uri of a test results attachment Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/results/{resultId}/testlogstoreendpoint (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testlogstoreendpoint_test_log_store_endpoint_details_for_result Write write 9 Create empty file for a result and Get Sas uri for the file Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/results/{resultId}/testlogstoreendpoint (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_attachments_get_test_result_attachments Write write 5 GET /{organization}/{project}/_apis/testresults/runs/{runId}/results/{testCaseResultId}/attachments Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/results/{testCaseResultId}/attachments (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_attachments_create_test_result_attachment Write write 6 POST /{organization}/{project}/_apis/testresults/runs/{runId}/results/{testCaseResultId}/attachments Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/results/{testCaseResultId}/attachments (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_attachments_get_test_result_attachment_zip Write write 6 Returns a test result attachment Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/results/{testCaseResultId}/attachments/{attachmentId} (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_attachments_delete_test_result_attachment Write write 6 DELETE /{organization}/{project}/_apis/testresults/runs/{runId}/results/{testCaseResultId}/attachments/{attachmentId} Official Azure DevOps REST API 7.2 endpoint: DELETE https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/results/{testCaseResultId}/attachments/{attachmentId} (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_bugs_list Write write 5 GET /{organization}/{project}/_apis/testresults/runs/{runId}/results/{testCaseResultId}/bugs Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/results/{testCaseResultId}/bugs (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_workitems_list Write write 5 GET /{organization}/{project}/_apis/testresults/runs/{runId}/results/{testCaseResultId}/workitems Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/results/{testCaseResultId}/workitems (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_results_get_test_result_by_id Write write 6 GET /{organization}/{project}/_apis/testresults/runs/{runId}/results/{testResultId} Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/results/{testResultId} (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_similar_test_results_list Write write 8 Gets the list of results whose failure matches with the provided one. Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/results/{testResultId}/similartestresults (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_runsummary_get Write write 4 Get test run summary, used when we want to get summary of a run by outcome. Test run should be in completed state. Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/runsummary (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_statistics_get Write write 4 Get test run statistics , used when we want to get summary of a run by outcome. Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/statistics (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_tags_update Write write 5 Update tags of a run, Tags can be Added and Deleted Official Azure DevOps REST API 7.2 endpoint: PATCH https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/tags (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testattachments_list Write write 4 Returns a list of attachments for the specified runId from the LogStore. Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/testattachments (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testattachments_create_test_run_log_store_attachment Write write 5 Creates an attachment in the LogStore for the specified runId. Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/testattachments (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testattachments_delete Write write 5 Deletes the attachment with the specified filename for the specified runId from the LogStore. Official Azure DevOps REST API 7.2 endpoint: DELETE https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/testattachments (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testlog_get_test_run_logs Write write 10 Get list of test run attachments reference Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/testlog (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testlogstoreendpoint_get_test_log_store_endpoint_details_for_run_log Write write 6 Get SAS Uri of a test run attachment Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/testlogstoreendpoint (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testlogstoreendpoint_test_log_store_endpoint_details_for_run Write write 8 Create empty file for a run and Get Sas uri for the file Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/runs/{runId}/testlogstoreendpoint (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_settings_get Write write 4 Get TestResultsSettings data Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/settings (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_settings_update Write write 4 Update project settings of test results Official Azure DevOps REST API 7.2 endpoint: PATCH https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/settings (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_tags_get_test_tags_for_build Write write 4 Get all the tags in a build. Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/tags (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_tagsummary_get_test_tag_summary_for_build Write write 4 Get all the tags in a build. Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/tagsummary (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testai_complete_git_hub_auth Write write 4 OAuth callback endpoint. GitHub redirects here after user authorizes. Exchanges the authorization code for tokens and stores them in TCM StrongBox. Requires the callback URL to be registered in the GitHub OAuth App settings. Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/testai/completegithubauth (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testfailuretype_list Write write 3 Returns the list of test failure types. Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/testfailuretype (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testfailuretype_create Write write 4 Creates a new test failure type Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/testfailuretype (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testfailuretype_delete Write write 4 Deletes a test failure type with specified failureTypeId Official Azure DevOps REST API 7.2 endpoint: DELETE https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/testfailuretype/{failureTypeId} (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testlog_get_test_logs_for_build Write write 10 Get list of build attachments reference Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/testlog (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testlogstoreendpoint_get_test_log_store_endpoint_details_for_build_log Write write 6 Get SAS Uri of a build attachment Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/testlogstoreendpoint (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testlogstoreendpoint_test_log_store_endpoint_details_for_build Write write 6 Create and Get sas uri of the build container Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/testlogstoreendpoint (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_workitems_add Write write 4 POST /{organization}/{project}/_apis/testresults/testmethods/workitems Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/testmethods/workitems (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_workitems_delete Write write 5 DELETE /{organization}/{project}/_apis/testresults/testmethods/workitems Official Azure DevOps REST API 7.2 endpoint: DELETE https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/testmethods/workitems (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testsettings_get Write write 4 GET /{organization}/{project}/_apis/testresults/testsettings Official Azure DevOps REST API 7.2 endpoint: GET https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/testsettings (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testsettings_create Write write 4 POST /{organization}/{project}/_apis/testresults/testsettings Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/testsettings (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testsettings_delete Write write 4 DELETE /{organization}/{project}/_apis/testresults/testsettings Official Azure DevOps REST API 7.2 endpoint: DELETE https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/testsettings (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_test_results_testattachments_create_build_attachment_in_log_store Write write 5 Creates an attachment in the LogStore for the specified buildId. Official Azure DevOps REST API 7.2 endpoint: POST https://vstmr.dev.azure.com/{organization}/{project}/_apis/testresults/uploadbuildattachments/{buildId} (spec: testResults/7.2/testResults.json).
azure-devops.azure_devops_tfvc_changesets_get_changeset_changes Read read 6 Retrieve Tfvc changes for a given changeset. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/tfvc/changesets/{id}/changes (spec: tfvc/7.2/tfvc.json).
azure-devops.azure_devops_tfvc_changesets_get_changeset_work_items Read read 3 Retrieves the work items associated with a particular changeset. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/tfvc/changesets/{id}/workItems (spec: tfvc/7.2/tfvc.json).
azure-devops.azure_devops_tfvc_changesets_get_batched_changesets Read read 3 Returns changesets for a given list of changeset Ids. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/_apis/tfvc/changesetsbatch (spec: tfvc/7.2/tfvc.json).
azure-devops.azure_devops_tfvc_labels_get_label_items Read read 5 Get items under a label. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/tfvc/labels/{labelId}/items (spec: tfvc/7.2/tfvc.json).
azure-devops.azure_devops_tfvc_shelvesets_get Read read 10 Get a single deep shelveset. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/tfvc/shelvesets (spec: tfvc/7.2/tfvc.json).
azure-devops.azure_devops_tfvc_shelvesets_get_shelveset_changes Read read 5 Get changes included in a shelveset. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/tfvc/shelvesets/changes (spec: tfvc/7.2/tfvc.json).
azure-devops.azure_devops_tfvc_shelvesets_get_shelveset_work_items Read read 3 Get work items associated with a shelveset. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/tfvc/shelvesets/workitems (spec: tfvc/7.2/tfvc.json).
azure-devops.azure_devops_tfvc_branches_get_branch_refs Read read 6 Get branch hierarchies below the specified scopePath Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/tfvc/branches (spec: tfvc/7.2/tfvc.json).
azure-devops.azure_devops_tfvc_changesets_get_changesets Read read 16 Retrieve Tfvc Changesets Note: This is a new version of the GetChangesets API that doesn't expose the unneeded queryParams present in the 1.0 version of the API. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/tfvc/changesets (spec: tfvc/7.2/tfvc.json).
azure-devops.azure_devops_tfvc_changesets_create Read read 4 Create a new changeset. Accepts TfvcChangeset as JSON body Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/tfvc/changesets (spec: tfvc/7.2/tfvc.json).
azure-devops.azure_devops_tfvc_changesets_get Read read 21 Retrieve a Tfvc Changeset Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/tfvc/changesets/{id} (spec: tfvc/7.2/tfvc.json).
azure-devops.azure_devops_tfvc_items_get_items_batch Read read 4 Post for retrieving a set of items given a list of paths or a long path. Allows for specifying the recursionLevel and version descriptors for each path. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/tfvc/itembatch (spec: tfvc/7.2/tfvc.json).
azure-devops.azure_devops_tfvc_items_list Read read 9 Get a list of Tfvc items Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/tfvc/items (spec: tfvc/7.2/tfvc.json).
azure-devops.azure_devops_tfvc_labels_list Read read 11 Get a collection of shallow label references. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/tfvc/labels (spec: tfvc/7.2/tfvc.json).
azure-devops.azure_devops_tfvc_labels_get Read read 10 Get a single deep label. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/tfvc/labels/{labelId} (spec: tfvc/7.2/tfvc.json).
azure-devops.azure_devops_token_admin_personal_access_tokens_list Read read 6 Lists of all the session token details of the personal access tokens (PATs) for a particular user. Official Azure DevOps REST API 7.2 endpoint: GET https://vssps.dev.azure.com/{organization}/_apis/tokenadmin/personalaccesstokens/{subjectDescriptor} (spec: tokenAdmin/7.2/tokenAdmin.json).
azure-devops.azure_devops_token_admin_revocation_rules_create Read read 3 Creates a revocation rule to prevent the further usage of any OAuth authorizations that were created before the current point in time and which match the conditions in the rule. Not all kinds of OAuth authorizations can be revoked directly. Some, such as self-describing session tokens, must instead by revoked by creating a rule which will be evaluated and used to reject matching OAuth credentials at authentication time. Revocation rules created through this endpoint will apply to all credentials that were issued before the datetime at which the rule was created and which match one or more additional conditions. Official Azure DevOps REST API 7.2 endpoint: POST https://vssps.dev.azure.com/{organization}/_apis/tokenadmin/revocationrules (spec: tokenAdmin/7.2/tokenAdmin.json).
azure-devops.azure_devops_token_admin_revocations_revoke_authorizations Read read 4 Revokes the listed OAuth authorizations. Official Azure DevOps REST API 7.2 endpoint: POST https://vssps.dev.azure.com/{organization}/_apis/tokenadmin/revocations (spec: tokenAdmin/7.2/tokenAdmin.json).
azure-devops.azure_devops_tokens_pats_get Read read 3 Gets a single personal access token (PAT). Official Azure DevOps REST API 7.2 endpoint: GET https://vssps.dev.azure.com/{organization}/_apis/tokens/pats (spec: tokens/7.2/tokens.json).
azure-devops.azure_devops_tokens_pats_create Read read 3 Creates a new personal access token (PAT) for the requesting user. Official Azure DevOps REST API 7.2 endpoint: POST https://vssps.dev.azure.com/{organization}/_apis/tokens/pats (spec: tokens/7.2/tokens.json).
azure-devops.azure_devops_tokens_pats_update Read read 3 Updates an existing personal access token (PAT) with the new parameters. To update a token, it must be valid (has not been revoked). Official Azure DevOps REST API 7.2 endpoint: PUT https://vssps.dev.azure.com/{organization}/_apis/tokens/pats (spec: tokens/7.2/tokens.json).
azure-devops.azure_devops_tokens_pats_revoke Read read 3 Revokes a personal access token (PAT) by authorizationId. Official Azure DevOps REST API 7.2 endpoint: DELETE https://vssps.dev.azure.com/{organization}/_apis/tokens/pats (spec: tokens/7.2/tokens.json).
azure-devops.azure_devops_wiki_wikis_list Read read 3 Gets all wikis in a project or collection. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wiki/wikis (spec: wiki/7.2/wiki.json).
azure-devops.azure_devops_wiki_wikis_create Read read 4 Creates the wiki resource. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/wiki/wikis (spec: wiki/7.2/wiki.json).
azure-devops.azure_devops_wiki_wikis_get Read read 4 Gets the wiki corresponding to the wiki ID or wiki name provided. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wiki/wikis/{wikiIdentifier} (spec: wiki/7.2/wiki.json).
azure-devops.azure_devops_wiki_wikis_update Read read 5 Updates the wiki corresponding to the wiki ID or wiki name provided using the update parameters. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/wiki/wikis/{wikiIdentifier} (spec: wiki/7.2/wiki.json).
azure-devops.azure_devops_wiki_wikis_delete Read read 4 Deletes the wiki corresponding to the wiki ID or wiki name provided. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/wiki/wikis/{wikiIdentifier} (spec: wiki/7.2/wiki.json).
azure-devops.azure_devops_wiki_attachments_create Read read 9 Creates an attachment in the wiki. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/_apis/wiki/wikis/{wikiIdentifier}/attachments (spec: wiki/7.2/wiki.json).
azure-devops.azure_devops_wiki_page_moves_create Read read 9 Creates a page move operation that updates the path and order of the page as provided in the parameters. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/wiki/wikis/{wikiIdentifier}/pagemoves (spec: wiki/7.2/wiki.json).
azure-devops.azure_devops_wiki_pages_get_page Read read 10 Gets metadata or content of the wiki page for the provided path. Content negotiation is done based on the `Accept` header sent in the request. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wiki/wikis/{wikiIdentifier}/pages (spec: wiki/7.2/wiki.json).
azure-devops.azure_devops_wiki_pages_create_or_update Write write 11 Creates or edits a wiki page. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/_apis/wiki/wikis/{wikiIdentifier}/pages (spec: wiki/7.2/wiki.json).
azure-devops.azure_devops_wiki_pages_delete_page Write write 9 Deletes a wiki page. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/wiki/wikis/{wikiIdentifier}/pages (spec: wiki/7.2/wiki.json).
azure-devops.azure_devops_wiki_pages_get_page_by_id Read read 7 Gets metadata or content of the wiki page for the provided page id. Content negotiation is done based on the `Accept` header sent in the request. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wiki/wikis/{wikiIdentifier}/pages/{id} (spec: wiki/7.2/wiki.json).
azure-devops.azure_devops_wiki_pages_update Read read 8 Edits a wiki page. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/wiki/wikis/{wikiIdentifier}/pages/{id} (spec: wiki/7.2/wiki.json).
azure-devops.azure_devops_wiki_pages_delete_page_by_id Write write 6 Deletes a wiki page. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/wiki/wikis/{wikiIdentifier}/pages/{id} (spec: wiki/7.2/wiki.json).
azure-devops.azure_devops_wiki_page_stats_get Read read 6 Returns page detail corresponding to Page ID. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wiki/wikis/{wikiIdentifier}/pages/{pageId}/stats (spec: wiki/7.2/wiki.json).
azure-devops.azure_devops_wiki_pages_batch_get Read read 8 Returns pageable list of Wiki Pages Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/wiki/wikis/{wikiIdentifier}/pagesbatch (spec: wiki/7.2/wiki.json).
azure-devops.azure_devops_wit_artifact_link_types_list Read read 2 Get the list of work item tracking outbound artifact link types. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/wit/artifactlinktypes (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_item_icons_list Read read 2 Get a list of all work item icons. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/wit/workitemicons (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_item_icons_get Read read 5 Get a work item icon given the friendly name and icon color. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/wit/workitemicons/{icon} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_item_relation_types_list Read read 2 Gets the work item relation types. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/wit/workitemrelationtypes (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_item_relation_types_get Read read 3 Gets the work item relation type definition. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/wit/workitemrelationtypes/{relation} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_item_transitions_list Read read 4 Returns the next state on the given work item IDs. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/wit/workitemtransitions (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_account_my_work_recent_activity_list Read read 2 Gets recent work item activities Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/_apis/work/accountmyworkrecentactivity (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_github_connections_get_github_connections Read read 3 Gets a list of github connections Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/githubconnections (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_github_connections_get_github_connection_repositories Read read 4 Gets a list of repos within specified github connection. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/githubconnections/{connectionId}/repos (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_github_connections_update Read read 5 Add/remove list of repos within specified github connection. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/githubconnections/{connectionId}/reposBatch (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_artifact_uri_query_query Read read 4 Queries work items linked to a given list of artifact URI. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/wit/artifacturiquery (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_attachments_create Read read 7 Uploads an attachment. On accounts with higher attachment upload limits (>130MB), you will need to use chunked upload. To upload an attachment in multiple chunks, you first need to [**Start a Chunked Upload**](#start_a_chunked_upload) and then follow the example from the **Upload Chunk** section. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/wit/attachments (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_attachments_get Read read 6 Downloads an attachment. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/attachments/{id} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_attachments_upload_chunk Read read 7 Uploads an attachment chunk. Before performing [**Upload a Chunk**](#upload-a-chunk), make sure to have an attachment id returned in **Start a Chunked Upload** example on **Create** section. Specify the byte range of the chunk using Content-Length. For example: "Content - Length": "bytes 0 - 39999 / 50000" for the first 40000 bytes of a 50000 byte file. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/_apis/wit/attachments/{id} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_attachments_delete Read read 4 Permanently delete an attachment. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/wit/attachments/{id} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_classification_nodes_get_root_nodes Read read 4 Gets root classification nodes under the project. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/classificationnodes (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_classification_nodes_get Read read 6 Gets the classification node for a given node path. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/classificationnodes/{structureGroup}/{path} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_classification_nodes_create_or_update Write write 6 Create new or update an existing classification node. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/wit/classificationnodes/{structureGroup}/{path} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_classification_nodes_update Read read 6 Update an existing classification node. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/wit/classificationnodes/{structureGroup}/{path} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_classification_nodes_delete Read read 6 Delete an existing classification node. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/wit/classificationnodes/{structureGroup}/{path} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_fields_list Read read 4 Returns information for all fields. The project ID/name parameter is optional. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/fields (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_fields_create Read read 4 Create a new field. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/wit/fields (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_fields_get Read read 4 Gets information on a specific field. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/fields/{fieldNameOrRefName} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_fields_update Read read 5 Update a field. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/wit/fields/{fieldNameOrRefName} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_fields_delete Read read 4 Deletes the field. To undelete a filed, see "Update Field" API. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/wit/fields/{fieldNameOrRefName} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_project_process_migration_migrate_projects_process Read read 4 Migrates a project to a different process within the same OOB type. For example, you can only migrate a project from agile/custom-agile to agile/custom-agile. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/wit/projectprocessmigration (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_queries_list Read read 6 Gets the root queries and their children Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/queries (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_queries_get Read read 8 Retrieves an individual query and its children Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/queries/{query} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_queries_create Read read 6 Creates a query, or moves a query. Learn more about Work Item Query Language (WIQL) syntax [here](https://docs.microsoft.com/en-us/vsts/collaborate/wiql-syntax?toc=/vsts/work/track/toc.json&bc=/vsts/work/track/breadcrumb/toc.json&view=vsts). Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/wit/queries/{query} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_queries_update Read read 6 Update a query or a folder. This allows you to update, rename and move queries and folders. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/wit/queries/{query} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_queries_delete Read read 4 Delete a query or a folder. This deletes any permission change on the deleted query or folder and any of its descendants if it is a folder. It is important to note that the deleted permission changes cannot be recovered upon undeleting the query or folder. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/wit/queries/{query} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_queries_get_queries_batch Read read 4 Gets a list of queries by ids (Maximum 1000) Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/wit/queriesbatch (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_recyclebin_get_deleted_work_item_shallow_references Read read 3 Gets a list of the IDs and the URLs of the deleted the work items in the Recycle Bin. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/recyclebin (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_recyclebin_get Read read 4 Gets a deleted work item from Recycle Bin. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/recyclebin/{id} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_recyclebin_restore_work_item Read read 5 Restores the deleted work item from Recycle Bin. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/wit/recyclebin/{id} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_recyclebin_destroy_work_item Read read 4 Destroys the specified work item permanently from the Recycle Bin. This action can not be undone. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/wit/recyclebin/{id} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_item_revisions_discussions_read_reporting_discussions Read read 5 GET /{organization}/{project}/_apis/wit/reporting/workItemRevisions/discussions Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/reporting/workItemRevisions/discussions (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_reporting_work_item_links_get Read read 7 Get a batch of work item links Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/reporting/workitemlinks (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_reporting_work_item_revisions_read_reporting_revisions_get Read read 14 Get a batch of work item revisions with the option of including deleted items Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/reporting/workitemrevisions (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_reporting_work_item_revisions_read_reporting_revisions_post Read read 7 Get a batch of work item revisions. This request may be used if your list of fields is large enough that it may run the URL over the length limit. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/wit/reporting/workitemrevisions (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_send_mail_send_mail Write write 4 RESTful method to send mail for selected/queried work items. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/wit/sendmail (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_tags_list Read read 3 Get all the tags for the project. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/tags (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_tags_get Read read 4 Get the tag for the project. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/tags/{tagIdOrName} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_tags_update Read read 5 Update the tag for the project. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/wit/tags/{tagIdOrName} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_tags_delete Read read 4 Delete the tag for the project. Please note, that the deleted tag will be removed from all Work Items as well as Pull Requests. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/wit/tags/{tagIdOrName} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_temp_queries_create Read read 4 Creates a temporary query Learn more about Work Item Query Language (WIQL) syntax [here](https://docs.microsoft.com/en-us/vsts/collaborate/wiql-syntax?toc=/vsts/work/track/toc.json&bc=/vsts/work/track/breadcrumb/toc.json&view=vsts). Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/wit/tempqueries (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_revisions_list Read read 7 Returns the list of fully hydrated work item revisions, paged. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workItems/{id}/revisions (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_revisions_get Read read 6 Returns a fully hydrated work item for the requested revision Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workItems/{id}/revisions/{revisionNumber} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_updates_list Read read 6 Returns the deltas between work item revisions Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workItems/{id}/updates (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_updates_get Read read 5 Returns a single update for a work item Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workItems/{id}/updates/{updateNumber} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_comments_get_comments_batch Read read 7 Returns a list of work item comments by ids. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workItems/{workItemId}/comments (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_comments_add_comment Write write 5 Add a comment on a work item. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/wit/workItems/{workItemId}/comments (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_comments_get_comment Read read 7 Returns a work item comment. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workItems/{workItemId}/comments/{commentId} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_comments_update_comment Write write 6 Update a comment on a work item. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/wit/workItems/{workItemId}/comments/{commentId} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_comments_delete Read read 5 Delete a comment on a work item. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/wit/workItems/{workItemId}/comments/{commentId} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_comments_reactions_list Read read 5 Gets reactions of a comment. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workItems/{workItemId}/comments/{commentId}/reactions (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_comments_reactions_create Read read 7 Adds a new reaction to a comment. Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/_apis/wit/workItems/{workItemId}/comments/{commentId}/reactions/{reactionType} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_comments_reactions_delete Read read 6 Deletes an existing reaction on a comment. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/wit/workItems/{workItemId}/comments/{commentId}/reactions/{reactionType} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_comment_reactions_engaged_users_list Read read 8 Get users who reacted on the comment. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workItems/{workItemId}/comments/{commentId}/reactions/{reactionType}/users (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_comments_versions_list Read read 5 GET /{organization}/{project}/_apis/wit/workItems/{workItemId}/comments/{commentId}/versions Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workItems/{workItemId}/comments/{commentId}/versions (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_comments_versions_get Read read 6 GET /{organization}/{project}/_apis/wit/workItems/{workItemId}/comments/{commentId}/versions/{version} Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workItems/{workItemId}/comments/{commentId}/versions/{version} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_items_list Read read 8 Returns a list of work items (Maximum 200) Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workitems (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_items_get_work_item_template Read read 7 Returns a single work item from a template. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workitems/${type} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_items_create Read read 9 Creates a single work item. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/wit/workitems/${type} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_items_get_work_item Read read 7 Returns a single work item. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workitems/{id} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_items_update Read read 9 Updates a single work item. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/_apis/wit/workitems/{id} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_items_delete Read read 5 Deletes the specified work item and sends it to the Recycle Bin, so that it can be restored back, if required. Optionally, if the destroy parameter has been set to true, it destroys the work item permanently. WARNING: If the destroy parameter is set to true, work items deleted by this command will NOT go to recycle-bin and there is no way to restore/recover them after deletion. It is recommended NOT to use this parameter. If you do, please use this parameter with extreme caution. Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/wit/workitems/{id} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_items_get_work_items_batch Read read 4 Gets work items for a list of work item ids (Maximum 200) Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/wit/workitemsbatch (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_items_delete_work_items Write write 4 Deletes specified work items and sends them to the Recycle Bin, so that it can be restored back, if required. Optionally, if the destroy parameter has been set to true, it destroys the work item permanently. WARNING: If the destroy parameter is set to true, work items deleted by this command will NOT go to recycle-bin and there is no way to restore/recover them after deletion. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/wit/workitemsdelete (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_item_type_categories_list Read read 3 Get all work item type categories. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workitemtypecategories (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_item_type_categories_get Read read 4 Get specific work item type category by name. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workitemtypecategories/{category} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_item_types_list Read read 3 Returns the list of work item types Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workitemtypes (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_item_types_get Read read 4 Returns a work item type definition. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workitemtypes/{type} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_item_types_field_list Read read 5 Get a list of fields for a work item type with detailed references. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workitemtypes/{type}/fields (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_item_types_field_get Read read 6 Get a field for a work item type with detailed references. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workitemtypes/{type}/fields/{field} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_work_item_type_states_list Read read 4 Returns the state names and colors for a work item type. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/wit/workitemtypes/{type}/states (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_templates_list Read read 5 Gets template Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/wit/templates (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_templates_create Read read 5 Creates a template Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/{team}/_apis/wit/templates (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_templates_get Read read 5 Gets the template with specified id Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/wit/templates/{templateId} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_templates_replace_template Read read 6 Replace template contents Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/{team}/_apis/wit/templates/{templateId} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_templates_delete Read read 5 Deletes the template with given id Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/{team}/_apis/wit/templates/{templateId} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_wiql_query_by_wiql Read read 7 Gets the results of the query given its WIQL. Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/{team}/_apis/wit/wiql (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_wit_wiql_query_by_id Read read 7 Gets the results of the query given the query ID. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/wit/wiql/{id} (spec: wit/7.2/workItemTracking.json).
azure-devops.azure_devops_work_boardcolumns_list Read read 3 Get available board columns in a project Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/work/boardcolumns (spec: work/7.2/work.json).
azure-devops.azure_devops_work_boardrows_list Read read 3 Get available board rows in a project Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/work/boardrows (spec: work/7.2/work.json).
azure-devops.azure_devops_work_iterationcapacities_get Read read 4 Get an iteration's capacity for all teams in iteration Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/work/iterations/{iterationId}/iterationcapacities (spec: work/7.2/work.json).
azure-devops.azure_devops_work_plans_list Read read 3 Get the information for all the plans configured for the given team Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/work/plans (spec: work/7.2/work.json).
azure-devops.azure_devops_work_plans_create Read read 4 Add a new plan for the team Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/_apis/work/plans (spec: work/7.2/work.json).
azure-devops.azure_devops_work_plans_get Read read 4 Get the information for the specified plan Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/work/plans/{id} (spec: work/7.2/work.json).
azure-devops.azure_devops_work_plans_update Read read 5 Update the information for the specified plan Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/_apis/work/plans/{id} (spec: work/7.2/work.json).
azure-devops.azure_devops_work_plans_delete Read read 4 Delete the specified plan Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/_apis/work/plans/{id} (spec: work/7.2/work.json).
azure-devops.azure_devops_work_deliverytimeline_get Read read 7 Get Delivery View Data Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/work/plans/{id}/deliverytimeline (spec: work/7.2/work.json).
azure-devops.azure_devops_work_predefined_queries_list Read read 3 Retrieves the set of known queries Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/work/predefinedqueries (spec: work/7.2/work.json).
azure-devops.azure_devops_work_predefined_queries_get Read read 6 Retrieves the specified predefined query including the query results Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/work/predefinedqueries/{id} (spec: work/7.2/work.json).
azure-devops.azure_devops_work_processconfiguration_get Read read 3 Get process configuration Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/_apis/work/processconfiguration (spec: work/7.2/work.json).
azure-devops.azure_devops_work_backlogconfiguration_get Read read 4 Gets backlog configuration for a team Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/backlogconfiguration (spec: work/7.2/work.json).
azure-devops.azure_devops_work_backlogs_list Read read 4 List all backlog levels Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/backlogs (spec: work/7.2/work.json).
azure-devops.azure_devops_work_backlogs_get_backlog_level_work_items Read read 5 Get a list of work items within a backlog level Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/backlogs/{backlogId}/workItems (spec: work/7.2/work.json).
azure-devops.azure_devops_work_backlogs_get_backlog Read read 5 Get a backlog level Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/backlogs/{id} (spec: work/7.2/work.json).
azure-devops.azure_devops_work_boards_list Read read 4 Get boards Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards (spec: work/7.2/work.json).
azure-devops.azure_devops_work_boardparents_list Read read 6 Returns the list of parent field filter model for the given list of workitem ids Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/boardparents (spec: work/7.2/work.json).
azure-devops.azure_devops_work_boardusersettings_get Read read 5 Get board user settings for a board id Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{board}/boardusersettings (spec: work/7.2/work.json).
azure-devops.azure_devops_work_boardusersettings_update Read read 6 Update board user settings for the board id We don't want stakeholders to update board settings (currently just autorefresh). The BacklogManagement feature check validates this. Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{board}/boardusersettings (spec: work/7.2/work.json).
azure-devops.azure_devops_work_cardrulesettings_get Read read 5 Get board card Rule settings for the board id or board by name Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{board}/cardrulesettings (spec: work/7.2/work.json).
azure-devops.azure_devops_work_cardrulesettings_update_board_card_rule_settings Write write 6 Update board card Rule settings for the board id or board by name Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{board}/cardrulesettings (spec: work/7.2/work.json).
azure-devops.azure_devops_work_cardsettings_get Read read 5 Get board card settings for the board id or board by name Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{board}/cardsettings (spec: work/7.2/work.json).
azure-devops.azure_devops_work_cardsettings_update_board_card_settings Write write 6 Update board card settings for the board id or board by name Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{board}/cardsettings (spec: work/7.2/work.json).
azure-devops.azure_devops_work_chartimages_get_board_chart_image Read read 10 Get a board chart image. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{board}/chartimages/{name} (spec: work/7.2/work.json).
azure-devops.azure_devops_work_charts_list Read read 5 Get board charts Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{board}/charts (spec: work/7.2/work.json).
azure-devops.azure_devops_work_charts_get Read read 6 Get a board chart Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{board}/charts/{name} (spec: work/7.2/work.json).
azure-devops.azure_devops_work_charts_update Read read 7 Update a board chart Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{board}/charts/{name} (spec: work/7.2/work.json).
azure-devops.azure_devops_work_columns_list Read read 5 Get columns on a board Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{board}/columns (spec: work/7.2/work.json).
azure-devops.azure_devops_work_columns_update Read read 6 Update columns on a board Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{board}/columns (spec: work/7.2/work.json).
azure-devops.azure_devops_work_rows_list Read read 5 Get rows on a board Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{board}/rows (spec: work/7.2/work.json).
azure-devops.azure_devops_work_rows_update Read read 6 Update rows on a board Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{board}/rows (spec: work/7.2/work.json).
azure-devops.azure_devops_work_boards_get Read read 5 Get board Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{id} (spec: work/7.2/work.json).
azure-devops.azure_devops_work_boards_set_board_options Read read 6 Update board options Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{id} (spec: work/7.2/work.json).
azure-devops.azure_devops_work_chartimages_get_iterations_chart_image Read read 10 Get an iterations chart image. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/iterations/chartimages/{name} (spec: work/7.2/work.json).
azure-devops.azure_devops_work_chartimages_get_iteration_chart_image Read read 10 Get an iteration chart image. Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/iterations/{iterationId}/chartimages/{name} (spec: work/7.2/work.json).
azure-devops.azure_devops_work_workitemsorder_reorder_iteration_work_items Read read 6 Reorder Sprint Backlog/Taskboard Work Items Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/{team}/_apis/work/iterations/{iterationId}/workitemsorder (spec: work/7.2/work.json).
azure-devops.azure_devops_work_cardrulesettings_update_taskboard_card_rule_settings Write write 5 Update taskboard card Rule settings Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/{team}/_apis/work/taskboard/cardrulesettings (spec: work/7.2/work.json).
azure-devops.azure_devops_work_cardsettings_update_taskboard_card_settings Write write 5 Update taskboard card settings Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/{team}/_apis/work/taskboard/cardsettings (spec: work/7.2/work.json).
azure-devops.azure_devops_work_taskboard_columns_get Read read 4 GET /{organization}/{project}/{team}/_apis/work/taskboardcolumns Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/taskboardcolumns (spec: work/7.2/work.json).
azure-devops.azure_devops_work_taskboard_columns_update Read read 5 PUT /{organization}/{project}/{team}/_apis/work/taskboardcolumns Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/{team}/_apis/work/taskboardcolumns (spec: work/7.2/work.json).
azure-devops.azure_devops_work_taskboard_work_items_list Read read 5 GET /{organization}/{project}/{team}/_apis/work/taskboardworkitems/{iterationId} Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/taskboardworkitems/{iterationId} (spec: work/7.2/work.json).
azure-devops.azure_devops_work_taskboard_work_items_update Read read 7 PATCH /{organization}/{project}/{team}/_apis/work/taskboardworkitems/{iterationId}/{workItemId} Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/{team}/_apis/work/taskboardworkitems/{iterationId}/{workItemId} (spec: work/7.2/work.json).
azure-devops.azure_devops_work_teamsettings_get Read read 4 Get a team's settings Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/teamsettings (spec: work/7.2/work.json).
azure-devops.azure_devops_work_teamsettings_update Read read 5 Update a team's settings Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/{team}/_apis/work/teamsettings (spec: work/7.2/work.json).
azure-devops.azure_devops_work_iterations_list Read read 5 Get a team's iterations using timeframe filter Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/teamsettings/iterations (spec: work/7.2/work.json).
azure-devops.azure_devops_work_iterations_post_team_iteration Read read 5 Add an iteration to the team Official Azure DevOps REST API 7.2 endpoint: POST https://dev.azure.com/{organization}/{project}/{team}/_apis/work/teamsettings/iterations (spec: work/7.2/work.json).
azure-devops.azure_devops_work_iterations_get Read read 5 Get team's iteration by iterationId Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/teamsettings/iterations/{id} (spec: work/7.2/work.json).
azure-devops.azure_devops_work_iterations_delete Read read 5 Delete a team's iteration by iterationId Official Azure DevOps REST API 7.2 endpoint: DELETE https://dev.azure.com/{organization}/{project}/{team}/_apis/work/teamsettings/iterations/{id} (spec: work/7.2/work.json).
azure-devops.azure_devops_work_capacities_get_capacities_with_identity_ref_and_totals Read read 5 Get a team's capacity including total capacity and days off Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/teamsettings/iterations/{iterationId}/capacities (spec: work/7.2/work.json).
azure-devops.azure_devops_work_capacities_replace_capacities_with_identity_ref Read read 6 Replace a team's capacity Official Azure DevOps REST API 7.2 endpoint: PUT https://dev.azure.com/{organization}/{project}/{team}/_apis/work/teamsettings/iterations/{iterationId}/capacities (spec: work/7.2/work.json).
azure-devops.azure_devops_work_capacities_get_capacity_with_identity_ref Read read 6 Get a team member's capacity Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/teamsettings/iterations/{iterationId}/capacities/{teamMemberId} (spec: work/7.2/work.json).
azure-devops.azure_devops_work_capacities_update Read read 7 Update a team member's capacity Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/{team}/_apis/work/teamsettings/iterations/{iterationId}/capacities/{teamMemberId} (spec: work/7.2/work.json).
azure-devops.azure_devops_work_teamdaysoff_get Read read 5 Get team's days off for an iteration Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/teamsettings/iterations/{iterationId}/teamdaysoff (spec: work/7.2/work.json).
azure-devops.azure_devops_work_teamdaysoff_update Read read 6 Set a team's days off for an iteration Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/{team}/_apis/work/teamsettings/iterations/{iterationId}/teamdaysoff (spec: work/7.2/work.json).
azure-devops.azure_devops_work_iterations_get_iteration_work_items Read read 5 Get work items for iteration Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/teamsettings/iterations/{iterationId}/workitems (spec: work/7.2/work.json).
azure-devops.azure_devops_work_teamfieldvalues_get Read read 4 Get a collection of team field values Official Azure DevOps REST API 7.2 endpoint: GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/teamsettings/teamfieldvalues (spec: work/7.2/work.json).
azure-devops.azure_devops_work_teamfieldvalues_update Read read 5 Update team field values Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/{team}/_apis/work/teamsettings/teamfieldvalues (spec: work/7.2/work.json).
azure-devops.azure_devops_work_workitemsorder_reorder_backlog_work_items Read read 5 Reorder Product Backlog/Boards Work Items Official Azure DevOps REST API 7.2 endpoint: PATCH https://dev.azure.com/{organization}/{project}/{team}/_apis/work/workitemsorder (spec: work/7.2/work.json).