KosmoKrator

productivity

Azure DevOps CLI for AI Agents

Use the Azure DevOps CLI from KosmoKrator to call Azure DevOps tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

Azure DevOps CLI Setup

Azure DevOps can be configured headlessly with `kosmokrator integrations:configure azure-devops`.

Install, configure, and verify
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure azure-devops --enable --read allow --write ask --json
kosmokrator integrations:doctor azure-devops --json
kosmokrator integrations:status --json

Credentials

Authentication type: pat or bearer pat_or_bearer. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.

No credentials are required.

Command Patterns

The generic command is stable across every integration. The provider shortcut is shorter for humans.

Generic CLI call
kosmo integrations:call azure-devops.azure_devops_account_accounts_list '{"owner_id":"example_owner_id","member_id":"example_member_id","properties":"example_properties","api_version":"example_api_version"}' --json
Provider shortcut
kosmo integrations:azure-devops azure_devops_account_accounts_list '{"owner_id":"example_owner_id","member_id":"example_member_id","properties":"example_properties","api_version":"example_api_version"}' --json

Discovery

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

Discovery commands
kosmo integrations:docs azure-devops --json
kosmo integrations:docs azure-devops.azure_devops_account_accounts_list --json
kosmo integrations:schema azure-devops.azure_devops_account_accounts_list --json
kosmo integrations:search "Azure DevOps" --json
kosmo integrations:list --json

Automation Contexts

The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.

CLI Functions

Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.

azure-devops.azure_devops_account_accounts_list

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).

Read read
Parameters
owner_id, member_id, properties, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_account_accounts_list '{"owner_id":"example_owner_id","member_id":"example_member_id","properties":"example_properties","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_account_accounts_list '{"owner_id":"example_owner_id","member_id":"example_member_id","properties":"example_properties","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_filters_settings_list

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).

Read read
Parameters
organization, include_deleted, keywords, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_filters_settings_list '{"organization":"example_organization","include_deleted":true,"keywords":"example_keywords","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_filters_settings_list '{"organization":"example_organization","include_deleted":true,"keywords":"example_keywords","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_filters_settings_create

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_filters_settings_create '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_filters_settings_create '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_filters_settings_get

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).

Read read
Parameters
organization, filter_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_filters_settings_get '{"organization":"example_organization","filter_id":"example_filter_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_filters_settings_get '{"organization":"example_organization","filter_id":"example_filter_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_filters_settings_update

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).

Read read
Parameters
organization, body, filter_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_filters_settings_update '{"organization":"example_organization","body":"example_body","filter_id":"example_filter_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_filters_settings_update '{"organization":"example_organization","body":"example_body","filter_id":"example_filter_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_filters_settings_delete

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).

Read read
Parameters
organization, filter_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_filters_settings_delete '{"organization":"example_organization","filter_id":"example_filter_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_filters_settings_delete '{"organization":"example_organization","filter_id":"example_filter_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_summary_dashboard_get_alert_summary_for_org

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).

Read read
Parameters
organization, criteria_alert_types, criteria_keywords, criteria_period, criteria_projects, criteria_severities, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_summary_dashboard_get_alert_summary_for_org '{"organization":"example_organization","criteria_alert_types":"example_criteria_alert_types","criteria_keywords":"example_criteria_keywords","criteria_period":"example_criteria_period","criteria_projects":"example_criteria_projects","criteria_severities":"example_criteria_severities","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_summary_dashboard_get_alert_summary_for_org '{"organization":"example_organization","criteria_alert_types":"example_criteria_alert_types","criteria_keywords":"example_criteria_keywords","criteria_period":"example_criteria_period","criteria_projects":"example_criteria_projects","criteria_severities":"example_criteria_severities","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_summary_dashboard_list

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).

Read read
Parameters
organization, criteria_alert_type, criteria_alert_validity_status, criteria_component_names, criteria_component_types, criteria_dismissal_types, criteria_fixed_date_end, criteria_fixed_date_start, criteria_introduced_date_end, criteria_introduced_date_start, criteria_keywords, criteria_projects, criteria_repositories, criteria_repository_ids, criteria_rule_names, criteria_secret_types, criteria_severities, criteria_state, criteria_tool_names, top, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_summary_dashboard_list '{"organization":"example_organization","criteria_alert_type":"example_criteria_alert_type","criteria_alert_validity_status":"example_criteria_alert_validity_status","criteria_component_names":"example_criteria_component_names","criteria_component_types":"example_criteria_component_types","criteria_dismissal_types":"example_criteria_dismissal_types","criteria_fixed_date_end":"example_criteria_fixed_date_end","criteria_fixed_date_start":"example_criteria_fixed_date_start"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_summary_dashboard_list '{"organization":"example_organization","criteria_alert_type":"example_criteria_alert_type","criteria_alert_validity_status":"example_criteria_alert_validity_status","criteria_component_names":"example_criteria_component_names","criteria_component_types":"example_criteria_component_types","criteria_dismissal_types":"example_criteria_dismissal_types","criteria_fixed_date_end":"example_criteria_fixed_date_end","criteria_fixed_date_start":"example_criteria_fixed_date_start"}' --json

azure-devops.azure_devops_advanced_security_summary_dashboard_get_enablement_summary_for_org

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).

Read read
Parameters
organization, criteria_keywords, criteria_projects, criteria_states_any_tool, criteria_states_code_alerts, criteria_states_code_pralerts, criteria_states_dependency_alerts, criteria_states_dependency_pralerts, criteria_states_push_protection, criteria_states_secret_alerts, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_summary_dashboard_get_enablement_summary_for_org '{"organization":"example_organization","criteria_keywords":"example_criteria_keywords","criteria_projects":"example_criteria_projects","criteria_states_any_tool":true,"criteria_states_code_alerts":true,"criteria_states_code_pralerts":true,"criteria_states_dependency_alerts":true,"criteria_states_dependency_pralerts":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_summary_dashboard_get_enablement_summary_for_org '{"organization":"example_organization","criteria_keywords":"example_criteria_keywords","criteria_projects":"example_criteria_projects","criteria_states_any_tool":true,"criteria_states_code_alerts":true,"criteria_states_code_pralerts":true,"criteria_states_dependency_alerts":true,"criteria_states_dependency_pralerts":true}' --json

azure-devops.azure_devops_advanced_security_alerts_batch_list

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).

Read read
Parameters
organization, body, project, repository, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_alerts_batch_list '{"organization":"example_organization","body":"example_body","project":"example_project","repository":"example_repository","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_alerts_batch_list '{"organization":"example_organization","body":"example_body","project":"example_project","repository":"example_repository","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_alerts_list

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).

Read read
Parameters
organization, project, repository, top, order_by, criteria_alert_ids, criteria_alert_type, criteria_confidence_levels, criteria_dependency_name, criteria_from_date, criteria_has_linked_work_items, criteria_is_triaged, criteria_keywords, criteria_license_name, criteria_modified_since, criteria_only_default_branch, criteria_phase_id, criteria_phase_name, criteria_pipeline_id, criteria_pipeline_name, criteria_ref, criteria_rule_id, criteria_rule_name, criteria_severities, criteria_states, criteria_to_date, criteria_tool_name, criteria_validity, expand, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_alerts_list '{"organization":"example_organization","project":"example_project","repository":"example_repository","top":1,"order_by":"example_order_by","criteria_alert_ids":"example_criteria_alert_ids","criteria_alert_type":"example_criteria_alert_type","criteria_confidence_levels":"example_criteria_confidence_levels"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_alerts_list '{"organization":"example_organization","project":"example_project","repository":"example_repository","top":1,"order_by":"example_order_by","criteria_alert_ids":"example_criteria_alert_ids","criteria_alert_type":"example_criteria_alert_type","criteria_confidence_levels":"example_criteria_confidence_levels"}' --json

azure-devops.azure_devops_advanced_security_metadata_batch_list

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).

Read read
Parameters
organization, body, project, repository, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_metadata_batch_list '{"organization":"example_organization","body":"example_body","project":"example_project","repository":"example_repository","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_metadata_batch_list '{"organization":"example_organization","body":"example_body","project":"example_project","repository":"example_repository","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_alerts_get

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).

Read read
Parameters
organization, project, alert_id, repository, ref, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_alerts_get '{"organization":"example_organization","project":"example_project","alert_id":1,"repository":"example_repository","ref":"example_ref","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_alerts_get '{"organization":"example_organization","project":"example_project","alert_id":1,"repository":"example_repository","ref":"example_ref","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_alerts_update

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).

Read read
Parameters
organization, body, project, alert_id, repository, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_alerts_update '{"organization":"example_organization","body":"example_body","project":"example_project","alert_id":1,"repository":"example_repository","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_alerts_update '{"organization":"example_organization","body":"example_body","project":"example_project","alert_id":1,"repository":"example_repository","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_instances_list

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).

Read read
Parameters
organization, project, alert_id, repository, ref, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_instances_list '{"organization":"example_organization","project":"example_project","alert_id":1,"repository":"example_repository","ref":"example_ref","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_instances_list '{"organization":"example_organization","project":"example_project","alert_id":1,"repository":"example_repository","ref":"example_ref","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_metadata2_get

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).

Read read
Parameters
organization, project, alert_id, repository, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_metadata2_get '{"organization":"example_organization","project":"example_project","alert_id":1,"repository":"example_repository","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_metadata2_get '{"organization":"example_organization","project":"example_project","alert_id":1,"repository":"example_repository","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_analysis_list

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).

Read read
Parameters
organization, project, repository, alert_type, continuation_token, branch_name_contains, top, include_pull_request_branches, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_analysis_list '{"organization":"example_organization","project":"example_project","repository":"example_repository","alert_type":"example_alert_type","continuation_token":"example_continuation_token","branch_name_contains":"example_branch_name_contains","top":1,"include_pull_request_branches":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_analysis_list '{"organization":"example_organization","project":"example_project","repository":"example_repository","alert_type":"example_alert_type","continuation_token":"example_continuation_token","branch_name_contains":"example_branch_name_contains","top":1,"include_pull_request_branches":true}' --json

azure-devops.azure_devops_advanced_security_pipeline_analyses_delete

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).

Read read
Parameters
organization, project, repository, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_pipeline_analyses_delete '{"organization":"example_organization","project":"example_project","repository":"example_repository","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_pipeline_analyses_delete '{"organization":"example_organization","project":"example_project","repository":"example_repository","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_pipeline_analysis_delete

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).

Read read
Parameters
organization, project, repository, ado_pipeline_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_pipeline_analysis_delete '{"organization":"example_organization","project":"example_project","repository":"example_repository","ado_pipeline_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_pipeline_analysis_delete '{"organization":"example_organization","project":"example_project","repository":"example_repository","ado_pipeline_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_org_enablement_get

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).

Read read
Parameters
organization, include_all_properties, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_org_enablement_get '{"organization":"example_organization","include_all_properties":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_org_enablement_get '{"organization":"example_organization","include_all_properties":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_org_enablement_update

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_org_enablement_update '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_org_enablement_update '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_org_meter_usage_estimate_get

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).

Read read
Parameters
organization, plan, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_org_meter_usage_estimate_get '{"organization":"example_organization","plan":"example_plan","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_org_meter_usage_estimate_get '{"organization":"example_organization","plan":"example_plan","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_meter_usage_get

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).

Read read
Parameters
organization, plan, billing_date, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_meter_usage_get '{"organization":"example_organization","plan":"example_plan","billing_date":"example_billing_date","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_meter_usage_get '{"organization":"example_organization","plan":"example_plan","billing_date":"example_billing_date","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_project_enablement_get

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).

Read read
Parameters
organization, project, include_all_properties, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_project_enablement_get '{"organization":"example_organization","project":"example_project","include_all_properties":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_project_enablement_get '{"organization":"example_organization","project":"example_project","include_all_properties":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_project_enablement_update

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_project_enablement_update '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_project_enablement_update '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_project_meter_usage_estimate_get

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).

Read read
Parameters
organization, project, plan, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_project_meter_usage_estimate_get '{"organization":"example_organization","project":"example_project","plan":"example_plan","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_project_meter_usage_estimate_get '{"organization":"example_organization","project":"example_project","plan":"example_plan","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_repo_enablement_get

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).

Read read
Parameters
organization, project, repository, include_all_properties, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_repo_enablement_get '{"organization":"example_organization","project":"example_project","repository":"example_repository","include_all_properties":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_repo_enablement_get '{"organization":"example_organization","project":"example_project","repository":"example_repository","include_all_properties":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_repo_enablement_update

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).

Read read
Parameters
organization, body, project, repository, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_repo_enablement_update '{"organization":"example_organization","body":"example_body","project":"example_project","repository":"example_repository","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_repo_enablement_update '{"organization":"example_organization","body":"example_body","project":"example_project","repository":"example_repository","api_version":"example_api_version"}' --json

azure-devops.azure_devops_advanced_security_repo_meter_usage_estimate_get

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).

Read read
Parameters
organization, project, repository, plan, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_advanced_security_repo_meter_usage_estimate_get '{"organization":"example_organization","project":"example_project","repository":"example_repository","plan":"example_plan","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_advanced_security_repo_meter_usage_estimate_get '{"organization":"example_organization","project":"example_project","repository":"example_repository","plan":"example_plan","api_version":"example_api_version"}' --json

azure-devops.azure_devops_approvals_and_checks_pipeline_permissions_update_pipeline_permisions_for_resources

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_approvals_and_checks_pipeline_permissions_update_pipeline_permisions_for_resources '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_approvals_and_checks_pipeline_permissions_update_pipeline_permisions_for_resources '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_approvals_and_checks_pipeline_permissions_get

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).

Read read
Parameters
organization, project, resource_type, resource_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_approvals_and_checks_pipeline_permissions_get '{"organization":"example_organization","project":"example_project","resource_type":"example_resource_type","resource_id":"example_resource_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_approvals_and_checks_pipeline_permissions_get '{"organization":"example_organization","project":"example_project","resource_type":"example_resource_type","resource_id":"example_resource_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_approvals_and_checks_pipeline_permissions_update_pipeline_permisions_for_resource

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).

Write write
Parameters
organization, body, project, resource_type, resource_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_approvals_and_checks_pipeline_permissions_update_pipeline_permisions_for_resource '{"organization":"example_organization","body":"example_body","project":"example_project","resource_type":"example_resource_type","resource_id":"example_resource_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_approvals_and_checks_pipeline_permissions_update_pipeline_permisions_for_resource '{"organization":"example_organization","body":"example_body","project":"example_project","resource_type":"example_resource_type","resource_id":"example_resource_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_approvals_and_checks_check_configurations_list

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).

Read read
Parameters
organization, project, resource_type, resource_id, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_approvals_and_checks_check_configurations_list '{"organization":"example_organization","project":"example_project","resource_type":"example_resource_type","resource_id":"example_resource_id","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_approvals_and_checks_check_configurations_list '{"organization":"example_organization","project":"example_project","resource_type":"example_resource_type","resource_id":"example_resource_id","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_approvals_and_checks_check_configurations_add

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_approvals_and_checks_check_configurations_add '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_approvals_and_checks_check_configurations_add '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_approvals_and_checks_check_configurations_get

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).

Read read
Parameters
organization, project, id, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_approvals_and_checks_check_configurations_get '{"organization":"example_organization","project":"example_project","id":1,"expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_approvals_and_checks_check_configurations_get '{"organization":"example_organization","project":"example_project","id":1,"expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_approvals_and_checks_check_configurations_update

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).

Read read
Parameters
organization, body, project, id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_approvals_and_checks_check_configurations_update '{"organization":"example_organization","body":"example_body","project":"example_project","id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_approvals_and_checks_check_configurations_update '{"organization":"example_organization","body":"example_body","project":"example_project","id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_approvals_and_checks_check_configurations_delete

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).

Read read
Parameters
organization, project, id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_approvals_and_checks_check_configurations_delete '{"organization":"example_organization","project":"example_project","id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_approvals_and_checks_check_configurations_delete '{"organization":"example_organization","project":"example_project","id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_approvals_and_checks_check_configurations_query

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).

Read read
Parameters
organization, body, project, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_approvals_and_checks_check_configurations_query '{"organization":"example_organization","body":"example_body","project":"example_project","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_approvals_and_checks_check_configurations_query '{"organization":"example_organization","body":"example_body","project":"example_project","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_approvals_and_checks_check_evaluations_evaluate

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).

Read read
Parameters
organization, body, project, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_approvals_and_checks_check_evaluations_evaluate '{"organization":"example_organization","body":"example_body","project":"example_project","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_approvals_and_checks_check_evaluations_evaluate '{"organization":"example_organization","body":"example_body","project":"example_project","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_approvals_and_checks_check_evaluations_get

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).

Read read
Parameters
organization, project, check_suite_id, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_approvals_and_checks_check_evaluations_get '{"organization":"example_organization","project":"example_project","check_suite_id":"example_check_suite_id","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_approvals_and_checks_check_evaluations_get '{"organization":"example_organization","project":"example_project","check_suite_id":"example_check_suite_id","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_approvals_and_checks_check_evaluations_update

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).

Read read
Parameters
organization, body, project, check_suite_id, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_approvals_and_checks_check_evaluations_update '{"organization":"example_organization","body":"example_body","project":"example_project","check_suite_id":"example_check_suite_id","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_approvals_and_checks_check_evaluations_update '{"organization":"example_organization","body":"example_body","project":"example_project","check_suite_id":"example_check_suite_id","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_approvals_and_checks_approvals_query

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).

Read read
Parameters
organization, project, approval_ids, expand, assigned_to, state, top, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_approvals_and_checks_approvals_query '{"organization":"example_organization","project":"example_project","approval_ids":"example_approval_ids","expand":"example_expand","assigned_to":"example_assigned_to","state":"example_state","top":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_approvals_and_checks_approvals_query '{"organization":"example_organization","project":"example_project","approval_ids":"example_approval_ids","expand":"example_expand","assigned_to":"example_assigned_to","state":"example_state","top":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_approvals_and_checks_approvals_update

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_approvals_and_checks_approvals_update '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_approvals_and_checks_approvals_update '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_approvals_and_checks_approvals_get

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).

Read read
Parameters
organization, project, approval_id, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_approvals_and_checks_approvals_get '{"organization":"example_organization","project":"example_project","approval_id":"example_approval_id","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_approvals_and_checks_approvals_get '{"organization":"example_organization","project":"example_project","approval_id":"example_approval_id","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_service_settings_get_global_permissions

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).

Read read
Parameters
organization, include_ids, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_service_settings_get_global_permissions '{"organization":"example_organization","include_ids":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_service_settings_get_global_permissions '{"organization":"example_organization","include_ids":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_service_settings_set_global_permissions

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_service_settings_set_global_permissions '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_service_settings_set_global_permissions '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_artifact_details_get_package_version_provenance

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).

Read read
Parameters
organization, feed_id, package_id, package_version_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_artifact_details_get_package_version_provenance '{"organization":"example_organization","feed_id":"example_feed_id","package_id":"example_package_id","package_version_id":"example_package_version_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_artifact_details_get_package_version_provenance '{"organization":"example_organization","feed_id":"example_feed_id","package_id":"example_package_id","package_version_id":"example_package_version_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_artifact_details_query_package_version_metrics

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).

Read read
Parameters
organization, body, feed_id, package_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_artifact_details_query_package_version_metrics '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_id":"example_package_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_artifact_details_query_package_version_metrics '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_id":"example_package_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_artifact_details_get_package_versions

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).

Read read
Parameters
organization, feed_id, package_id, project, include_urls, is_listed, is_deleted, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_artifact_details_get_package_versions '{"organization":"example_organization","feed_id":"example_feed_id","package_id":"example_package_id","project":"example_project","include_urls":true,"is_listed":true,"is_deleted":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_artifact_details_get_package_versions '{"organization":"example_organization","feed_id":"example_feed_id","package_id":"example_package_id","project":"example_project","include_urls":true,"is_listed":true,"is_deleted":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_artifact_details_get_package_version

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).

Read read
Parameters
organization, feed_id, package_id, package_version_id, project, include_urls, is_listed, is_deleted, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_artifact_details_get_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_id":"example_package_id","package_version_id":"example_package_version_id","project":"example_project","include_urls":true,"is_listed":true,"is_deleted":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_artifact_details_get_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_id":"example_package_id","package_version_id":"example_package_version_id","project":"example_project","include_urls":true,"is_listed":true,"is_deleted":true}' --json

azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_packages

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).

Read read
Parameters
organization, feed_id, project, protocol_type, package_name_query, include_urls, top, skip, include_all_versions, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_packages '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","protocol_type":"example_protocol_type","package_name_query":"example_package_name_query","include_urls":true,"top":1,"skip":1}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_recycle_bin_get_recycle_bin_packages '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","protocol_type":"example_protocol_type","package_name_query":"example_package_name_query","include_urls":true,"top":1,"skip":1}' --json

azure-devops.azure_devops_artifacts_recycle_bin_empty_recycle_bin

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).

Read read
Parameters
organization, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_recycle_bin_empty_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_recycle_bin_empty_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_package

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).

Read read
Parameters
organization, feed_id, package_id, project, include_urls, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_package '{"organization":"example_organization","feed_id":"example_feed_id","package_id":"example_package_id","project":"example_project","include_urls":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_recycle_bin_get_recycle_bin_package '{"organization":"example_organization","feed_id":"example_feed_id","package_id":"example_package_id","project":"example_project","include_urls":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_package_versions

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).

Read read
Parameters
organization, feed_id, package_id, project, include_urls, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_package_versions '{"organization":"example_organization","feed_id":"example_feed_id","package_id":"example_package_id","project":"example_project","include_urls":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_recycle_bin_get_recycle_bin_package_versions '{"organization":"example_organization","feed_id":"example_feed_id","package_id":"example_package_id","project":"example_project","include_urls":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_package_version

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).

Read read
Parameters
organization, feed_id, package_id, package_version_id, project, include_urls, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_id":"example_package_id","package_version_id":"example_package_version_id","project":"example_project","include_urls":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_recycle_bin_get_recycle_bin_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_id":"example_package_id","package_version_id":"example_package_version_id","project":"example_project","include_urls":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_change_tracking_get_package_changes

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).

Write write
Parameters
organization, feed_id, project, continuation_token, batch_size, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_change_tracking_get_package_changes '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","continuation_token":1,"batch_size":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_change_tracking_get_package_changes '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","continuation_token":1,"batch_size":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_artifact_details_query_package_metrics

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).

Read read
Parameters
organization, body, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_artifact_details_query_package_metrics '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_artifact_details_query_package_metrics '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_artifact_details_get_packages

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).

Read read
Parameters
organization, feed_id, project, protocol_type, package_name_query, normalized_package_name, include_urls, include_all_versions, is_listed, get_top_package_versions, is_release, include_description, top, skip, include_deleted, is_cached, direct_upstream_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_artifact_details_get_packages '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","protocol_type":"example_protocol_type","package_name_query":"example_package_name_query","normalized_package_name":"example_normalized_package_name","include_urls":true,"include_all_versions":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_artifact_details_get_packages '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","protocol_type":"example_protocol_type","package_name_query":"example_package_name_query","normalized_package_name":"example_normalized_package_name","include_urls":true,"include_all_versions":true}' --json

azure-devops.azure_devops_artifacts_artifact_details_get_package

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).

Read read
Parameters
organization, feed_id, package_id, project, include_all_versions, include_urls, is_listed, is_release, include_deleted, include_description, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_artifact_details_get_package '{"organization":"example_organization","feed_id":"example_feed_id","package_id":"example_package_id","project":"example_project","include_all_versions":true,"include_urls":true,"is_listed":true,"is_release":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_artifact_details_get_package '{"organization":"example_organization","feed_id":"example_feed_id","package_id":"example_package_id","project":"example_project","include_all_versions":true,"include_urls":true,"is_listed":true,"is_release":true}' --json

azure-devops.azure_devops_artifacts_feed_management_get_feed_permissions

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).

Read read
Parameters
organization, feed_id, project, include_ids, exclude_inherited_permissions, identity_descriptor, include_deleted_feeds, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_feed_management_get_feed_permissions '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","include_ids":true,"exclude_inherited_permissions":true,"identity_descriptor":"example_identity_descriptor","include_deleted_feeds":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_feed_management_get_feed_permissions '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","include_ids":true,"exclude_inherited_permissions":true,"identity_descriptor":"example_identity_descriptor","include_deleted_feeds":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_feed_management_set_feed_permissions

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).

Read read
Parameters
organization, body, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_feed_management_set_feed_permissions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_feed_management_set_feed_permissions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_retention_policies_get_retention_policy

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).

Read read
Parameters
organization, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_retention_policies_get_retention_policy '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_retention_policies_get_retention_policy '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_retention_policies_set_retention_policy

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).

Read read
Parameters
organization, body, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_retention_policies_set_retention_policy '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_retention_policies_set_retention_policy '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_retention_policies_delete_retention_policy

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).

Write write
Parameters
organization, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_retention_policies_delete_retention_policy '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_retention_policies_delete_retention_policy '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_feed_management_get_feed_views

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).

Read read
Parameters
organization, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_feed_management_get_feed_views '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_feed_management_get_feed_views '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_feed_management_create_feed_view

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).

Write write
Parameters
organization, body, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_feed_management_create_feed_view '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_feed_management_create_feed_view '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_feed_management_get_feed_view

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).

Read read
Parameters
organization, feed_id, view_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_feed_management_get_feed_view '{"organization":"example_organization","feed_id":"example_feed_id","view_id":"example_view_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_feed_management_get_feed_view '{"organization":"example_organization","feed_id":"example_feed_id","view_id":"example_view_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_feed_management_update_feed_view

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).

Write write
Parameters
organization, body, feed_id, view_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_feed_management_update_feed_view '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","view_id":"example_view_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_feed_management_update_feed_view '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","view_id":"example_view_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_feed_management_delete_feed_view

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).

Write write
Parameters
organization, feed_id, view_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_feed_management_delete_feed_view '{"organization":"example_organization","feed_id":"example_feed_id","view_id":"example_view_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_feed_management_delete_feed_view '{"organization":"example_organization","feed_id":"example_feed_id","view_id":"example_view_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_change_tracking_get_feed_changes

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).

Write write
Parameters
organization, project, include_deleted, continuation_token, batch_size, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_change_tracking_get_feed_changes '{"organization":"example_organization","project":"example_project","include_deleted":true,"continuation_token":1,"batch_size":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_change_tracking_get_feed_changes '{"organization":"example_organization","project":"example_project","include_deleted":true,"continuation_token":1,"batch_size":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_change_tracking_get_feed_change

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).

Write write
Parameters
organization, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_change_tracking_get_feed_change '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_change_tracking_get_feed_change '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_feed_recycle_bin_list

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_feed_recycle_bin_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_feed_recycle_bin_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_feed_recycle_bin_restore_deleted_feed

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).

Read read
Parameters
organization, body, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_feed_recycle_bin_restore_deleted_feed '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_feed_recycle_bin_restore_deleted_feed '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_feed_recycle_bin_permanent_delete_feed

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).

Write write
Parameters
organization, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_feed_recycle_bin_permanent_delete_feed '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_feed_recycle_bin_permanent_delete_feed '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_feed_management_get_feeds

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).

Read read
Parameters
organization, project, feed_role, include_deleted_upstreams, include_urls, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_feed_management_get_feeds '{"organization":"example_organization","project":"example_project","feed_role":"example_feed_role","include_deleted_upstreams":true,"include_urls":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_feed_management_get_feeds '{"organization":"example_organization","project":"example_project","feed_role":"example_feed_role","include_deleted_upstreams":true,"include_urls":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_feed_management_create_feed

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_feed_management_create_feed '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_feed_management_create_feed '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_feed_management_get_feed

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).

Read read
Parameters
organization, feed_id, project, include_deleted_upstreams, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_feed_management_get_feed '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","include_deleted_upstreams":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_feed_management_get_feed '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","include_deleted_upstreams":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_feed_management_update_feed

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).

Write write
Parameters
organization, body, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_feed_management_update_feed '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_feed_management_update_feed '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_feed_management_delete_feed

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).

Write write
Parameters
organization, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_feed_management_delete_feed '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_feed_management_delete_feed '{"organization":"example_organization","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_artifact_details_get_badge

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).

Read read
Parameters
organization, feed_id, package_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_artifact_details_get_badge '{"organization":"example_organization","feed_id":"example_feed_id","package_id":"example_package_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_artifact_details_get_badge '{"organization":"example_organization","feed_id":"example_feed_id","package_id":"example_package_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_provenance_create_session

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).

Write write
Parameters
organization, body, protocol, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_provenance_create_session '{"organization":"example_organization","body":"example_body","protocol":"example_protocol","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_provenance_create_session '{"organization":"example_organization","body":"example_body","protocol":"example_protocol","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_cargo_get_package_version_from_recycle_bin

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).

Read read
Parameters
organization, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_cargo_get_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_cargo_get_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_cargo_restore_package_version_from_recycle_bin

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).

Read read
Parameters
organization, body, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_cargo_restore_package_version_from_recycle_bin '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_cargo_restore_package_version_from_recycle_bin '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_cargo_delete_package_version_from_recycle_bin

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).

Write write
Parameters
organization, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_cargo_delete_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_cargo_delete_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_cargo_update_recycle_bin_package_versions

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).

Write write
Parameters
organization, body, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_cargo_update_recycle_bin_package_versions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_cargo_update_recycle_bin_package_versions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_cargo_get_package_version

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).

Read read
Parameters
organization, feed_id, package_name, package_version, project, show_deleted, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_cargo_get_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","show_deleted":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_cargo_get_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","show_deleted":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_cargo_update_package_version

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).

Write write
Parameters
organization, body, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_cargo_update_package_version '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_cargo_update_package_version '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_cargo_delete_package_version

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).

Write write
Parameters
organization, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_cargo_delete_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_cargo_delete_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_cargo_get_upstreaming_behavior

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).

Read read
Parameters
organization, feed, package_name, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_cargo_get_upstreaming_behavior '{"organization":"example_organization","feed":"example_feed","package_name":"example_package_name","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_cargo_get_upstreaming_behavior '{"organization":"example_organization","feed":"example_feed","package_name":"example_package_name","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_cargo_set_upstreaming_behavior

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).

Read read
Parameters
organization, feed, package_name, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_cargo_set_upstreaming_behavior '{"organization":"example_organization","feed":"example_feed","package_name":"example_package_name","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_cargo_set_upstreaming_behavior '{"organization":"example_organization","feed":"example_feed","package_name":"example_package_name","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_cargo_update_package_versions

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).

Write write
Parameters
organization, body, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_cargo_update_package_versions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_cargo_update_package_versions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_maven_update_package_versions

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).

Write write
Parameters
organization, body, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_maven_update_package_versions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_maven_update_package_versions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_maven_download_package

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).

Read read
Parameters
organization, feed_id, group_id, artifact_id, version, file_name, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_maven_download_package '{"organization":"example_organization","feed_id":"example_feed_id","group_id":"example_group_id","artifact_id":"example_artifact_id","version":"example_version","file_name":"example_file_name","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_maven_download_package '{"organization":"example_organization","feed_id":"example_feed_id","group_id":"example_group_id","artifact_id":"example_artifact_id","version":"example_version","file_name":"example_file_name","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_maven_get_package_version_from_recycle_bin

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).

Read read
Parameters
organization, feed, group_id, artifact_id, version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_maven_get_package_version_from_recycle_bin '{"organization":"example_organization","feed":"example_feed","group_id":"example_group_id","artifact_id":"example_artifact_id","version":"example_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_maven_get_package_version_from_recycle_bin '{"organization":"example_organization","feed":"example_feed","group_id":"example_group_id","artifact_id":"example_artifact_id","version":"example_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_maven_restore_package_version_from_recycle_bin

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).

Read read
Parameters
organization, body, feed, group_id, artifact_id, version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_maven_restore_package_version_from_recycle_bin '{"organization":"example_organization","body":"example_body","feed":"example_feed","group_id":"example_group_id","artifact_id":"example_artifact_id","version":"example_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_maven_restore_package_version_from_recycle_bin '{"organization":"example_organization","body":"example_body","feed":"example_feed","group_id":"example_group_id","artifact_id":"example_artifact_id","version":"example_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_maven_delete_package_version_from_recycle_bin

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).

Write write
Parameters
organization, feed, group_id, artifact_id, version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_maven_delete_package_version_from_recycle_bin '{"organization":"example_organization","feed":"example_feed","group_id":"example_group_id","artifact_id":"example_artifact_id","version":"example_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_maven_delete_package_version_from_recycle_bin '{"organization":"example_organization","feed":"example_feed","group_id":"example_group_id","artifact_id":"example_artifact_id","version":"example_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_maven_update_recycle_bin_packages

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).

Write write
Parameters
organization, body, feed, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_maven_update_recycle_bin_packages '{"organization":"example_organization","body":"example_body","feed":"example_feed","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_maven_update_recycle_bin_packages '{"organization":"example_organization","body":"example_body","feed":"example_feed","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_maven_get_upstreaming_behavior

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).

Read read
Parameters
organization, feed, group_id, artifact_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_maven_get_upstreaming_behavior '{"organization":"example_organization","feed":"example_feed","group_id":"example_group_id","artifact_id":"example_artifact_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_maven_get_upstreaming_behavior '{"organization":"example_organization","feed":"example_feed","group_id":"example_group_id","artifact_id":"example_artifact_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_maven_set_upstreaming_behavior

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).

Read read
Parameters
organization, feed, group_id, artifact_id, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_maven_set_upstreaming_behavior '{"organization":"example_organization","feed":"example_feed","group_id":"example_group_id","artifact_id":"example_artifact_id","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_maven_set_upstreaming_behavior '{"organization":"example_organization","feed":"example_feed","group_id":"example_group_id","artifact_id":"example_artifact_id","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_maven_get_package_version

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).

Read read
Parameters
organization, feed, group_id, artifact_id, version, project, show_deleted, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_maven_get_package_version '{"organization":"example_organization","feed":"example_feed","group_id":"example_group_id","artifact_id":"example_artifact_id","version":"example_version","project":"example_project","show_deleted":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_maven_get_package_version '{"organization":"example_organization","feed":"example_feed","group_id":"example_group_id","artifact_id":"example_artifact_id","version":"example_version","project":"example_project","show_deleted":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_maven_update_package_version

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).

Write write
Parameters
organization, body, feed, group_id, artifact_id, version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_maven_update_package_version '{"organization":"example_organization","body":"example_body","feed":"example_feed","group_id":"example_group_id","artifact_id":"example_artifact_id","version":"example_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_maven_update_package_version '{"organization":"example_organization","body":"example_body","feed":"example_feed","group_id":"example_group_id","artifact_id":"example_artifact_id","version":"example_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_maven_delete_package_version

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).

Write write
Parameters
organization, feed, group_id, artifact_id, version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_maven_delete_package_version '{"organization":"example_organization","feed":"example_feed","group_id":"example_group_id","artifact_id":"example_artifact_id","version":"example_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_maven_delete_package_version '{"organization":"example_organization","feed":"example_feed","group_id":"example_group_id","artifact_id":"example_artifact_id","version":"example_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_validate_custom_public_upstream_source

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_validate_custom_public_upstream_source '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_validate_custom_public_upstream_source '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_version

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).

Read read
Parameters
organization, feed_id, package_scope, unscoped_package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_get_scoped_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_update_scoped_package

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).

Write write
Parameters
organization, body, feed_id, package_scope, unscoped_package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_update_scoped_package '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_update_scoped_package '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_unpublish_scoped_package

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).

Read read
Parameters
organization, feed_id, package_scope, unscoped_package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_unpublish_scoped_package '{"organization":"example_organization","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_unpublish_scoped_package '{"organization":"example_organization","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_update_recycle_bin_packages

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).

Write write
Parameters
organization, body, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_update_recycle_bin_packages '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_update_recycle_bin_packages '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_version_from_recycle_bin

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).

Read read
Parameters
organization, feed_id, package_scope, unscoped_package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_get_scoped_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_restore_scoped_package_version_from_recycle_bin

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).

Read read
Parameters
organization, body, feed_id, package_scope, unscoped_package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_restore_scoped_package_version_from_recycle_bin '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_restore_scoped_package_version_from_recycle_bin '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_delete_scoped_package_version_from_recycle_bin

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).

Write write
Parameters
organization, feed_id, package_scope, unscoped_package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_delete_scoped_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_delete_scoped_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_get_package_version_from_recycle_bin

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).

Read read
Parameters
organization, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_get_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_get_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_restore_package_version_from_recycle_bin

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).

Read read
Parameters
organization, body, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_restore_package_version_from_recycle_bin '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_restore_package_version_from_recycle_bin '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_delete_package_version_from_recycle_bin

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).

Write write
Parameters
organization, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_delete_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_delete_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_get_package_upstreaming_behavior

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).

Read read
Parameters
organization, feed_id, package_scope, unscoped_package_name, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_get_package_upstreaming_behavior '{"organization":"example_organization","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_get_package_upstreaming_behavior '{"organization":"example_organization","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_set_scoped_upstreaming_behavior

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).

Read read
Parameters
organization, feed_id, package_scope, unscoped_package_name, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_set_scoped_upstreaming_behavior '{"organization":"example_organization","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_set_scoped_upstreaming_behavior '{"organization":"example_organization","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_download_scoped_package

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).

Read read
Parameters
organization, feed_id, package_scope, unscoped_package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_download_scoped_package '{"organization":"example_organization","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_download_scoped_package '{"organization":"example_organization","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_readme

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).

Read read
Parameters
organization, feed_id, package_scope, unscoped_package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_readme '{"organization":"example_organization","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_get_scoped_package_readme '{"organization":"example_organization","feed_id":"example_feed_id","package_scope":"example_package_scope","unscoped_package_name":"example_unscoped_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_upstreaming_behavior

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).

Read read
Parameters
organization, feed_id, package_name, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_upstreaming_behavior '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_get_scoped_package_upstreaming_behavior '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_set_upstreaming_behavior

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).

Read read
Parameters
organization, feed_id, package_name, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_set_upstreaming_behavior '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_set_upstreaming_behavior '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_download_package

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).

Read read
Parameters
organization, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_download_package '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_download_package '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_get_package_readme

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).

Read read
Parameters
organization, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_get_package_readme '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_get_package_readme '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_update_packages

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).

Write write
Parameters
organization, body, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_update_packages '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_update_packages '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_get_package_version

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).

Read read
Parameters
organization, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_get_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_get_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_update_package

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).

Write write
Parameters
organization, body, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_update_package '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_update_package '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_npm_unpublish_package

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).

Read read
Parameters
organization, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_npm_unpublish_package '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_npm_unpublish_package '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_nu_get_get_package_version_from_recycle_bin

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).

Read read
Parameters
organization, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_nu_get_get_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_nu_get_get_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_nu_get_restore_package_version_from_recycle_bin

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).

Read read
Parameters
organization, body, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_nu_get_restore_package_version_from_recycle_bin '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_nu_get_restore_package_version_from_recycle_bin '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_nu_get_delete_package_version_from_recycle_bin

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).

Write write
Parameters
organization, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_nu_get_delete_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_nu_get_delete_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_nu_get_update_recycle_bin_package_versions

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).

Write write
Parameters
organization, body, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_nu_get_update_recycle_bin_package_versions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_nu_get_update_recycle_bin_package_versions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_nu_get_get_upstreaming_behavior

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).

Read read
Parameters
organization, feed_id, package_name, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_nu_get_get_upstreaming_behavior '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_nu_get_get_upstreaming_behavior '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_nu_get_set_upstreaming_behavior

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).

Read read
Parameters
organization, feed_id, package_name, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_nu_get_set_upstreaming_behavior '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_nu_get_set_upstreaming_behavior '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_nu_get_get_package_version

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).

Read read
Parameters
organization, feed_id, package_name, package_version, project, show_deleted, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_nu_get_get_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","show_deleted":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_nu_get_get_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","show_deleted":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_nu_get_update_package_version

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).

Write write
Parameters
organization, body, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_nu_get_update_package_version '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_nu_get_update_package_version '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_nu_get_delete_package_version

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).

Write write
Parameters
organization, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_nu_get_delete_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_nu_get_delete_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_nu_get_download_package

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).

Read read
Parameters
organization, feed_id, package_name, package_version, project, source_protocol_version, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_nu_get_download_package '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","source_protocol_version":"example_source_protocol_version","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_nu_get_download_package '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","source_protocol_version":"example_source_protocol_version","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_nu_get_update_package_versions

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).

Write write
Parameters
organization, body, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_nu_get_update_package_versions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_nu_get_update_package_versions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_python_get_package_version_from_recycle_bin

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).

Read read
Parameters
organization, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_python_get_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_python_get_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_python_restore_package_version_from_recycle_bin

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).

Read read
Parameters
organization, body, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_python_restore_package_version_from_recycle_bin '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_python_restore_package_version_from_recycle_bin '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_python_delete_package_version_from_recycle_bin

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).

Write write
Parameters
organization, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_python_delete_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_python_delete_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_python_update_recycle_bin_package_versions

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).

Write write
Parameters
organization, body, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_python_update_recycle_bin_package_versions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_python_update_recycle_bin_package_versions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_python_get_upstreaming_behavior

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).

Read read
Parameters
organization, feed_id, package_name, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_python_get_upstreaming_behavior '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_python_get_upstreaming_behavior '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_python_set_upstreaming_behavior

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).

Read read
Parameters
organization, feed_id, package_name, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_python_set_upstreaming_behavior '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_python_set_upstreaming_behavior '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_python_get_package_version

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).

Read read
Parameters
organization, feed_id, package_name, package_version, project, show_deleted, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_python_get_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","show_deleted":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_python_get_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","show_deleted":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_python_update_package_version

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).

Write write
Parameters
organization, body, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_python_update_package_version '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_python_update_package_version '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_python_delete_package_version

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).

Write write
Parameters
organization, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_python_delete_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_python_delete_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_python_download_package

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).

Read read
Parameters
organization, feed_id, package_name, package_version, file_name, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_python_download_package '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","file_name":"example_file_name","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_python_download_package '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","file_name":"example_file_name","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_python_update_package_versions

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).

Write write
Parameters
organization, body, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_python_update_package_versions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_python_update_package_versions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_universal_get_package_version_from_recycle_bin

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).

Read read
Parameters
organization, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_universal_get_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_universal_get_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_universal_restore_package_version_from_recycle_bin

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).

Read read
Parameters
organization, body, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_universal_restore_package_version_from_recycle_bin '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_universal_restore_package_version_from_recycle_bin '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_universal_delete_package_version_from_recycle_bin

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).

Write write
Parameters
organization, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_universal_delete_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_universal_delete_package_version_from_recycle_bin '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_universal_update_recycle_bin_package_versions

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).

Write write
Parameters
organization, body, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_universal_update_recycle_bin_package_versions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_universal_update_recycle_bin_package_versions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_universal_get_package_version

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).

Read read
Parameters
organization, feed_id, package_name, package_version, project, show_deleted, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_universal_get_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","show_deleted":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_universal_get_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","show_deleted":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_universal_update_package_version

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).

Write write
Parameters
organization, body, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_universal_update_package_version '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_universal_update_package_version '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_universal_delete_package_version

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).

Write write
Parameters
organization, feed_id, package_name, package_version, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_universal_delete_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_universal_delete_package_version '{"organization":"example_organization","feed_id":"example_feed_id","package_name":"example_package_name","package_version":"example_package_version","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_artifacts_package_types_universal_update_package_versions

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).

Write write
Parameters
organization, body, feed_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_artifacts_package_types_universal_update_package_versions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_artifacts_package_types_universal_update_package_versions '{"organization":"example_organization","body":"example_body","feed_id":"example_feed_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_audit_actions_list

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).

Read read
Parameters
organization, area_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_audit_actions_list '{"organization":"example_organization","area_name":"example_area_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_audit_actions_list '{"organization":"example_organization","area_name":"example_area_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_audit_audit_log_query

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).

Read read
Parameters
organization, start_time, end_time, batch_size, continuation_token, skip_aggregation, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_audit_audit_log_query '{"organization":"example_organization","start_time":"example_start_time","end_time":"example_end_time","batch_size":1,"continuation_token":"example_continuation_token","skip_aggregation":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_audit_audit_log_query '{"organization":"example_organization","start_time":"example_start_time","end_time":"example_end_time","batch_size":1,"continuation_token":"example_continuation_token","skip_aggregation":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_audit_download_log_download_log

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).

Read read
Parameters
organization, format, start_time, end_time, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_audit_download_log_download_log '{"organization":"example_organization","format":"example_format","start_time":"example_start_time","end_time":"example_end_time","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_audit_download_log_download_log '{"organization":"example_organization","format":"example_format","start_time":"example_start_time","end_time":"example_end_time","api_version":"example_api_version"}' --json

azure-devops.azure_devops_audit_streams_query_all_streams

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).

Read read
Parameters
organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_audit_streams_query_all_streams '{"organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_audit_streams_query_all_streams '{"organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_audit_streams_create

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).

Read read
Parameters
organization, body, days_to_backfill, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_audit_streams_create '{"organization":"example_organization","body":"example_body","days_to_backfill":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_audit_streams_create '{"organization":"example_organization","body":"example_body","days_to_backfill":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_audit_streams_update_stream

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).

Write write
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_audit_streams_update_stream '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_audit_streams_update_stream '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_audit_streams_query_stream_by_id

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).

Read read
Parameters
organization, stream_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_audit_streams_query_stream_by_id '{"organization":"example_organization","stream_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_audit_streams_query_stream_by_id '{"organization":"example_organization","stream_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_audit_streams_update_status

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).

Write write
Parameters
organization, stream_id, status, api_version, body
Generic call
kosmo integrations:call azure-devops.azure_devops_audit_streams_update_status '{"organization":"example_organization","stream_id":1,"status":"example_status","api_version":"example_api_version","body":"example_body"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_audit_streams_update_status '{"organization":"example_organization","stream_id":1,"status":"example_status","api_version":"example_api_version","body":"example_body"}' --json

azure-devops.azure_devops_audit_streams_delete

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).

Read read
Parameters
organization, stream_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_audit_streams_delete '{"organization":"example_organization","stream_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_audit_streams_delete '{"organization":"example_organization","stream_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_controllers_list

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).

Read read
Parameters
organization, name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_controllers_list '{"organization":"example_organization","name":"example_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_controllers_list '{"organization":"example_organization","name":"example_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_controllers_get

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).

Read read
Parameters
organization, controller_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_controllers_get '{"organization":"example_organization","controller_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_controllers_get '{"organization":"example_organization","controller_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_resource_usage_get

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).

Read read
Parameters
organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_resource_usage_get '{"organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_resource_usage_get '{"organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_history_get

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).

Read read
Parameters
organization, days_to_lookback, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_history_get '{"organization":"example_organization","days_to_lookback":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_history_get '{"organization":"example_organization","days_to_lookback":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_badge_get

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).

Read read
Parameters
organization, project, definition_id, branch_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_badge_get '{"organization":"example_organization","project":"example_project","definition_id":1,"branch_name":"example_branch_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_badge_get '{"organization":"example_organization","project":"example_project","definition_id":1,"branch_name":"example_branch_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_authorizedresources_list

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).

Read read
Parameters
organization, project, type, id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_authorizedresources_list '{"organization":"example_organization","project":"example_project","type":"example_type","id":"example_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_authorizedresources_list '{"organization":"example_organization","project":"example_project","type":"example_type","id":"example_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_authorizedresources_authorize_project_resources

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_authorizedresources_authorize_project_resources '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_authorizedresources_authorize_project_resources '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_builds_list

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).

Read read
Parameters
organization, project, definitions, queues, build_number, min_time, max_time, requested_for, reason_filter, status_filter, result_filter, tag_filters, properties, top, continuation_token, max_builds_per_definition, deleted_filter, query_order, branch_name, build_ids, repository_id, repository_type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_builds_list '{"organization":"example_organization","project":"example_project","definitions":"example_definitions","queues":"example_queues","build_number":"example_build_number","min_time":"example_min_time","max_time":"example_max_time","requested_for":"example_requested_for"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_builds_list '{"organization":"example_organization","project":"example_project","definitions":"example_definitions","queues":"example_queues","build_number":"example_build_number","min_time":"example_min_time","max_time":"example_max_time","requested_for":"example_requested_for"}' --json

azure-devops.azure_devops_build_builds_queue

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).

Read read
Parameters
organization, body, project, ignore_warnings, check_in_ticket, source_build_id, definition_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_builds_queue '{"organization":"example_organization","body":"example_body","project":"example_project","ignore_warnings":true,"check_in_ticket":"example_check_in_ticket","source_build_id":1,"definition_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_builds_queue '{"organization":"example_organization","body":"example_body","project":"example_project","ignore_warnings":true,"check_in_ticket":"example_check_in_ticket","source_build_id":1,"definition_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_builds_update_builds

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_builds_update_builds '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_builds_update_builds '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_builds_get

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).

Read read
Parameters
organization, project, build_id, property_filters, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_builds_get '{"organization":"example_organization","project":"example_project","build_id":1,"property_filters":"example_property_filters","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_builds_get '{"organization":"example_organization","project":"example_project","build_id":1,"property_filters":"example_property_filters","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_builds_update_build

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).

Write write
Parameters
organization, body, project, build_id, retry, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_builds_update_build '{"organization":"example_organization","body":"example_body","project":"example_project","build_id":1,"retry":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_builds_update_build '{"organization":"example_organization","body":"example_body","project":"example_project","build_id":1,"retry":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_builds_delete

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).

Read read
Parameters
organization, project, build_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_builds_delete '{"organization":"example_organization","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_builds_delete '{"organization":"example_organization","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_stage_timeline_get_build_stage_latest_timeline

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).

Read read
Parameters
organization, project, build_id, stage_name, change_id, plan_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_stage_timeline_get_build_stage_latest_timeline '{"organization":"example_organization","project":"example_project","build_id":1,"stage_name":"example_stage_name","change_id":1,"plan_id":"example_plan_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_stage_timeline_get_build_stage_latest_timeline '{"organization":"example_organization","project":"example_project","build_id":1,"stage_name":"example_stage_name","change_id":1,"plan_id":"example_plan_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_stage_timeline_get_build_stage_timeline

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).

Read read
Parameters
organization, project, build_id, timeline_id, stage_name, change_id, plan_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_stage_timeline_get_build_stage_timeline '{"organization":"example_organization","project":"example_project","build_id":1,"timeline_id":"example_timeline_id","stage_name":"example_stage_name","change_id":1,"plan_id":"example_plan_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_stage_timeline_get_build_stage_timeline '{"organization":"example_organization","project":"example_project","build_id":1,"timeline_id":"example_timeline_id","stage_name":"example_stage_name","change_id":1,"plan_id":"example_plan_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_artifacts_list

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).

Read read
Parameters
organization, project, build_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_artifacts_list '{"organization":"example_organization","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_artifacts_list '{"organization":"example_organization","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_artifacts_create

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).

Read read
Parameters
organization, body, project, build_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_artifacts_create '{"organization":"example_organization","body":"example_body","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_artifacts_create '{"organization":"example_organization","body":"example_body","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_attachments_list

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).

Read read
Parameters
organization, project, build_id, type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_attachments_list '{"organization":"example_organization","project":"example_project","build_id":1,"type":"example_type","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_attachments_list '{"organization":"example_organization","project":"example_project","build_id":1,"type":"example_type","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_builds_get_build_changes

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).

Read read
Parameters
organization, project, build_id, continuation_token, top, include_source_change, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_builds_get_build_changes '{"organization":"example_organization","project":"example_project","build_id":1,"continuation_token":"example_continuation_token","top":1,"include_source_change":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_builds_get_build_changes '{"organization":"example_organization","project":"example_project","build_id":1,"continuation_token":"example_continuation_token","top":1,"include_source_change":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_builds_get_retention_leases_for_build

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).

Read read
Parameters
organization, project, build_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_builds_get_retention_leases_for_build '{"organization":"example_organization","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_builds_get_retention_leases_for_build '{"organization":"example_organization","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_builds_get_build_logs

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).

Read read
Parameters
organization, project, build_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_builds_get_build_logs '{"organization":"example_organization","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_builds_get_build_logs '{"organization":"example_organization","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_builds_get_build_log

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).

Read read
Parameters
organization, project, build_id, log_id, start_line, end_line, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_builds_get_build_log '{"organization":"example_organization","project":"example_project","build_id":1,"log_id":1,"start_line":1,"end_line":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_builds_get_build_log '{"organization":"example_organization","project":"example_project","build_id":1,"log_id":1,"start_line":1,"end_line":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_properties_get_build_properties

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).

Read read
Parameters
organization, project, build_id, filter, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_properties_get_build_properties '{"organization":"example_organization","project":"example_project","build_id":1,"filter":"example_filter","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_properties_get_build_properties '{"organization":"example_organization","project":"example_project","build_id":1,"filter":"example_filter","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_properties_update_build_properties

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).

Write write
Parameters
organization, body, project, build_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_properties_update_build_properties '{"organization":"example_organization","body":"example_body","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_properties_update_build_properties '{"organization":"example_organization","body":"example_body","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_report_get

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).

Read read
Parameters
organization, project, build_id, type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_report_get '{"organization":"example_organization","project":"example_project","build_id":1,"type":"example_type","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_report_get '{"organization":"example_organization","project":"example_project","build_id":1,"type":"example_type","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_stages_update

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).

Read read
Parameters
organization, body, build_id, stage_ref_name, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_stages_update '{"organization":"example_organization","body":"example_body","build_id":1,"stage_ref_name":"example_stage_ref_name","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_stages_update '{"organization":"example_organization","body":"example_body","build_id":1,"stage_ref_name":"example_stage_ref_name","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_tags_get_build_tags

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).

Read read
Parameters
organization, project, build_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_tags_get_build_tags '{"organization":"example_organization","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_tags_get_build_tags '{"organization":"example_organization","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_tags_add_build_tags

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).

Write write
Parameters
organization, body, project, build_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_tags_add_build_tags '{"organization":"example_organization","body":"example_body","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_tags_add_build_tags '{"organization":"example_organization","body":"example_body","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_tags_update_build_tags

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).

Write write
Parameters
organization, body, project, build_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_tags_update_build_tags '{"organization":"example_organization","body":"example_body","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_tags_update_build_tags '{"organization":"example_organization","body":"example_body","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_tags_add_build_tag

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).

Write write
Parameters
organization, project, build_id, tag, api_version, body
Generic call
kosmo integrations:call azure-devops.azure_devops_build_tags_add_build_tag '{"organization":"example_organization","project":"example_project","build_id":1,"tag":"example_tag","api_version":"example_api_version","body":"example_body"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_tags_add_build_tag '{"organization":"example_organization","project":"example_project","build_id":1,"tag":"example_tag","api_version":"example_api_version","body":"example_body"}' --json

azure-devops.azure_devops_build_tags_delete_build_tag

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).

Write write
Parameters
organization, project, build_id, tag, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_tags_delete_build_tag '{"organization":"example_organization","project":"example_project","build_id":1,"tag":"example_tag","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_tags_delete_build_tag '{"organization":"example_organization","project":"example_project","build_id":1,"tag":"example_tag","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_timeline_get

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).

Read read
Parameters
organization, project, build_id, timeline_id, change_id, plan_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_timeline_get '{"organization":"example_organization","project":"example_project","build_id":1,"timeline_id":"example_timeline_id","change_id":1,"plan_id":"example_plan_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_timeline_get '{"organization":"example_organization","project":"example_project","build_id":1,"timeline_id":"example_timeline_id","change_id":1,"plan_id":"example_plan_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_builds_get_build_work_items_refs

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).

Read read
Parameters
organization, project, build_id, top, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_builds_get_build_work_items_refs '{"organization":"example_organization","project":"example_project","build_id":1,"top":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_builds_get_build_work_items_refs '{"organization":"example_organization","project":"example_project","build_id":1,"top":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_builds_get_build_work_items_refs_from_commits

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).

Read read
Parameters
organization, body, project, build_id, top, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_builds_get_build_work_items_refs_from_commits '{"organization":"example_organization","body":"example_body","project":"example_project","build_id":1,"top":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_builds_get_build_work_items_refs_from_commits '{"organization":"example_organization","body":"example_body","project":"example_project","build_id":1,"top":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_attachments_get

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).

Read read
Parameters
organization, project, build_id, timeline_id, record_id, type, name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_attachments_get '{"organization":"example_organization","project":"example_project","build_id":1,"timeline_id":"example_timeline_id","record_id":"example_record_id","type":"example_type","name":"example_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_attachments_get '{"organization":"example_organization","project":"example_project","build_id":1,"timeline_id":"example_timeline_id","record_id":"example_record_id","type":"example_type","name":"example_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_builds_get_changes_between_builds

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).

Read read
Parameters
organization, project, from_build_id, to_build_id, top, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_builds_get_changes_between_builds '{"organization":"example_organization","project":"example_project","from_build_id":1,"to_build_id":1,"top":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_builds_get_changes_between_builds '{"organization":"example_organization","project":"example_project","from_build_id":1,"to_build_id":1,"top":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_definitions_list

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).

Read read
Parameters
organization, project, name, repository_id, repository_type, query_order, top, continuation_token, min_metrics_time, definition_ids, path, built_after, not_built_after, include_all_properties, include_latest_builds, task_id_filter, process_type, yaml_filename, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_definitions_list '{"organization":"example_organization","project":"example_project","name":"example_name","repository_id":"example_repository_id","repository_type":"example_repository_type","query_order":"example_query_order","top":1,"continuation_token":"example_continuation_token"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_definitions_list '{"organization":"example_organization","project":"example_project","name":"example_name","repository_id":"example_repository_id","repository_type":"example_repository_type","query_order":"example_query_order","top":1,"continuation_token":"example_continuation_token"}' --json

azure-devops.azure_devops_build_definitions_create

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).

Read read
Parameters
organization, body, project, definition_to_clone_id, definition_to_clone_revision, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_definitions_create '{"organization":"example_organization","body":"example_body","project":"example_project","definition_to_clone_id":1,"definition_to_clone_revision":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_definitions_create '{"organization":"example_organization","body":"example_body","project":"example_project","definition_to_clone_id":1,"definition_to_clone_revision":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_templates_list

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_templates_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_templates_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_templates_get

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).

Read read
Parameters
organization, project, template_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_templates_get '{"organization":"example_organization","project":"example_project","template_id":"example_template_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_templates_get '{"organization":"example_organization","project":"example_project","template_id":"example_template_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_templates_save_template

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).

Read read
Parameters
organization, body, project, template_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_templates_save_template '{"organization":"example_organization","body":"example_body","project":"example_project","template_id":"example_template_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_templates_save_template '{"organization":"example_organization","body":"example_body","project":"example_project","template_id":"example_template_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_templates_delete

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).

Read read
Parameters
organization, project, template_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_templates_delete '{"organization":"example_organization","project":"example_project","template_id":"example_template_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_templates_delete '{"organization":"example_organization","project":"example_project","template_id":"example_template_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_tags_get_definition_tags

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).

Read read
Parameters
organization, project, definition_id, revision, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_tags_get_definition_tags '{"organization":"example_organization","project":"example_project","definition_id":1,"revision":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_tags_get_definition_tags '{"organization":"example_organization","project":"example_project","definition_id":1,"revision":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_tags_add_definition_tags

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).

Write write
Parameters
organization, body, project, definition_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_tags_add_definition_tags '{"organization":"example_organization","body":"example_body","project":"example_project","definition_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_tags_add_definition_tags '{"organization":"example_organization","body":"example_body","project":"example_project","definition_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_tags_update_definition_tags

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).

Write write
Parameters
organization, body, project, definition_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_tags_update_definition_tags '{"organization":"example_organization","body":"example_body","project":"example_project","definition_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_tags_update_definition_tags '{"organization":"example_organization","body":"example_body","project":"example_project","definition_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_tags_add_definition_tag

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).

Write write
Parameters
organization, project, definition_id, tag, api_version, body
Generic call
kosmo integrations:call azure-devops.azure_devops_build_tags_add_definition_tag '{"organization":"example_organization","project":"example_project","definition_id":1,"tag":"example_tag","api_version":"example_api_version","body":"example_body"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_tags_add_definition_tag '{"organization":"example_organization","project":"example_project","definition_id":1,"tag":"example_tag","api_version":"example_api_version","body":"example_body"}' --json

azure-devops.azure_devops_build_tags_delete_definition_tag

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).

Write write
Parameters
organization, project, definition_id, tag, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_tags_delete_definition_tag '{"organization":"example_organization","project":"example_project","definition_id":1,"tag":"example_tag","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_tags_delete_definition_tag '{"organization":"example_organization","project":"example_project","definition_id":1,"tag":"example_tag","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_definitions_get

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).

Read read
Parameters
organization, project, definition_id, revision, min_metrics_time, property_filters, include_latest_builds, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_definitions_get '{"organization":"example_organization","project":"example_project","definition_id":1,"revision":1,"min_metrics_time":"example_min_metrics_time","property_filters":"example_property_filters","include_latest_builds":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_definitions_get '{"organization":"example_organization","project":"example_project","definition_id":1,"revision":1,"min_metrics_time":"example_min_metrics_time","property_filters":"example_property_filters","include_latest_builds":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_definitions_update

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).

Read read
Parameters
organization, body, project, definition_id, secrets_source_definition_id, secrets_source_definition_revision, cancel_paused_builds, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_definitions_update '{"organization":"example_organization","body":"example_body","project":"example_project","definition_id":1,"secrets_source_definition_id":1,"secrets_source_definition_revision":1,"cancel_paused_builds":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_definitions_update '{"organization":"example_organization","body":"example_body","project":"example_project","definition_id":1,"secrets_source_definition_id":1,"secrets_source_definition_revision":1,"cancel_paused_builds":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_definitions_restore_definition

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).

Read read
Parameters
organization, project, definition_id, deleted, api_version, body
Generic call
kosmo integrations:call azure-devops.azure_devops_build_definitions_restore_definition '{"organization":"example_organization","project":"example_project","definition_id":1,"deleted":true,"api_version":"example_api_version","body":"example_body"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_definitions_restore_definition '{"organization":"example_organization","project":"example_project","definition_id":1,"deleted":true,"api_version":"example_api_version","body":"example_body"}' --json

azure-devops.azure_devops_build_definitions_delete

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).

Read read
Parameters
organization, project, definition_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_definitions_delete '{"organization":"example_organization","project":"example_project","definition_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_definitions_delete '{"organization":"example_organization","project":"example_project","definition_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_metrics_get_definition_metrics

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).

Read read
Parameters
organization, project, definition_id, min_metrics_time, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_metrics_get_definition_metrics '{"organization":"example_organization","project":"example_project","definition_id":1,"min_metrics_time":"example_min_metrics_time","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_metrics_get_definition_metrics '{"organization":"example_organization","project":"example_project","definition_id":1,"min_metrics_time":"example_min_metrics_time","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_properties_get_definition_properties

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).

Read read
Parameters
organization, project, definition_id, filter, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_properties_get_definition_properties '{"organization":"example_organization","project":"example_project","definition_id":1,"filter":"example_filter","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_properties_get_definition_properties '{"organization":"example_organization","project":"example_project","definition_id":1,"filter":"example_filter","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_properties_update_definition_properties

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).

Write write
Parameters
organization, body, project, definition_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_properties_update_definition_properties '{"organization":"example_organization","body":"example_body","project":"example_project","definition_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_properties_update_definition_properties '{"organization":"example_organization","body":"example_body","project":"example_project","definition_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_resources_list

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).

Read read
Parameters
organization, project, definition_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_resources_list '{"organization":"example_organization","project":"example_project","definition_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_resources_list '{"organization":"example_organization","project":"example_project","definition_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_resources_authorize_definition_resources

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).

Read read
Parameters
organization, body, project, definition_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_resources_authorize_definition_resources '{"organization":"example_organization","body":"example_body","project":"example_project","definition_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_resources_authorize_definition_resources '{"organization":"example_organization","body":"example_body","project":"example_project","definition_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_definitions_get_definition_revisions

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).

Read read
Parameters
organization, project, definition_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_definitions_get_definition_revisions '{"organization":"example_organization","project":"example_project","definition_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_definitions_get_definition_revisions '{"organization":"example_organization","project":"example_project","definition_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_yaml_get

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).

Read read
Parameters
organization, project, definition_id, revision, min_metrics_time, property_filters, include_latest_builds, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_yaml_get '{"organization":"example_organization","project":"example_project","definition_id":1,"revision":1,"min_metrics_time":"example_min_metrics_time","property_filters":"example_property_filters","include_latest_builds":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_yaml_get '{"organization":"example_organization","project":"example_project","definition_id":1,"revision":1,"min_metrics_time":"example_min_metrics_time","property_filters":"example_property_filters","include_latest_builds":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_folders_update

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).

Read read
Parameters
organization, body, project, path, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_folders_update '{"organization":"example_organization","body":"example_body","project":"example_project","path":"example_path","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_folders_update '{"organization":"example_organization","body":"example_body","project":"example_project","path":"example_path","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_folders_create

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).

Read read
Parameters
organization, body, project, path, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_folders_create '{"organization":"example_organization","body":"example_body","project":"example_project","path":"example_path","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_folders_create '{"organization":"example_organization","body":"example_body","project":"example_project","path":"example_path","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_folders_delete

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).

Read read
Parameters
organization, project, path, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_folders_delete '{"organization":"example_organization","project":"example_project","path":"example_path","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_folders_delete '{"organization":"example_organization","project":"example_project","path":"example_path","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_folders_list

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).

Read read
Parameters
organization, project, path, query_order, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_folders_list '{"organization":"example_organization","project":"example_project","path":"example_path","query_order":"example_query_order","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_folders_list '{"organization":"example_organization","project":"example_project","path":"example_path","query_order":"example_query_order","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_general_settings_get

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_general_settings_get '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_general_settings_get '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_general_settings_update

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_general_settings_update '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_general_settings_update '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_latest_get

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).

Read read
Parameters
organization, project, definition, branch_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_latest_get '{"organization":"example_organization","project":"example_project","definition":"example_definition","branch_name":"example_branch_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_latest_get '{"organization":"example_organization","project":"example_project","definition":"example_definition","branch_name":"example_branch_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_metrics_get_project_metrics

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).

Read read
Parameters
organization, project, metric_aggregation_type, min_metrics_time, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_metrics_get_project_metrics '{"organization":"example_organization","project":"example_project","metric_aggregation_type":"example_metric_aggregation_type","min_metrics_time":"example_min_metrics_time","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_metrics_get_project_metrics '{"organization":"example_organization","project":"example_project","metric_aggregation_type":"example_metric_aggregation_type","min_metrics_time":"example_min_metrics_time","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_options_list

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_options_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_options_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_badge_get_build_badge_data

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).

Read read
Parameters
organization, project, repo_type, repo_id, branch_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_badge_get_build_badge_data '{"organization":"example_organization","project":"example_project","repo_type":"example_repo_type","repo_id":"example_repo_id","branch_name":"example_branch_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_badge_get_build_badge_data '{"organization":"example_organization","project":"example_project","repo_type":"example_repo_type","repo_id":"example_repo_id","branch_name":"example_branch_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_retention_get

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_retention_get '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_retention_get '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_retention_update

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_retention_update '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_retention_update '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_leases_get_retention_leases_by_minimal_retention_leases

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).

Read read
Parameters
organization, project, leases_to_fetch, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_leases_get_retention_leases_by_minimal_retention_leases '{"organization":"example_organization","project":"example_project","leases_to_fetch":"example_leases_to_fetch","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_leases_get_retention_leases_by_minimal_retention_leases '{"organization":"example_organization","project":"example_project","leases_to_fetch":"example_leases_to_fetch","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_leases_add

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_leases_add '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_leases_add '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_leases_delete

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).

Read read
Parameters
organization, project, ids, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_leases_delete '{"organization":"example_organization","project":"example_project","ids":"example_ids","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_leases_delete '{"organization":"example_organization","project":"example_project","ids":"example_ids","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_leases_get

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).

Read read
Parameters
organization, project, lease_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_leases_get '{"organization":"example_organization","project":"example_project","lease_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_leases_get '{"organization":"example_organization","project":"example_project","lease_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_leases_update

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).

Read read
Parameters
organization, body, project, lease_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_leases_update '{"organization":"example_organization","body":"example_body","project":"example_project","lease_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_leases_update '{"organization":"example_organization","body":"example_body","project":"example_project","lease_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_settings_get

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_settings_get '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_settings_get '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_settings_update

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_settings_update '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_settings_update '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_status_get

<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).

Read read
Parameters
organization, project, definition, branch_name, stage_name, job_name, configuration, label, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_status_get '{"organization":"example_organization","project":"example_project","definition":"example_definition","branch_name":"example_branch_name","stage_name":"example_stage_name","job_name":"example_job_name","configuration":"example_configuration","label":"example_label"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_status_get '{"organization":"example_organization","project":"example_project","definition":"example_definition","branch_name":"example_branch_name","stage_name":"example_stage_name","job_name":"example_job_name","configuration":"example_configuration","label":"example_label"}' --json

azure-devops.azure_devops_build_tags_get_tags

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_tags_get_tags '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_tags_get_tags '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_tags_delete_tag

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).

Write write
Parameters
organization, project, tag, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_tags_delete_tag '{"organization":"example_organization","project":"example_project","tag":"example_tag","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_tags_delete_tag '{"organization":"example_organization","project":"example_project","tag":"example_tag","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_builds_get_work_items_between_builds

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).

Read read
Parameters
organization, project, from_build_id, to_build_id, top, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_builds_get_work_items_between_builds '{"organization":"example_organization","project":"example_project","from_build_id":1,"to_build_id":1,"top":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_builds_get_work_items_between_builds '{"organization":"example_organization","project":"example_project","from_build_id":1,"to_build_id":1,"top":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_source_providers_list_branches

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).

Read read
Parameters
organization, project, provider_name, service_endpoint_id, repository, branch_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_source_providers_list_branches '{"organization":"example_organization","project":"example_project","provider_name":"example_provider_name","service_endpoint_id":"example_service_endpoint_id","repository":"example_repository","branch_name":"example_branch_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_source_providers_list_branches '{"organization":"example_organization","project":"example_project","provider_name":"example_provider_name","service_endpoint_id":"example_service_endpoint_id","repository":"example_repository","branch_name":"example_branch_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_source_providers_get_file_contents

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).

Read read
Parameters
organization, project, provider_name, service_endpoint_id, repository, commit_or_branch, path, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_source_providers_get_file_contents '{"organization":"example_organization","project":"example_project","provider_name":"example_provider_name","service_endpoint_id":"example_service_endpoint_id","repository":"example_repository","commit_or_branch":"example_commit_or_branch","path":"example_path","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_source_providers_get_file_contents '{"organization":"example_organization","project":"example_project","provider_name":"example_provider_name","service_endpoint_id":"example_service_endpoint_id","repository":"example_repository","commit_or_branch":"example_commit_or_branch","path":"example_path","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_source_providers_get_path_contents

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).

Read read
Parameters
organization, project, provider_name, service_endpoint_id, repository, commit_or_branch, path, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_source_providers_get_path_contents '{"organization":"example_organization","project":"example_project","provider_name":"example_provider_name","service_endpoint_id":"example_service_endpoint_id","repository":"example_repository","commit_or_branch":"example_commit_or_branch","path":"example_path","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_source_providers_get_path_contents '{"organization":"example_organization","project":"example_project","provider_name":"example_provider_name","service_endpoint_id":"example_service_endpoint_id","repository":"example_repository","commit_or_branch":"example_commit_or_branch","path":"example_path","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_source_providers_get_pull_request

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).

Read read
Parameters
organization, project, provider_name, pull_request_id, repository_id, service_endpoint_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_source_providers_get_pull_request '{"organization":"example_organization","project":"example_project","provider_name":"example_provider_name","pull_request_id":"example_pull_request_id","repository_id":"example_repository_id","service_endpoint_id":"example_service_endpoint_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_source_providers_get_pull_request '{"organization":"example_organization","project":"example_project","provider_name":"example_provider_name","pull_request_id":"example_pull_request_id","repository_id":"example_repository_id","service_endpoint_id":"example_service_endpoint_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_source_providers_list_repositories

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).

Read read
Parameters
organization, project, provider_name, service_endpoint_id, repository, result_set, page_results, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_source_providers_list_repositories '{"organization":"example_organization","project":"example_project","provider_name":"example_provider_name","service_endpoint_id":"example_service_endpoint_id","repository":"example_repository","result_set":"example_result_set","page_results":true,"continuation_token":"example_continuation_token"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_source_providers_list_repositories '{"organization":"example_organization","project":"example_project","provider_name":"example_provider_name","service_endpoint_id":"example_service_endpoint_id","repository":"example_repository","result_set":"example_result_set","page_results":true,"continuation_token":"example_continuation_token"}' --json

azure-devops.azure_devops_build_source_providers_list_webhooks

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).

Read read
Parameters
organization, project, provider_name, service_endpoint_id, repository, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_source_providers_list_webhooks '{"organization":"example_organization","project":"example_project","provider_name":"example_provider_name","service_endpoint_id":"example_service_endpoint_id","repository":"example_repository","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_source_providers_list_webhooks '{"organization":"example_organization","project":"example_project","provider_name":"example_provider_name","service_endpoint_id":"example_service_endpoint_id","repository":"example_repository","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_source_providers_restore_webhooks

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).

Read read
Parameters
organization, body, project, provider_name, service_endpoint_id, repository, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_source_providers_restore_webhooks '{"organization":"example_organization","body":"example_body","project":"example_project","provider_name":"example_provider_name","service_endpoint_id":"example_service_endpoint_id","repository":"example_repository","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_source_providers_restore_webhooks '{"organization":"example_organization","body":"example_body","project":"example_project","provider_name":"example_provider_name","service_endpoint_id":"example_service_endpoint_id","repository":"example_repository","api_version":"example_api_version"}' --json

azure-devops.azure_devops_build_source_providers_list

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_build_source_providers_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_build_source_providers_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_core_processes_list

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).

Read read
Parameters
organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_core_processes_list '{"organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_core_processes_list '{"organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_core_processes_get

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).

Read read
Parameters
organization, process_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_core_processes_get '{"organization":"example_organization","process_id":"example_process_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_core_processes_get '{"organization":"example_organization","process_id":"example_process_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_core_projects_list

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).

Read read
Parameters
organization, state_filter, top, skip, continuation_token, get_default_team_image_url, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_core_projects_list '{"organization":"example_organization","state_filter":"example_state_filter","top":1,"skip":1,"continuation_token":1,"get_default_team_image_url":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_core_projects_list '{"organization":"example_organization","state_filter":"example_state_filter","top":1,"skip":1,"continuation_token":1,"get_default_team_image_url":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_core_projects_create

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_core_projects_create '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_core_projects_create '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_core_projects_get

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).

Read read
Parameters
organization, project_id, include_capabilities, include_history, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_core_projects_get '{"organization":"example_organization","project_id":"example_project_id","include_capabilities":true,"include_history":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_core_projects_get '{"organization":"example_organization","project_id":"example_project_id","include_capabilities":true,"include_history":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_core_projects_update

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).

Read read
Parameters
organization, body, project_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_core_projects_update '{"organization":"example_organization","body":"example_body","project_id":"example_project_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_core_projects_update '{"organization":"example_organization","body":"example_body","project_id":"example_project_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_core_projects_delete

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).

Read read
Parameters
organization, project_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_core_projects_delete '{"organization":"example_organization","project_id":"example_project_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_core_projects_delete '{"organization":"example_organization","project_id":"example_project_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_core_avatar_set_project_avatar

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).

Read read
Parameters
organization, body, project_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_core_avatar_set_project_avatar '{"organization":"example_organization","body":"example_body","project_id":"example_project_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_core_avatar_set_project_avatar '{"organization":"example_organization","body":"example_body","project_id":"example_project_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_core_avatar_remove_project_avatar

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).

Write write
Parameters
organization, project_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_core_avatar_remove_project_avatar '{"organization":"example_organization","project_id":"example_project_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_core_avatar_remove_project_avatar '{"organization":"example_organization","project_id":"example_project_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_core_categorized_teams_get

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).

Read read
Parameters
organization, project_id, expand_identity, top, skip, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_core_categorized_teams_get '{"organization":"example_organization","project_id":"example_project_id","expand_identity":true,"top":1,"skip":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_core_categorized_teams_get '{"organization":"example_organization","project_id":"example_project_id","expand_identity":true,"top":1,"skip":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_core_projects_get_project_properties

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).

Read read
Parameters
organization, project_id, keys, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_core_projects_get_project_properties '{"organization":"example_organization","project_id":"example_project_id","keys":"example_keys","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_core_projects_get_project_properties '{"organization":"example_organization","project_id":"example_project_id","keys":"example_keys","api_version":"example_api_version"}' --json

azure-devops.azure_devops_core_projects_set_project_properties

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).

Read read
Parameters
organization, project_id, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_core_projects_set_project_properties '{"organization":"example_organization","project_id":"example_project_id","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_core_projects_set_project_properties '{"organization":"example_organization","project_id":"example_project_id","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_core_teams_get_teams

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).

Read read
Parameters
organization, project_id, mine, top, skip, expand_identity, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_core_teams_get_teams '{"organization":"example_organization","project_id":"example_project_id","mine":true,"top":1,"skip":1,"expand_identity":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_core_teams_get_teams '{"organization":"example_organization","project_id":"example_project_id","mine":true,"top":1,"skip":1,"expand_identity":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_core_teams_create

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).

Read read
Parameters
organization, body, project_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_core_teams_create '{"organization":"example_organization","body":"example_body","project_id":"example_project_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_core_teams_create '{"organization":"example_organization","body":"example_body","project_id":"example_project_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_core_teams_get

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).

Read read
Parameters
organization, project_id, team_id, expand_identity, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_core_teams_get '{"organization":"example_organization","project_id":"example_project_id","team_id":"example_team_id","expand_identity":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_core_teams_get '{"organization":"example_organization","project_id":"example_project_id","team_id":"example_team_id","expand_identity":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_core_teams_update

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).

Read read
Parameters
organization, body, project_id, team_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_core_teams_update '{"organization":"example_organization","body":"example_body","project_id":"example_project_id","team_id":"example_team_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_core_teams_update '{"organization":"example_organization","body":"example_body","project_id":"example_project_id","team_id":"example_team_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_core_teams_delete

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).

Read read
Parameters
organization, project_id, team_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_core_teams_delete '{"organization":"example_organization","project_id":"example_project_id","team_id":"example_team_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_core_teams_delete '{"organization":"example_organization","project_id":"example_project_id","team_id":"example_team_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_core_teams_get_team_members_with_extended_properties

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).

Read read
Parameters
organization, project_id, team_id, top, skip, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_core_teams_get_team_members_with_extended_properties '{"organization":"example_organization","project_id":"example_project_id","team_id":"example_team_id","top":1,"skip":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_core_teams_get_team_members_with_extended_properties '{"organization":"example_organization","project_id":"example_project_id","team_id":"example_team_id","top":1,"skip":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_core_teams_get_all_teams

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).

Read read
Parameters
organization, mine, top, skip, expand_identity, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_core_teams_get_all_teams '{"organization":"example_organization","mine":true,"top":1,"skip":1,"expand_identity":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_core_teams_get_all_teams '{"organization":"example_organization","mine":true,"top":1,"skip":1,"expand_identity":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_dashboard_widget_types_get_widget_types

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).

Read read
Parameters
organization, scope, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_dashboard_widget_types_get_widget_types '{"organization":"example_organization","scope":"example_scope","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_dashboard_widget_types_get_widget_types '{"organization":"example_organization","scope":"example_scope","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_dashboard_widget_types_get_widget_metadata

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).

Read read
Parameters
organization, contribution_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_dashboard_widget_types_get_widget_metadata '{"organization":"example_organization","contribution_id":"example_contribution_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_dashboard_widget_types_get_widget_metadata '{"organization":"example_organization","contribution_id":"example_contribution_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_dashboard_dashboards_list

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).

Read read
Parameters
organization, project, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_dashboard_dashboards_list '{"organization":"example_organization","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_dashboard_dashboards_list '{"organization":"example_organization","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_dashboard_dashboards_create

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).

Read read
Parameters
organization, body, project, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_dashboard_dashboards_create '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_dashboard_dashboards_create '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_dashboard_dashboards_replace_dashboards

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).

Read read
Parameters
organization, body, project, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_dashboard_dashboards_replace_dashboards '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_dashboard_dashboards_replace_dashboards '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_dashboard_dashboards_get

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).

Read read
Parameters
organization, project, dashboard_id, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_dashboard_dashboards_get '{"organization":"example_organization","project":"example_project","dashboard_id":"example_dashboard_id","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_dashboard_dashboards_get '{"organization":"example_organization","project":"example_project","dashboard_id":"example_dashboard_id","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_dashboard_dashboards_replace_dashboard

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).

Read read
Parameters
organization, body, project, dashboard_id, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_dashboard_dashboards_replace_dashboard '{"organization":"example_organization","body":"example_body","project":"example_project","dashboard_id":"example_dashboard_id","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_dashboard_dashboards_replace_dashboard '{"organization":"example_organization","body":"example_body","project":"example_project","dashboard_id":"example_dashboard_id","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_dashboard_dashboards_delete

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).

Read read
Parameters
organization, project, dashboard_id, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_dashboard_dashboards_delete '{"organization":"example_organization","project":"example_project","dashboard_id":"example_dashboard_id","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_dashboard_dashboards_delete '{"organization":"example_organization","project":"example_project","dashboard_id":"example_dashboard_id","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_dashboard_widgets_get_widgets

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).

Read read
Parameters
organization, project, dashboard_id, team, e_tag, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_dashboard_widgets_get_widgets '{"organization":"example_organization","project":"example_project","dashboard_id":"example_dashboard_id","team":"example_team","e_tag":"example_e_tag","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_dashboard_widgets_get_widgets '{"organization":"example_organization","project":"example_project","dashboard_id":"example_dashboard_id","team":"example_team","e_tag":"example_e_tag","api_version":"example_api_version"}' --json

azure-devops.azure_devops_dashboard_widgets_create

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).

Read read
Parameters
organization, body, project, dashboard_id, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_dashboard_widgets_create '{"organization":"example_organization","body":"example_body","project":"example_project","dashboard_id":"example_dashboard_id","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_dashboard_widgets_create '{"organization":"example_organization","body":"example_body","project":"example_project","dashboard_id":"example_dashboard_id","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_dashboard_widgets_replace_widgets

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).

Read read
Parameters
organization, body, project, dashboard_id, team, e_tag, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_dashboard_widgets_replace_widgets '{"organization":"example_organization","body":"example_body","project":"example_project","dashboard_id":"example_dashboard_id","team":"example_team","e_tag":"example_e_tag","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_dashboard_widgets_replace_widgets '{"organization":"example_organization","body":"example_body","project":"example_project","dashboard_id":"example_dashboard_id","team":"example_team","e_tag":"example_e_tag","api_version":"example_api_version"}' --json

azure-devops.azure_devops_dashboard_widgets_update_widgets

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).

Write write
Parameters
organization, body, project, dashboard_id, team, e_tag, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_dashboard_widgets_update_widgets '{"organization":"example_organization","body":"example_body","project":"example_project","dashboard_id":"example_dashboard_id","team":"example_team","e_tag":"example_e_tag","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_dashboard_widgets_update_widgets '{"organization":"example_organization","body":"example_body","project":"example_project","dashboard_id":"example_dashboard_id","team":"example_team","e_tag":"example_e_tag","api_version":"example_api_version"}' --json

azure-devops.azure_devops_dashboard_widgets_get_widget

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).

Read read
Parameters
organization, project, dashboard_id, widget_id, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_dashboard_widgets_get_widget '{"organization":"example_organization","project":"example_project","dashboard_id":"example_dashboard_id","widget_id":"example_widget_id","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_dashboard_widgets_get_widget '{"organization":"example_organization","project":"example_project","dashboard_id":"example_dashboard_id","widget_id":"example_widget_id","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_dashboard_widgets_replace_widget

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).

Read read
Parameters
organization, body, project, dashboard_id, widget_id, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_dashboard_widgets_replace_widget '{"organization":"example_organization","body":"example_body","project":"example_project","dashboard_id":"example_dashboard_id","widget_id":"example_widget_id","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_dashboard_widgets_replace_widget '{"organization":"example_organization","body":"example_body","project":"example_project","dashboard_id":"example_dashboard_id","widget_id":"example_widget_id","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_dashboard_widgets_update_widget

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).

Write write
Parameters
organization, body, project, dashboard_id, widget_id, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_dashboard_widgets_update_widget '{"organization":"example_organization","body":"example_body","project":"example_project","dashboard_id":"example_dashboard_id","widget_id":"example_widget_id","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_dashboard_widgets_update_widget '{"organization":"example_organization","body":"example_body","project":"example_project","dashboard_id":"example_dashboard_id","widget_id":"example_widget_id","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_dashboard_widgets_delete

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).

Read read
Parameters
organization, project, dashboard_id, widget_id, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_dashboard_widgets_delete '{"organization":"example_organization","project":"example_project","dashboard_id":"example_dashboard_id","widget_id":"example_widget_id","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_dashboard_widgets_delete '{"organization":"example_organization","project":"example_project","dashboard_id":"example_dashboard_id","widget_id":"example_widget_id","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_delegated_auth_registration_secret_create

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).

Read read
Parameters
registration_id, api_version, body
Generic call
kosmo integrations:call azure-devops.azure_devops_delegated_auth_registration_secret_create '{"registration_id":"example_registration_id","api_version":"example_api_version","body":"example_body"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_delegated_auth_registration_secret_create '{"registration_id":"example_registration_id","api_version":"example_api_version","body":"example_body"}' --json

azure-devops.azure_devops_delegated_auth_registration_secret_rotate_secret

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).

Read read
Parameters
registration_id, secret_type, api_version, body
Generic call
kosmo integrations:call azure-devops.azure_devops_delegated_auth_registration_secret_rotate_secret '{"registration_id":"example_registration_id","secret_type":"example_secret_type","api_version":"example_api_version","body":"example_body"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_delegated_auth_registration_secret_rotate_secret '{"registration_id":"example_registration_id","secret_type":"example_secret_type","api_version":"example_api_version","body":"example_body"}' --json

azure-devops.azure_devops_distributed_task_elasticpools_list

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).

Read read
Parameters
organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_elasticpools_list '{"organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_elasticpools_list '{"organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_elasticpools_create

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).

Read read
Parameters
organization, body, pool_name, authorize_all_pipelines, auto_provision_project_pools, project_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_elasticpools_create '{"organization":"example_organization","body":"example_body","pool_name":"example_pool_name","authorize_all_pipelines":true,"auto_provision_project_pools":true,"project_id":"example_project_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_elasticpools_create '{"organization":"example_organization","body":"example_body","pool_name":"example_pool_name","authorize_all_pipelines":true,"auto_provision_project_pools":true,"project_id":"example_project_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_elasticpools_get

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).

Read read
Parameters
organization, pool_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_elasticpools_get '{"organization":"example_organization","pool_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_elasticpools_get '{"organization":"example_organization","pool_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_elasticpools_update

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).

Read read
Parameters
organization, body, pool_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_elasticpools_update '{"organization":"example_organization","body":"example_body","pool_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_elasticpools_update '{"organization":"example_organization","body":"example_body","pool_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_elasticpoollogs_list

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).

Read read
Parameters
organization, pool_id, top, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_elasticpoollogs_list '{"organization":"example_organization","pool_id":1,"top":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_elasticpoollogs_list '{"organization":"example_organization","pool_id":1,"top":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_nodes_list

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).

Read read
Parameters
organization, pool_id, state, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_nodes_list '{"organization":"example_organization","pool_id":1,"state":"example_state","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_nodes_list '{"organization":"example_organization","pool_id":1,"state":"example_state","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_nodes_update

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).

Read read
Parameters
organization, body, pool_id, elastic_node_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_nodes_update '{"organization":"example_organization","body":"example_body","pool_id":1,"elastic_node_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_nodes_update '{"organization":"example_organization","body":"example_body","pool_id":1,"elastic_node_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_webhooks_receive_external_event

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).

Read read
Parameters
organization, web_hook_id, api_version, body
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_webhooks_receive_external_event '{"organization":"example_organization","web_hook_id":"example_web_hook_id","api_version":"example_api_version","body":"example_body"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_webhooks_receive_external_event '{"organization":"example_organization","web_hook_id":"example_web_hook_id","api_version":"example_api_version","body":"example_body"}' --json

azure-devops.azure_devops_distributed_task_events_post_event

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).

Read read
Parameters
organization, body, scope_identifier, hub_name, plan_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_events_post_event '{"organization":"example_organization","body":"example_body","scope_identifier":"example_scope_identifier","hub_name":"example_hub_name","plan_id":"example_plan_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_events_post_event '{"organization":"example_organization","body":"example_body","scope_identifier":"example_scope_identifier","hub_name":"example_hub_name","plan_id":"example_plan_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_oidctoken_create

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).

Read read
Parameters
organization, body, scope_identifier, hub_name, plan_id, job_id, service_connection_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_oidctoken_create '{"organization":"example_organization","body":"example_body","scope_identifier":"example_scope_identifier","hub_name":"example_hub_name","plan_id":"example_plan_id","job_id":"example_job_id","service_connection_id":"example_service_connection_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_oidctoken_create '{"organization":"example_organization","body":"example_body","scope_identifier":"example_scope_identifier","hub_name":"example_hub_name","plan_id":"example_plan_id","job_id":"example_job_id","service_connection_id":"example_service_connection_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_logs_create

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).

Read read
Parameters
organization, body, scope_identifier, hub_name, plan_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_logs_create '{"organization":"example_organization","body":"example_body","scope_identifier":"example_scope_identifier","hub_name":"example_hub_name","plan_id":"example_plan_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_logs_create '{"organization":"example_organization","body":"example_body","scope_identifier":"example_scope_identifier","hub_name":"example_hub_name","plan_id":"example_plan_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_logs_append_log_content

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).

Read read
Parameters
organization, body, scope_identifier, hub_name, plan_id, log_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_logs_append_log_content '{"organization":"example_organization","body":"example_body","scope_identifier":"example_scope_identifier","hub_name":"example_hub_name","plan_id":"example_plan_id","log_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_logs_append_log_content '{"organization":"example_organization","body":"example_body","scope_identifier":"example_scope_identifier","hub_name":"example_hub_name","plan_id":"example_plan_id","log_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_records_update

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).

Read read
Parameters
organization, body, scope_identifier, hub_name, plan_id, timeline_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_records_update '{"organization":"example_organization","body":"example_body","scope_identifier":"example_scope_identifier","hub_name":"example_hub_name","plan_id":"example_plan_id","timeline_id":"example_timeline_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_records_update '{"organization":"example_organization","body":"example_body","scope_identifier":"example_scope_identifier","hub_name":"example_hub_name","plan_id":"example_plan_id","timeline_id":"example_timeline_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_agentclouds_list

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).

Read read
Parameters
organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_agentclouds_list '{"organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_agentclouds_list '{"organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_agentclouds_add

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_agentclouds_add '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_agentclouds_add '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_agentclouds_get

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).

Read read
Parameters
organization, agent_cloud_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_agentclouds_get '{"organization":"example_organization","agent_cloud_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_agentclouds_get '{"organization":"example_organization","agent_cloud_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_agentclouds_update

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).

Read read
Parameters
organization, body, agent_cloud_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_agentclouds_update '{"organization":"example_organization","body":"example_body","agent_cloud_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_agentclouds_update '{"organization":"example_organization","body":"example_body","agent_cloud_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_agentclouds_delete

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).

Read read
Parameters
organization, agent_cloud_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_agentclouds_delete '{"organization":"example_organization","agent_cloud_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_agentclouds_delete '{"organization":"example_organization","agent_cloud_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_requests_list

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).

Read read
Parameters
organization, agent_cloud_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_requests_list '{"organization":"example_organization","agent_cloud_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_requests_list '{"organization":"example_organization","agent_cloud_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_agentcloudtypes_list

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).

Read read
Parameters
organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_agentcloudtypes_list '{"organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_agentcloudtypes_list '{"organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_pools_get_agent_pools_by_ids

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).

Read read
Parameters
organization, pool_ids, action_filter, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_pools_get_agent_pools_by_ids '{"organization":"example_organization","pool_ids":"example_pool_ids","action_filter":"example_action_filter","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_pools_get_agent_pools_by_ids '{"organization":"example_organization","pool_ids":"example_pool_ids","action_filter":"example_action_filter","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_pools_add

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_pools_add '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_pools_add '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_pools_get

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).

Read read
Parameters
organization, pool_id, properties, action_filter, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_pools_get '{"organization":"example_organization","pool_id":1,"properties":"example_properties","action_filter":"example_action_filter","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_pools_get '{"organization":"example_organization","pool_id":1,"properties":"example_properties","action_filter":"example_action_filter","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_pools_update

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).

Read read
Parameters
organization, body, pool_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_pools_update '{"organization":"example_organization","body":"example_body","pool_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_pools_update '{"organization":"example_organization","body":"example_body","pool_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_pools_delete

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).

Read read
Parameters
organization, pool_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_pools_delete '{"organization":"example_organization","pool_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_pools_delete '{"organization":"example_organization","pool_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_agents_list

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).

Read read
Parameters
organization, pool_id, agent_name, include_capabilities, include_assigned_request, include_last_completed_request, property_filters, demands, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_agents_list '{"organization":"example_organization","pool_id":1,"agent_name":"example_agent_name","include_capabilities":true,"include_assigned_request":true,"include_last_completed_request":true,"property_filters":"example_property_filters","demands":"example_demands"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_agents_list '{"organization":"example_organization","pool_id":1,"agent_name":"example_agent_name","include_capabilities":true,"include_assigned_request":true,"include_last_completed_request":true,"property_filters":"example_property_filters","demands":"example_demands"}' --json

azure-devops.azure_devops_distributed_task_agents_add

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).

Read read
Parameters
organization, body, pool_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_agents_add '{"organization":"example_organization","body":"example_body","pool_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_agents_add '{"organization":"example_organization","body":"example_body","pool_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_agents_get

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).

Read read
Parameters
organization, pool_id, agent_id, include_capabilities, include_assigned_request, include_last_completed_request, property_filters, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_agents_get '{"organization":"example_organization","pool_id":1,"agent_id":1,"include_capabilities":true,"include_assigned_request":true,"include_last_completed_request":true,"property_filters":"example_property_filters","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_agents_get '{"organization":"example_organization","pool_id":1,"agent_id":1,"include_capabilities":true,"include_assigned_request":true,"include_last_completed_request":true,"property_filters":"example_property_filters","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_agents_replace_agent

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).

Read read
Parameters
organization, body, pool_id, agent_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_agents_replace_agent '{"organization":"example_organization","body":"example_body","pool_id":1,"agent_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_agents_replace_agent '{"organization":"example_organization","body":"example_body","pool_id":1,"agent_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_agents_update

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).

Read read
Parameters
organization, body, pool_id, agent_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_agents_update '{"organization":"example_organization","body":"example_body","pool_id":1,"agent_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_agents_update '{"organization":"example_organization","body":"example_body","pool_id":1,"agent_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_agents_delete

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).

Read read
Parameters
organization, pool_id, agent_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_agents_delete '{"organization":"example_organization","pool_id":1,"agent_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_agents_delete '{"organization":"example_organization","pool_id":1,"agent_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_poolpermissions_has_pool_permissions

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).

Read read
Parameters
organization, pool_id, permissions, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_poolpermissions_has_pool_permissions '{"organization":"example_organization","pool_id":1,"permissions":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_poolpermissions_has_pool_permissions '{"organization":"example_organization","pool_id":1,"permissions":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_variablegroups_add

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_variablegroups_add '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_variablegroups_add '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_variablegroups_share_variable_group

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).

Read read
Parameters
organization, body, variable_group_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_variablegroups_share_variable_group '{"organization":"example_organization","body":"example_body","variable_group_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_variablegroups_share_variable_group '{"organization":"example_organization","body":"example_body","variable_group_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_variablegroups_update

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).

Read read
Parameters
organization, body, group_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_variablegroups_update '{"organization":"example_organization","body":"example_body","group_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_variablegroups_update '{"organization":"example_organization","body":"example_body","group_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_variablegroups_delete

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).

Read read
Parameters
organization, group_id, project_ids, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_variablegroups_delete '{"organization":"example_organization","group_id":1,"project_ids":"example_project_ids","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_variablegroups_delete '{"organization":"example_organization","group_id":1,"project_ids":"example_project_ids","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_yamlschema_get

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).

Read read
Parameters
organization, validate_task_names, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_yamlschema_get '{"organization":"example_organization","validate_task_names":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_yamlschema_get '{"organization":"example_organization","validate_task_names":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_deploymentgroups_list

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).

Read read
Parameters
organization, project, name, action_filter, expand, continuation_token, top, ids, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_deploymentgroups_list '{"organization":"example_organization","project":"example_project","name":"example_name","action_filter":"example_action_filter","expand":"example_expand","continuation_token":"example_continuation_token","top":1,"ids":"example_ids"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_deploymentgroups_list '{"organization":"example_organization","project":"example_project","name":"example_name","action_filter":"example_action_filter","expand":"example_expand","continuation_token":"example_continuation_token","top":1,"ids":"example_ids"}' --json

azure-devops.azure_devops_distributed_task_deploymentgroups_add

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_deploymentgroups_add '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_deploymentgroups_add '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_deploymentgroups_get

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).

Read read
Parameters
organization, project, deployment_group_id, action_filter, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_deploymentgroups_get '{"organization":"example_organization","project":"example_project","deployment_group_id":1,"action_filter":"example_action_filter","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_deploymentgroups_get '{"organization":"example_organization","project":"example_project","deployment_group_id":1,"action_filter":"example_action_filter","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_deploymentgroups_update

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).

Read read
Parameters
organization, body, project, deployment_group_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_deploymentgroups_update '{"organization":"example_organization","body":"example_body","project":"example_project","deployment_group_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_deploymentgroups_update '{"organization":"example_organization","body":"example_body","project":"example_project","deployment_group_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_deploymentgroups_delete

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).

Read read
Parameters
organization, project, deployment_group_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_deploymentgroups_delete '{"organization":"example_organization","project":"example_project","deployment_group_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_deploymentgroups_delete '{"organization":"example_organization","project":"example_project","deployment_group_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_targets_list

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).

Read read
Parameters
organization, project, deployment_group_id, tags, name, partial_name_match, expand, agent_status, agent_job_result, continuation_token, top, enabled, property_filters, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_targets_list '{"organization":"example_organization","project":"example_project","deployment_group_id":1,"tags":"example_tags","name":"example_name","partial_name_match":true,"expand":"example_expand","agent_status":"example_agent_status"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_targets_list '{"organization":"example_organization","project":"example_project","deployment_group_id":1,"tags":"example_tags","name":"example_name","partial_name_match":true,"expand":"example_expand","agent_status":"example_agent_status"}' --json

azure-devops.azure_devops_distributed_task_targets_update

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).

Read read
Parameters
organization, body, project, deployment_group_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_targets_update '{"organization":"example_organization","body":"example_body","project":"example_project","deployment_group_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_targets_update '{"organization":"example_organization","body":"example_body","project":"example_project","deployment_group_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_targets_get

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).

Read read
Parameters
organization, project, deployment_group_id, target_id, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_targets_get '{"organization":"example_organization","project":"example_project","deployment_group_id":1,"target_id":1,"expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_targets_get '{"organization":"example_organization","project":"example_project","deployment_group_id":1,"target_id":1,"expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_targets_delete

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).

Read read
Parameters
organization, project, deployment_group_id, target_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_targets_delete '{"organization":"example_organization","project":"example_project","deployment_group_id":1,"target_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_targets_delete '{"organization":"example_organization","project":"example_project","deployment_group_id":1,"target_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_queues_get_agent_queues_for_pools

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).

Read read
Parameters
organization, pool_ids, project, action_filter, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_queues_get_agent_queues_for_pools '{"organization":"example_organization","pool_ids":"example_pool_ids","project":"example_project","action_filter":"example_action_filter","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_queues_get_agent_queues_for_pools '{"organization":"example_organization","pool_ids":"example_pool_ids","project":"example_project","action_filter":"example_action_filter","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_queues_add

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).

Read read
Parameters
organization, body, project, authorize_pipelines, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_queues_add '{"organization":"example_organization","body":"example_body","project":"example_project","authorize_pipelines":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_queues_add '{"organization":"example_organization","body":"example_body","project":"example_project","authorize_pipelines":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_queues_get

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).

Read read
Parameters
organization, queue_id, project, action_filter, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_queues_get '{"organization":"example_organization","queue_id":1,"project":"example_project","action_filter":"example_action_filter","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_queues_get '{"organization":"example_organization","queue_id":1,"project":"example_project","action_filter":"example_action_filter","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_queues_delete

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).

Read read
Parameters
organization, queue_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_queues_delete '{"organization":"example_organization","queue_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_queues_delete '{"organization":"example_organization","queue_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_securefiles_get_secure_files_by_names

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).

Read read
Parameters
organization, project, secure_file_names, include_download_tickets, action_filter, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_securefiles_get_secure_files_by_names '{"organization":"example_organization","project":"example_project","secure_file_names":"example_secure_file_names","include_download_tickets":true,"action_filter":"example_action_filter","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_securefiles_get_secure_files_by_names '{"organization":"example_organization","project":"example_project","secure_file_names":"example_secure_file_names","include_download_tickets":true,"action_filter":"example_action_filter","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_securefiles_query

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).

Read read
Parameters
organization, body, project, name_pattern, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_securefiles_query '{"organization":"example_organization","body":"example_body","project":"example_project","name_pattern":"example_name_pattern","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_securefiles_query '{"organization":"example_organization","body":"example_body","project":"example_project","name_pattern":"example_name_pattern","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_securefiles_update_secure_files

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_securefiles_update_secure_files '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_securefiles_update_secure_files '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_securefiles_get

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).

Read read
Parameters
organization, project, secure_file_id, include_download_ticket, action_filter, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_securefiles_get '{"organization":"example_organization","project":"example_project","secure_file_id":"example_secure_file_id","include_download_ticket":true,"action_filter":"example_action_filter","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_securefiles_get '{"organization":"example_organization","project":"example_project","secure_file_id":"example_secure_file_id","include_download_ticket":true,"action_filter":"example_action_filter","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_securefiles_update_secure_file

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).

Write write
Parameters
organization, body, project, secure_file_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_securefiles_update_secure_file '{"organization":"example_organization","body":"example_body","project":"example_project","secure_file_id":"example_secure_file_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_securefiles_update_secure_file '{"organization":"example_organization","body":"example_body","project":"example_project","secure_file_id":"example_secure_file_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_securefiles_delete

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).

Read read
Parameters
organization, project, secure_file_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_securefiles_delete '{"organization":"example_organization","project":"example_project","secure_file_id":"example_secure_file_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_securefiles_delete '{"organization":"example_organization","project":"example_project","secure_file_id":"example_secure_file_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_taskgroups_add

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_taskgroups_add '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_taskgroups_add '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_taskgroups_list

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).

Read read
Parameters
organization, project, task_group_id, expanded, task_id_filter, deleted, top, continuation_token, query_order, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_taskgroups_list '{"organization":"example_organization","project":"example_project","task_group_id":"example_task_group_id","expanded":true,"task_id_filter":"example_task_id_filter","deleted":true,"top":1,"continuation_token":"example_continuation_token"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_taskgroups_list '{"organization":"example_organization","project":"example_project","task_group_id":"example_task_group_id","expanded":true,"task_id_filter":"example_task_id_filter","deleted":true,"top":1,"continuation_token":"example_continuation_token"}' --json

azure-devops.azure_devops_distributed_task_taskgroups_update

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).

Read read
Parameters
organization, body, project, task_group_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_taskgroups_update '{"organization":"example_organization","body":"example_body","project":"example_project","task_group_id":"example_task_group_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_taskgroups_update '{"organization":"example_organization","body":"example_body","project":"example_project","task_group_id":"example_task_group_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_taskgroups_delete

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).

Read read
Parameters
organization, project, task_group_id, comment, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_taskgroups_delete '{"organization":"example_organization","project":"example_project","task_group_id":"example_task_group_id","comment":"example_comment","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_taskgroups_delete '{"organization":"example_organization","project":"example_project","task_group_id":"example_task_group_id","comment":"example_comment","api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_variablegroups_get_variable_groups_by_id

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).

Read read
Parameters
organization, project, group_ids, load_secrets, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_variablegroups_get_variable_groups_by_id '{"organization":"example_organization","project":"example_project","group_ids":"example_group_ids","load_secrets":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_variablegroups_get_variable_groups_by_id '{"organization":"example_organization","project":"example_project","group_ids":"example_group_ids","load_secrets":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_distributed_task_variablegroups_get

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).

Read read
Parameters
organization, project, group_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_distributed_task_variablegroups_get '{"organization":"example_organization","project":"example_project","group_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_distributed_task_variablegroups_get '{"organization":"example_organization","project":"example_project","group_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_environments_environments_list

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).

Read read
Parameters
organization, project, name, continuation_token, top, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_environments_environments_list '{"organization":"example_organization","project":"example_project","name":"example_name","continuation_token":"example_continuation_token","top":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_environments_environments_list '{"organization":"example_organization","project":"example_project","name":"example_name","continuation_token":"example_continuation_token","top":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_environments_environments_add

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_environments_environments_add '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_environments_environments_add '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_environments_environmentaccesstoken_generate_environment_access_token

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).

Read read
Parameters
organization, project, environment_id, api_version, body
Generic call
kosmo integrations:call azure-devops.azure_devops_environments_environmentaccesstoken_generate_environment_access_token '{"organization":"example_organization","project":"example_project","environment_id":1,"api_version":"example_api_version","body":"example_body"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_environments_environmentaccesstoken_generate_environment_access_token '{"organization":"example_organization","project":"example_project","environment_id":1,"api_version":"example_api_version","body":"example_body"}' --json

azure-devops.azure_devops_environments_environments_get

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).

Read read
Parameters
organization, project, environment_id, expands, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_environments_environments_get '{"organization":"example_organization","project":"example_project","environment_id":1,"expands":"example_expands","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_environments_environments_get '{"organization":"example_organization","project":"example_project","environment_id":1,"expands":"example_expands","api_version":"example_api_version"}' --json

azure-devops.azure_devops_environments_environments_update

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).

Read read
Parameters
organization, body, project, environment_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_environments_environments_update '{"organization":"example_organization","body":"example_body","project":"example_project","environment_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_environments_environments_update '{"organization":"example_organization","body":"example_body","project":"example_project","environment_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_environments_environments_delete

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).

Read read
Parameters
organization, project, environment_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_environments_environments_delete '{"organization":"example_organization","project":"example_project","environment_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_environments_environments_delete '{"organization":"example_organization","project":"example_project","environment_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_environments_environmentdeploymentrecords_list

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).

Read read
Parameters
organization, project, environment_id, continuation_token, top, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_environments_environmentdeploymentrecords_list '{"organization":"example_organization","project":"example_project","environment_id":1,"continuation_token":"example_continuation_token","top":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_environments_environmentdeploymentrecords_list '{"organization":"example_organization","project":"example_project","environment_id":1,"continuation_token":"example_continuation_token","top":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_environments_kubernetes_add

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).

Read read
Parameters
organization, body, project, environment_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_environments_kubernetes_add '{"organization":"example_organization","body":"example_body","project":"example_project","environment_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_environments_kubernetes_add '{"organization":"example_organization","body":"example_body","project":"example_project","environment_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_environments_kubernetes_update

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).

Read read
Parameters
organization, body, project, environment_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_environments_kubernetes_update '{"organization":"example_organization","body":"example_body","project":"example_project","environment_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_environments_kubernetes_update '{"organization":"example_organization","body":"example_body","project":"example_project","environment_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_environments_kubernetes_get

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).

Read read
Parameters
organization, project, environment_id, resource_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_environments_kubernetes_get '{"organization":"example_organization","project":"example_project","environment_id":1,"resource_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_environments_kubernetes_get '{"organization":"example_organization","project":"example_project","environment_id":1,"resource_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_environments_kubernetes_delete

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).

Read read
Parameters
organization, project, environment_id, resource_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_environments_kubernetes_delete '{"organization":"example_organization","project":"example_project","environment_id":1,"resource_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_environments_kubernetes_delete '{"organization":"example_organization","project":"example_project","environment_id":1,"resource_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_environments_vmresource_list

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).

Read read
Parameters
organization, project, environment_id, name, tags, continuation_token, top, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_environments_vmresource_list '{"organization":"example_organization","project":"example_project","environment_id":1,"name":"example_name","tags":"example_tags","continuation_token":"example_continuation_token","top":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_environments_vmresource_list '{"organization":"example_organization","project":"example_project","environment_id":1,"name":"example_name","tags":"example_tags","continuation_token":"example_continuation_token","top":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_environments_vmresource_add

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).

Read read
Parameters
organization, body, project, environment_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_environments_vmresource_add '{"organization":"example_organization","body":"example_body","project":"example_project","environment_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_environments_vmresource_add '{"organization":"example_organization","body":"example_body","project":"example_project","environment_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_environments_vmresource_replace_virtual_machine_resource

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).

Read read
Parameters
organization, body, project, environment_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_environments_vmresource_replace_virtual_machine_resource '{"organization":"example_organization","body":"example_body","project":"example_project","environment_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_environments_vmresource_replace_virtual_machine_resource '{"organization":"example_organization","body":"example_body","project":"example_project","environment_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_environments_vmresource_update

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).

Read read
Parameters
organization, body, project, environment_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_environments_vmresource_update '{"organization":"example_organization","body":"example_body","project":"example_project","environment_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_environments_vmresource_update '{"organization":"example_organization","body":"example_body","project":"example_project","environment_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_environments_pool_get

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).

Read read
Parameters
organization, project, environment_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_environments_pool_get '{"organization":"example_organization","project":"example_project","environment_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_environments_pool_get '{"organization":"example_organization","project":"example_project","environment_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_environments_vmresource_delete

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).

Read read
Parameters
organization, project, environment_id, resource_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_environments_vmresource_delete '{"organization":"example_organization","project":"example_project","environment_id":1,"resource_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_environments_vmresource_delete '{"organization":"example_organization","project":"example_project","environment_id":1,"resource_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_extension_management_installed_extensions_list

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).

Read read
Parameters
organization, include_disabled_extensions, include_errors, asset_types, include_installation_issues, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_extension_management_installed_extensions_list '{"organization":"example_organization","include_disabled_extensions":true,"include_errors":true,"asset_types":"example_asset_types","include_installation_issues":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_extension_management_installed_extensions_list '{"organization":"example_organization","include_disabled_extensions":true,"include_errors":true,"asset_types":"example_asset_types","include_installation_issues":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_extension_management_installed_extensions_update

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_extension_management_installed_extensions_update '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_extension_management_installed_extensions_update '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_extension_management_installed_extensions_get

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).

Read read
Parameters
organization, publisher_name, extension_name, asset_types, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_extension_management_installed_extensions_get '{"organization":"example_organization","publisher_name":"example_publisher_name","extension_name":"example_extension_name","asset_types":"example_asset_types","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_extension_management_installed_extensions_get '{"organization":"example_organization","publisher_name":"example_publisher_name","extension_name":"example_extension_name","asset_types":"example_asset_types","api_version":"example_api_version"}' --json

azure-devops.azure_devops_extension_management_installed_extensions_uninstall_extension_by_name

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).

Read read
Parameters
organization, publisher_name, extension_name, reason, reason_code, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_extension_management_installed_extensions_uninstall_extension_by_name '{"organization":"example_organization","publisher_name":"example_publisher_name","extension_name":"example_extension_name","reason":"example_reason","reason_code":"example_reason_code","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_extension_management_installed_extensions_uninstall_extension_by_name '{"organization":"example_organization","publisher_name":"example_publisher_name","extension_name":"example_extension_name","reason":"example_reason","reason_code":"example_reason_code","api_version":"example_api_version"}' --json

azure-devops.azure_devops_extension_management_installed_extensions_install_extension_by_name

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).

Read read
Parameters
organization, publisher_name, extension_name, version, api_version, body
Generic call
kosmo integrations:call azure-devops.azure_devops_extension_management_installed_extensions_install_extension_by_name '{"organization":"example_organization","publisher_name":"example_publisher_name","extension_name":"example_extension_name","version":"example_version","api_version":"example_api_version","body":"example_body"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_extension_management_installed_extensions_install_extension_by_name '{"organization":"example_organization","publisher_name":"example_publisher_name","extension_name":"example_extension_name","version":"example_version","api_version":"example_api_version","body":"example_body"}' --json

azure-devops.azure_devops_favorite_favorites_get_favorites

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).

Read read
Parameters
organization, artifact_type, artifact_scope_type, artifact_scope_id, include_extended_details, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_favorite_favorites_get_favorites '{"organization":"example_organization","artifact_type":"example_artifact_type","artifact_scope_type":"example_artifact_scope_type","artifact_scope_id":"example_artifact_scope_id","include_extended_details":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_favorite_favorites_get_favorites '{"organization":"example_organization","artifact_type":"example_artifact_type","artifact_scope_type":"example_artifact_scope_type","artifact_scope_id":"example_artifact_scope_id","include_extended_details":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_favorite_favorites_create_favorite

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).

Write write
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_favorite_favorites_create_favorite '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_favorite_favorites_create_favorite '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_favorite_favorites_get_favorite_by_id

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).

Read read
Parameters
organization, favorite_id, artifact_scope_type, artifact_type, artifact_scope_id, include_extended_details, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_favorite_favorites_get_favorite_by_id '{"organization":"example_organization","favorite_id":"example_favorite_id","artifact_scope_type":"example_artifact_scope_type","artifact_type":"example_artifact_type","artifact_scope_id":"example_artifact_scope_id","include_extended_details":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_favorite_favorites_get_favorite_by_id '{"organization":"example_organization","favorite_id":"example_favorite_id","artifact_scope_type":"example_artifact_scope_type","artifact_type":"example_artifact_type","artifact_scope_id":"example_artifact_scope_id","include_extended_details":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_favorite_favorites_delete_favorite_by_id

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).

Write write
Parameters
organization, favorite_id, artifact_type, artifact_scope_type, artifact_scope_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_favorite_favorites_delete_favorite_by_id '{"organization":"example_organization","favorite_id":"example_favorite_id","artifact_type":"example_artifact_type","artifact_scope_type":"example_artifact_scope_type","artifact_scope_id":"example_artifact_scope_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_favorite_favorites_delete_favorite_by_id '{"organization":"example_organization","favorite_id":"example_favorite_id","artifact_type":"example_artifact_type","artifact_scope_type":"example_artifact_scope_type","artifact_scope_id":"example_artifact_scope_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_repositories_get_deleted_repositories

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_repositories_get_deleted_repositories '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_repositories_get_deleted_repositories '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_refs_favorites_list

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).

Read read
Parameters
organization, project, repository_id, identity_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_refs_favorites_list '{"organization":"example_organization","project":"example_project","repository_id":"example_repository_id","identity_id":"example_identity_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_refs_favorites_list '{"organization":"example_organization","project":"example_project","repository_id":"example_repository_id","identity_id":"example_identity_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_refs_favorites_create

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_refs_favorites_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_refs_favorites_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_refs_favorites_get

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).

Read read
Parameters
organization, project, favorite_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_refs_favorites_get '{"organization":"example_organization","project":"example_project","favorite_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_refs_favorites_get '{"organization":"example_organization","project":"example_project","favorite_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_refs_favorites_delete

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).

Read read
Parameters
organization, project, favorite_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_refs_favorites_delete '{"organization":"example_organization","project":"example_project","favorite_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_refs_favorites_delete '{"organization":"example_organization","project":"example_project","favorite_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_refs_favorites_for_project_list

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).

Read read
Parameters
organization, project, identity_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_refs_favorites_for_project_list '{"organization":"example_organization","project":"example_project","identity_id":"example_identity_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_refs_favorites_for_project_list '{"organization":"example_organization","project":"example_project","identity_id":"example_identity_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_policy_configurations_get

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).

Read read
Parameters
organization, project, repository_id, ref_name, policy_type, top, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_policy_configurations_get '{"organization":"example_organization","project":"example_project","repository_id":"example_repository_id","ref_name":"example_ref_name","policy_type":"example_policy_type","top":1,"continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_policy_configurations_get '{"organization":"example_organization","project":"example_project","repository_id":"example_repository_id","ref_name":"example_ref_name","policy_type":"example_policy_type","top":1,"continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_requests_get_pull_requests_by_project

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).

Read read
Parameters
organization, project, search_criteria_creator_id, search_criteria_include_links, search_criteria_labels, search_criteria_max_time, search_criteria_min_time, search_criteria_query_time_range_type, search_criteria_repository_id, search_criteria_reviewer_id, search_criteria_source_ref_name, search_criteria_source_repository_id, search_criteria_status, search_criteria_tags_filter_operator, search_criteria_target_ref_name, search_criteria_title, max_comment_length, skip, top, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_requests_get_pull_requests_by_project '{"organization":"example_organization","project":"example_project","search_criteria_creator_id":"example_search_criteria_creator_id","search_criteria_include_links":true,"search_criteria_labels":"example_search_criteria_labels","search_criteria_max_time":"example_search_criteria_max_time","search_criteria_min_time":"example_search_criteria_min_time","search_criteria_query_time_range_type":"example_search_criteria_query_time_range_type"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_requests_get_pull_requests_by_project '{"organization":"example_organization","project":"example_project","search_criteria_creator_id":"example_search_criteria_creator_id","search_criteria_include_links":true,"search_criteria_labels":"example_search_criteria_labels","search_criteria_max_time":"example_search_criteria_max_time","search_criteria_min_time":"example_search_criteria_min_time","search_criteria_query_time_range_type":"example_search_criteria_query_time_range_type"}' --json

azure-devops.azure_devops_git_pull_requests_get_pull_request_by_id

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).

Read read
Parameters
organization, pull_request_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_requests_get_pull_request_by_id '{"organization":"example_organization","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_requests_get_pull_request_by_id '{"organization":"example_organization","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_repositories_get_recycle_bin_repositories

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_repositories_get_recycle_bin_repositories '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_repositories_get_recycle_bin_repositories '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_repositories_restore_repository_from_recycle_bin

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).

Read read
Parameters
organization, body, project, repository_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_repositories_restore_repository_from_recycle_bin '{"organization":"example_organization","body":"example_body","project":"example_project","repository_id":"example_repository_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_repositories_restore_repository_from_recycle_bin '{"organization":"example_organization","body":"example_body","project":"example_project","repository_id":"example_repository_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_repositories_delete_repository_from_recycle_bin

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).

Write write
Parameters
organization, project, repository_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_repositories_delete_repository_from_recycle_bin '{"organization":"example_organization","project":"example_project","repository_id":"example_repository_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_repositories_delete_repository_from_recycle_bin '{"organization":"example_organization","project":"example_project","repository_id":"example_repository_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_repositories_list

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).

Read read
Parameters
organization, project, include_links, include_all_urls, include_hidden, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_repositories_list '{"organization":"example_organization","project":"example_project","include_links":true,"include_all_urls":true,"include_hidden":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_repositories_list '{"organization":"example_organization","project":"example_project","include_links":true,"include_all_urls":true,"include_hidden":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_repositories_create

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).

Read read
Parameters
organization, body, project, source_ref, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_repositories_create '{"organization":"example_organization","body":"example_body","project":"example_project","source_ref":"example_source_ref","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_repositories_create '{"organization":"example_organization","body":"example_body","project":"example_project","source_ref":"example_source_ref","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_repositories_get_repository

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).

Read read
Parameters
organization, repository_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_repositories_get_repository '{"organization":"example_organization","repository_id":"example_repository_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_repositories_get_repository '{"organization":"example_organization","repository_id":"example_repository_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_repositories_update

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).

Read read
Parameters
organization, body, repository_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_repositories_update '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_repositories_update '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_repositories_delete

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).

Read read
Parameters
organization, repository_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_repositories_delete '{"organization":"example_organization","repository_id":"example_repository_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_repositories_delete '{"organization":"example_organization","repository_id":"example_repository_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_annotated_tags_create

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).

Read read
Parameters
organization, body, project, repository_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_annotated_tags_create '{"organization":"example_organization","body":"example_body","project":"example_project","repository_id":"example_repository_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_annotated_tags_create '{"organization":"example_organization","body":"example_body","project":"example_project","repository_id":"example_repository_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_annotated_tags_get

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).

Read read
Parameters
organization, project, repository_id, object_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_annotated_tags_get '{"organization":"example_organization","project":"example_project","repository_id":"example_repository_id","object_id":"example_object_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_annotated_tags_get '{"organization":"example_organization","project":"example_project","repository_id":"example_repository_id","object_id":"example_object_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_blobs_get_blobs_zip

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).

Read read
Parameters
organization, body, repository_id, project, filename, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_blobs_get_blobs_zip '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","project":"example_project","filename":"example_filename","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_blobs_get_blobs_zip '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","project":"example_project","filename":"example_filename","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_blobs_get_blob

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).

Read read
Parameters
organization, repository_id, sha1, project, download, file_name, format, resolve_lfs, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_blobs_get_blob '{"organization":"example_organization","repository_id":"example_repository_id","sha1":"example_sha1","project":"example_project","download":true,"file_name":"example_file_name","format":"example_format","resolve_lfs":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_blobs_get_blob '{"organization":"example_organization","repository_id":"example_repository_id","sha1":"example_sha1","project":"example_project","download":true,"file_name":"example_file_name","format":"example_format","resolve_lfs":true}' --json

azure-devops.azure_devops_git_cherry_picks_get_cherry_pick_for_ref_name

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).

Read read
Parameters
organization, project, repository_id, ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_cherry_picks_get_cherry_pick_for_ref_name '{"organization":"example_organization","project":"example_project","repository_id":"example_repository_id","ref_name":"example_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_cherry_picks_get_cherry_pick_for_ref_name '{"organization":"example_organization","project":"example_project","repository_id":"example_repository_id","ref_name":"example_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_cherry_picks_create

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).

Read read
Parameters
organization, body, project, repository_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_cherry_picks_create '{"organization":"example_organization","body":"example_body","project":"example_project","repository_id":"example_repository_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_cherry_picks_create '{"organization":"example_organization","body":"example_body","project":"example_project","repository_id":"example_repository_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_cherry_picks_get_cherry_pick

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).

Read read
Parameters
organization, project, cherry_pick_id, repository_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_cherry_picks_get_cherry_pick '{"organization":"example_organization","project":"example_project","cherry_pick_id":1,"repository_id":"example_repository_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_cherry_picks_get_cherry_pick '{"organization":"example_organization","project":"example_project","cherry_pick_id":1,"repository_id":"example_repository_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_commits_get_push_commits

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).

Read read
Parameters
organization, repository_id, push_id, project, top, skip, include_links, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_commits_get_push_commits '{"organization":"example_organization","repository_id":"example_repository_id","push_id":1,"project":"example_project","top":1,"skip":1,"include_links":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_commits_get_push_commits '{"organization":"example_organization","repository_id":"example_repository_id","push_id":1,"project":"example_project","top":1,"skip":1,"include_links":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_commits_get

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).

Read read
Parameters
organization, commit_id, repository_id, project, change_count, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_commits_get '{"organization":"example_organization","commit_id":"example_commit_id","repository_id":"example_repository_id","project":"example_project","change_count":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_commits_get '{"organization":"example_organization","commit_id":"example_commit_id","repository_id":"example_repository_id","project":"example_project","change_count":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_commits_get_changes

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).

Read read
Parameters
organization, commit_id, repository_id, project, top, skip, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_commits_get_changes '{"organization":"example_organization","commit_id":"example_commit_id","repository_id":"example_repository_id","project":"example_project","top":1,"skip":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_commits_get_changes '{"organization":"example_organization","commit_id":"example_commit_id","repository_id":"example_repository_id","project":"example_project","top":1,"skip":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_statuses_list

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).

Read read
Parameters
organization, commit_id, repository_id, project, top, skip, latest_only, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_statuses_list '{"organization":"example_organization","commit_id":"example_commit_id","repository_id":"example_repository_id","project":"example_project","top":1,"skip":1,"latest_only":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_statuses_list '{"organization":"example_organization","commit_id":"example_commit_id","repository_id":"example_repository_id","project":"example_project","top":1,"skip":1,"latest_only":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_statuses_create

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).

Read read
Parameters
organization, body, commit_id, repository_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_statuses_create '{"organization":"example_organization","body":"example_body","commit_id":"example_commit_id","repository_id":"example_repository_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_statuses_create '{"organization":"example_organization","body":"example_body","commit_id":"example_commit_id","repository_id":"example_repository_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_commits_get_commits_batch

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).

Read read
Parameters
organization, body, repository_id, project, skip, top, include_statuses, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_commits_get_commits_batch '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","project":"example_project","skip":1,"top":1,"include_statuses":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_commits_get_commits_batch '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","project":"example_project","skip":1,"top":1,"include_statuses":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_diffs_get

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).

Read read
Parameters
organization, repository_id, project, diff_common_commit, top, skip, base_version, base_version_options, base_version_type, target_version, target_version_options, target_version_type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_diffs_get '{"organization":"example_organization","repository_id":"example_repository_id","project":"example_project","diff_common_commit":true,"top":1,"skip":1,"base_version":"example_base_version","base_version_options":"example_base_version_options"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_diffs_get '{"organization":"example_organization","repository_id":"example_repository_id","project":"example_project","diff_common_commit":true,"top":1,"skip":1,"base_version":"example_base_version","base_version_options":"example_base_version_options"}' --json

azure-devops.azure_devops_git_import_requests_query

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).

Read read
Parameters
organization, project, repository_id, include_abandoned, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_import_requests_query '{"organization":"example_organization","project":"example_project","repository_id":"example_repository_id","include_abandoned":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_import_requests_query '{"organization":"example_organization","project":"example_project","repository_id":"example_repository_id","include_abandoned":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_import_requests_create

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).

Read read
Parameters
organization, body, project, repository_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_import_requests_create '{"organization":"example_organization","body":"example_body","project":"example_project","repository_id":"example_repository_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_import_requests_create '{"organization":"example_organization","body":"example_body","project":"example_project","repository_id":"example_repository_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_import_requests_get

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).

Read read
Parameters
organization, project, repository_id, import_request_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_import_requests_get '{"organization":"example_organization","project":"example_project","repository_id":"example_repository_id","import_request_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_import_requests_get '{"organization":"example_organization","project":"example_project","repository_id":"example_repository_id","import_request_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_import_requests_update

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).

Read read
Parameters
organization, body, project, repository_id, import_request_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_import_requests_update '{"organization":"example_organization","body":"example_body","project":"example_project","repository_id":"example_repository_id","import_request_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_import_requests_update '{"organization":"example_organization","body":"example_body","project":"example_project","repository_id":"example_repository_id","import_request_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_items_list

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).

Read read
Parameters
organization, repository_id, project, scope_path, recursion_level, include_content_metadata, latest_processed_change, download, include_links, format, version_descriptor_version, version_descriptor_version_options, version_descriptor_version_type, zip_for_unix, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_items_list '{"organization":"example_organization","repository_id":"example_repository_id","project":"example_project","scope_path":"example_scope_path","recursion_level":"example_recursion_level","include_content_metadata":true,"latest_processed_change":true,"download":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_items_list '{"organization":"example_organization","repository_id":"example_repository_id","project":"example_project","scope_path":"example_scope_path","recursion_level":"example_recursion_level","include_content_metadata":true,"latest_processed_change":true,"download":true}' --json

azure-devops.azure_devops_git_items_get_items_batch

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).

Read read
Parameters
organization, body, repository_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_items_get_items_batch '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_items_get_items_batch '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_attachments_list

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).

Read read
Parameters
organization, repository_id, pull_request_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_attachments_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_attachments_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_attachments_get

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).

Read read
Parameters
organization, file_name, repository_id, pull_request_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_attachments_get '{"organization":"example_organization","file_name":"example_file_name","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_attachments_get '{"organization":"example_organization","file_name":"example_file_name","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_attachments_create

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).

Read read
Parameters
organization, body, file_name, repository_id, pull_request_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_attachments_create '{"organization":"example_organization","body":"example_body","file_name":"example_file_name","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_attachments_create '{"organization":"example_organization","body":"example_body","file_name":"example_file_name","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_attachments_delete

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).

Read read
Parameters
organization, file_name, repository_id, pull_request_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_attachments_delete '{"organization":"example_organization","file_name":"example_file_name","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_attachments_delete '{"organization":"example_organization","file_name":"example_file_name","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_commits_get_pull_request_commits

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).

Read read
Parameters
organization, repository_id, pull_request_id, project, top, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_commits_get_pull_request_commits '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","top":1,"continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_commits_get_pull_request_commits '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","top":1,"continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_iterations_list

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).

Read read
Parameters
organization, repository_id, pull_request_id, project, include_commits, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_iterations_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","include_commits":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_iterations_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","include_commits":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_iterations_get

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).

Read read
Parameters
organization, repository_id, pull_request_id, iteration_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_iterations_get '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"iteration_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_iterations_get '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"iteration_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_iteration_changes_get

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).

Read read
Parameters
organization, repository_id, pull_request_id, iteration_id, project, top, skip, compare_to, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_iteration_changes_get '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"iteration_id":1,"project":"example_project","top":1,"skip":1,"compare_to":1}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_iteration_changes_get '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"iteration_id":1,"project":"example_project","top":1,"skip":1,"compare_to":1}' --json

azure-devops.azure_devops_git_pull_request_commits_get_pull_request_iteration_commits

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).

Read read
Parameters
organization, repository_id, pull_request_id, iteration_id, project, top, skip, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_commits_get_pull_request_iteration_commits '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"iteration_id":1,"project":"example_project","top":1,"skip":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_commits_get_pull_request_iteration_commits '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"iteration_id":1,"project":"example_project","top":1,"skip":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_iteration_statuses_list

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).

Read read
Parameters
organization, repository_id, pull_request_id, iteration_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_iteration_statuses_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"iteration_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_iteration_statuses_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"iteration_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_iteration_statuses_create

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).

Read read
Parameters
organization, body, repository_id, pull_request_id, iteration_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_iteration_statuses_create '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"iteration_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_iteration_statuses_create '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"iteration_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_iteration_statuses_update

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).

Read read
Parameters
organization, body, repository_id, pull_request_id, iteration_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_iteration_statuses_update '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"iteration_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_iteration_statuses_update '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"iteration_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_iteration_statuses_get

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).

Read read
Parameters
organization, repository_id, pull_request_id, iteration_id, status_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_iteration_statuses_get '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"iteration_id":1,"status_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_iteration_statuses_get '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"iteration_id":1,"status_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_iteration_statuses_delete

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).

Read read
Parameters
organization, repository_id, pull_request_id, iteration_id, status_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_iteration_statuses_delete '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"iteration_id":1,"status_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_iteration_statuses_delete '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"iteration_id":1,"status_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_labels_list

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).

Read read
Parameters
organization, repository_id, pull_request_id, project, project_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_labels_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","project_id":"example_project_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_labels_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","project_id":"example_project_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_labels_create

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).

Read read
Parameters
organization, body, repository_id, pull_request_id, project, project_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_labels_create '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","project_id":"example_project_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_labels_create '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","project_id":"example_project_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_labels_get

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).

Read read
Parameters
organization, repository_id, pull_request_id, label_id_or_name, project, project_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_labels_get '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"label_id_or_name":"example_label_id_or_name","project":"example_project","project_id":"example_project_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_labels_get '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"label_id_or_name":"example_label_id_or_name","project":"example_project","project_id":"example_project_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_labels_delete

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).

Read read
Parameters
organization, repository_id, pull_request_id, label_id_or_name, project, project_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_labels_delete '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"label_id_or_name":"example_label_id_or_name","project":"example_project","project_id":"example_project_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_labels_delete '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"label_id_or_name":"example_label_id_or_name","project":"example_project","project_id":"example_project_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_properties_list

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).

Read read
Parameters
organization, repository_id, pull_request_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_properties_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_properties_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_properties_update

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).

Read read
Parameters
organization, body, repository_id, pull_request_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_properties_update '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_properties_update '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_reviewers_list

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).

Read read
Parameters
organization, repository_id, pull_request_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_reviewers_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_reviewers_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_reviewers_create_pull_request_reviewers

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).

Write write
Parameters
organization, body, repository_id, pull_request_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_reviewers_create_pull_request_reviewers '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_reviewers_create_pull_request_reviewers '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_reviewers_create_unmaterialized_pull_request_reviewer

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).

Write write
Parameters
organization, body, repository_id, pull_request_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_reviewers_create_unmaterialized_pull_request_reviewer '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_reviewers_create_unmaterialized_pull_request_reviewer '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_reviewers_update_pull_request_reviewers

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).

Write write
Parameters
organization, body, repository_id, pull_request_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_reviewers_update_pull_request_reviewers '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_reviewers_update_pull_request_reviewers '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_reviewers_get

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).

Read read
Parameters
organization, repository_id, pull_request_id, reviewer_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_reviewers_get '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"reviewer_id":"example_reviewer_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_reviewers_get '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"reviewer_id":"example_reviewer_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_reviewers_create_pull_request_reviewer

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).

Write write
Parameters
organization, body, repository_id, pull_request_id, reviewer_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_reviewers_create_pull_request_reviewer '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"reviewer_id":"example_reviewer_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_reviewers_create_pull_request_reviewer '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"reviewer_id":"example_reviewer_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_reviewers_update_pull_request_reviewer

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).

Write write
Parameters
organization, body, repository_id, pull_request_id, reviewer_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_reviewers_update_pull_request_reviewer '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"reviewer_id":"example_reviewer_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_reviewers_update_pull_request_reviewer '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"reviewer_id":"example_reviewer_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_reviewers_delete

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).

Read read
Parameters
organization, repository_id, pull_request_id, reviewer_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_reviewers_delete '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"reviewer_id":"example_reviewer_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_reviewers_delete '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"reviewer_id":"example_reviewer_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_share_share_pull_request

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).

Read read
Parameters
organization, body, repository_id, pull_request_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_share_share_pull_request '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_share_share_pull_request '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_statuses_list

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).

Read read
Parameters
organization, repository_id, pull_request_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_statuses_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_statuses_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_statuses_create

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).

Read read
Parameters
organization, body, repository_id, pull_request_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_statuses_create '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_statuses_create '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_statuses_update

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).

Read read
Parameters
organization, body, repository_id, pull_request_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_statuses_update '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_statuses_update '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_statuses_get

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).

Read read
Parameters
organization, repository_id, pull_request_id, status_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_statuses_get '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"status_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_statuses_get '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"status_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_statuses_delete

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).

Read read
Parameters
organization, repository_id, pull_request_id, status_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_statuses_delete '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"status_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_statuses_delete '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"status_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_threads_list

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).

Read read
Parameters
organization, repository_id, pull_request_id, project, iteration, base_iteration, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_threads_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","iteration":1,"base_iteration":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_threads_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","iteration":1,"base_iteration":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_threads_create

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).

Read read
Parameters
organization, body, repository_id, pull_request_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_threads_create '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_threads_create '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_threads_get

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).

Read read
Parameters
organization, repository_id, pull_request_id, thread_id, project, iteration, base_iteration, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_threads_get '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"project":"example_project","iteration":1,"base_iteration":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_threads_get '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"project":"example_project","iteration":1,"base_iteration":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_threads_update

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).

Read read
Parameters
organization, body, repository_id, pull_request_id, thread_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_threads_update '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_threads_update '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_thread_comments_list

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).

Read read
Parameters
organization, repository_id, pull_request_id, thread_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_thread_comments_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_thread_comments_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_thread_comments_create

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).

Read read
Parameters
organization, body, repository_id, pull_request_id, thread_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_thread_comments_create '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_thread_comments_create '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_thread_comments_get

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).

Read read
Parameters
organization, repository_id, pull_request_id, thread_id, comment_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_thread_comments_get '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"comment_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_thread_comments_get '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"comment_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_thread_comments_update

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).

Read read
Parameters
organization, body, repository_id, pull_request_id, thread_id, comment_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_thread_comments_update '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"comment_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_thread_comments_update '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"comment_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_thread_comments_delete

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).

Read read
Parameters
organization, repository_id, pull_request_id, thread_id, comment_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_thread_comments_delete '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"comment_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_thread_comments_delete '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"comment_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_comment_likes_list

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).

Read read
Parameters
organization, repository_id, pull_request_id, thread_id, comment_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_comment_likes_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"comment_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_comment_likes_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"comment_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_comment_likes_create

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).

Read read
Parameters
organization, repository_id, pull_request_id, thread_id, comment_id, project, api_version, body
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_comment_likes_create '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"comment_id":1,"project":"example_project","api_version":"example_api_version","body":"example_body"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_comment_likes_create '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"comment_id":1,"project":"example_project","api_version":"example_api_version","body":"example_body"}' --json

azure-devops.azure_devops_git_pull_request_comment_likes_delete

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).

Read read
Parameters
organization, repository_id, pull_request_id, thread_id, comment_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_comment_likes_delete '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"comment_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_comment_likes_delete '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"thread_id":1,"comment_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_work_items_list

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).

Read read
Parameters
organization, repository_id, pull_request_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_work_items_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_work_items_list '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_request_query_get

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).

Read read
Parameters
organization, body, repository_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_request_query_get '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_request_query_get '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_requests_get_pull_requests

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).

Read read
Parameters
organization, repository_id, project, search_criteria_creator_id, search_criteria_include_links, search_criteria_labels, search_criteria_max_time, search_criteria_min_time, search_criteria_query_time_range_type, search_criteria_repository_id, search_criteria_reviewer_id, search_criteria_source_ref_name, search_criteria_source_repository_id, search_criteria_status, search_criteria_tags_filter_operator, search_criteria_target_ref_name, search_criteria_title, max_comment_length, skip, top, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_requests_get_pull_requests '{"organization":"example_organization","repository_id":"example_repository_id","project":"example_project","search_criteria_creator_id":"example_search_criteria_creator_id","search_criteria_include_links":true,"search_criteria_labels":"example_search_criteria_labels","search_criteria_max_time":"example_search_criteria_max_time","search_criteria_min_time":"example_search_criteria_min_time"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_requests_get_pull_requests '{"organization":"example_organization","repository_id":"example_repository_id","project":"example_project","search_criteria_creator_id":"example_search_criteria_creator_id","search_criteria_include_links":true,"search_criteria_labels":"example_search_criteria_labels","search_criteria_max_time":"example_search_criteria_max_time","search_criteria_min_time":"example_search_criteria_min_time"}' --json

azure-devops.azure_devops_git_pull_requests_create

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).

Read read
Parameters
organization, body, repository_id, project, supports_iterations, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_requests_create '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","project":"example_project","supports_iterations":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_requests_create '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","project":"example_project","supports_iterations":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pull_requests_get_pull_request

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).

Read read
Parameters
organization, repository_id, pull_request_id, project, max_comment_length, skip, top, include_commits, include_work_item_refs, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_requests_get_pull_request '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","max_comment_length":1,"skip":1,"top":1,"include_commits":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_requests_get_pull_request '{"organization":"example_organization","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","max_comment_length":1,"skip":1,"top":1,"include_commits":true}' --json

azure-devops.azure_devops_git_pull_requests_update

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).

Read read
Parameters
organization, body, repository_id, pull_request_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pull_requests_update '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pull_requests_update '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","pull_request_id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pushes_list

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).

Read read
Parameters
organization, repository_id, project, skip, top, search_criteria_from_date, search_criteria_include_links, search_criteria_include_ref_updates, search_criteria_pusher_id, search_criteria_ref_name, search_criteria_to_date, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pushes_list '{"organization":"example_organization","repository_id":"example_repository_id","project":"example_project","skip":1,"top":1,"search_criteria_from_date":"example_search_criteria_from_date","search_criteria_include_links":true,"search_criteria_include_ref_updates":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pushes_list '{"organization":"example_organization","repository_id":"example_repository_id","project":"example_project","skip":1,"top":1,"search_criteria_from_date":"example_search_criteria_from_date","search_criteria_include_links":true,"search_criteria_include_ref_updates":true}' --json

azure-devops.azure_devops_git_pushes_create

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).

Read read
Parameters
organization, body, repository_id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pushes_create '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pushes_create '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_pushes_get

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).

Read read
Parameters
organization, repository_id, push_id, project, include_commits, include_ref_updates, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_pushes_get '{"organization":"example_organization","repository_id":"example_repository_id","push_id":1,"project":"example_project","include_commits":1,"include_ref_updates":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_pushes_get '{"organization":"example_organization","repository_id":"example_repository_id","push_id":1,"project":"example_project","include_commits":1,"include_ref_updates":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_refs_list

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).

Read read
Parameters
organization, repository_id, project, filter, include_links, include_statuses, include_my_branches, latest_statuses_only, peel_tags, filter_contains, top, continuation_token, include_target_branches, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_refs_list '{"organization":"example_organization","repository_id":"example_repository_id","project":"example_project","filter":"example_filter","include_links":true,"include_statuses":true,"include_my_branches":true,"latest_statuses_only":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_refs_list '{"organization":"example_organization","repository_id":"example_repository_id","project":"example_project","filter":"example_filter","include_links":true,"include_statuses":true,"include_my_branches":true,"latest_statuses_only":true}' --json

azure-devops.azure_devops_git_refs_update_refs

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).

Write write
Parameters
organization, body, repository_id, project, project_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_refs_update_refs '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","project":"example_project","project_id":"example_project_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_refs_update_refs '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","project":"example_project","project_id":"example_project_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_refs_update_ref

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).

Write write
Parameters
organization, body, repository_id, filter, project, project_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_refs_update_ref '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","filter":"example_filter","project":"example_project","project_id":"example_project_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_refs_update_ref '{"organization":"example_organization","body":"example_body","repository_id":"example_repository_id","filter":"example_filter","project":"example_project","project_id":"example_project_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_reverts_get_revert_for_ref_name

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).

Read read
Parameters
organization, project, repository_id, ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_reverts_get_revert_for_ref_name '{"organization":"example_organization","project":"example_project","repository_id":"example_repository_id","ref_name":"example_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_reverts_get_revert_for_ref_name '{"organization":"example_organization","project":"example_project","repository_id":"example_repository_id","ref_name":"example_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_reverts_create

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).

Read read
Parameters
organization, body, project, repository_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_reverts_create '{"organization":"example_organization","body":"example_body","project":"example_project","repository_id":"example_repository_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_reverts_create '{"organization":"example_organization","body":"example_body","project":"example_project","repository_id":"example_repository_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_reverts_get_revert

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).

Read read
Parameters
organization, project, revert_id, repository_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_reverts_get_revert '{"organization":"example_organization","project":"example_project","revert_id":1,"repository_id":"example_repository_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_reverts_get_revert '{"organization":"example_organization","project":"example_project","revert_id":1,"repository_id":"example_repository_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_stats_list

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).

Read read
Parameters
organization, repository_id, project, base_version_descriptor_version, base_version_descriptor_version_options, base_version_descriptor_version_type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_stats_list '{"organization":"example_organization","repository_id":"example_repository_id","project":"example_project","base_version_descriptor_version":"example_base_version_descriptor_version","base_version_descriptor_version_options":"example_base_version_descriptor_version_options","base_version_descriptor_version_type":"example_base_version_descriptor_version_type","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_stats_list '{"organization":"example_organization","repository_id":"example_repository_id","project":"example_project","base_version_descriptor_version":"example_base_version_descriptor_version","base_version_descriptor_version_options":"example_base_version_descriptor_version_options","base_version_descriptor_version_type":"example_base_version_descriptor_version_type","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_suggestions_list

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).

Read read
Parameters
organization, repository_id, project, prefer_compare_branch, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_suggestions_list '{"organization":"example_organization","repository_id":"example_repository_id","project":"example_project","prefer_compare_branch":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_suggestions_list '{"organization":"example_organization","repository_id":"example_repository_id","project":"example_project","prefer_compare_branch":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_trees_get

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).

Read read
Parameters
organization, repository_id, sha1, project, project_id, recursive, file_name, format, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_trees_get '{"organization":"example_organization","repository_id":"example_repository_id","sha1":"example_sha1","project":"example_project","project_id":"example_project_id","recursive":true,"file_name":"example_file_name","format":"example_format"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_trees_get '{"organization":"example_organization","repository_id":"example_repository_id","sha1":"example_sha1","project":"example_project","project_id":"example_project_id","recursive":true,"file_name":"example_file_name","format":"example_format"}' --json

azure-devops.azure_devops_git_merge_bases_list

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).

Write write
Parameters
organization, repository_name_or_id, commit_id, other_commit_id, project, other_collection_id, other_repository_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_merge_bases_list '{"organization":"example_organization","repository_name_or_id":"example_repository_name_or_id","commit_id":"example_commit_id","other_commit_id":"example_other_commit_id","project":"example_project","other_collection_id":"example_other_collection_id","other_repository_id":"example_other_repository_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_merge_bases_list '{"organization":"example_organization","repository_name_or_id":"example_repository_name_or_id","commit_id":"example_commit_id","other_commit_id":"example_other_commit_id","project":"example_project","other_collection_id":"example_other_collection_id","other_repository_id":"example_other_repository_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_forks_get_fork_sync_requests

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).

Read read
Parameters
organization, repository_name_or_id, project, include_abandoned, include_links, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_forks_get_fork_sync_requests '{"organization":"example_organization","repository_name_or_id":"example_repository_name_or_id","project":"example_project","include_abandoned":true,"include_links":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_forks_get_fork_sync_requests '{"organization":"example_organization","repository_name_or_id":"example_repository_name_or_id","project":"example_project","include_abandoned":true,"include_links":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_forks_create_fork_sync_request

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).

Write write
Parameters
organization, body, repository_name_or_id, project, include_links, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_forks_create_fork_sync_request '{"organization":"example_organization","body":"example_body","repository_name_or_id":"example_repository_name_or_id","project":"example_project","include_links":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_forks_create_fork_sync_request '{"organization":"example_organization","body":"example_body","repository_name_or_id":"example_repository_name_or_id","project":"example_project","include_links":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_forks_get_fork_sync_request

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).

Read read
Parameters
organization, repository_name_or_id, fork_sync_operation_id, project, include_links, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_forks_get_fork_sync_request '{"organization":"example_organization","repository_name_or_id":"example_repository_name_or_id","fork_sync_operation_id":1,"project":"example_project","include_links":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_forks_get_fork_sync_request '{"organization":"example_organization","repository_name_or_id":"example_repository_name_or_id","fork_sync_operation_id":1,"project":"example_project","include_links":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_forks_list

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).

Read read
Parameters
organization, repository_name_or_id, collection_id, project, include_links, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_forks_list '{"organization":"example_organization","repository_name_or_id":"example_repository_name_or_id","collection_id":"example_collection_id","project":"example_project","include_links":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_forks_list '{"organization":"example_organization","repository_name_or_id":"example_repository_name_or_id","collection_id":"example_collection_id","project":"example_project","include_links":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_merges_create

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).

Read read
Parameters
organization, body, project, repository_name_or_id, include_links, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_merges_create '{"organization":"example_organization","body":"example_body","project":"example_project","repository_name_or_id":"example_repository_name_or_id","include_links":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_merges_create '{"organization":"example_organization","body":"example_body","project":"example_project","repository_name_or_id":"example_repository_name_or_id","include_links":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_git_merges_get

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).

Read read
Parameters
organization, project, repository_name_or_id, merge_operation_id, include_links, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_git_merges_get '{"organization":"example_organization","project":"example_project","repository_name_or_id":"example_repository_name_or_id","merge_operation_id":1,"include_links":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_git_merges_get '{"organization":"example_organization","project":"example_project","repository_name_or_id":"example_repository_name_or_id","merge_operation_id":1,"include_links":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_memberships_list

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).

Read read
Parameters
organization, subject_descriptor, direction, depth, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_memberships_list '{"organization":"example_organization","subject_descriptor":"example_subject_descriptor","direction":"example_direction","depth":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_memberships_list '{"organization":"example_organization","subject_descriptor":"example_subject_descriptor","direction":"example_direction","depth":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_avatars_get

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).

Read read
Parameters
subject_descriptor, organization, size, format, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_avatars_get '{"subject_descriptor":"example_subject_descriptor","organization":"example_organization","size":"example_size","format":"example_format","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_avatars_get '{"subject_descriptor":"example_subject_descriptor","organization":"example_organization","size":"example_size","format":"example_format","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_avatars_set_avatar

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).

Read read
Parameters
body, subject_descriptor, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_avatars_set_avatar '{"body":"example_body","subject_descriptor":"example_subject_descriptor","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_avatars_set_avatar '{"body":"example_body","subject_descriptor":"example_subject_descriptor","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_avatars_delete

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).

Read read
Parameters
subject_descriptor, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_avatars_delete '{"subject_descriptor":"example_subject_descriptor","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_avatars_delete '{"subject_descriptor":"example_subject_descriptor","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_provider_info_get

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).

Read read
Parameters
user_descriptor, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_provider_info_get '{"user_descriptor":"example_user_descriptor","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_provider_info_get '{"user_descriptor":"example_user_descriptor","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_descriptors_get

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).

Read read
Parameters
storage_key, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_descriptors_get '{"storage_key":"example_storage_key","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_descriptors_get '{"storage_key":"example_storage_key","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_groups_list

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).

Read read
Parameters
organization, scope_descriptor, subject_types, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_groups_list '{"organization":"example_organization","scope_descriptor":"example_scope_descriptor","subject_types":"example_subject_types","continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_groups_list '{"organization":"example_organization","scope_descriptor":"example_scope_descriptor","subject_types":"example_subject_types","continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_groups_create

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).

Read read
Parameters
organization, body, scope_descriptor, group_descriptors, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_groups_create '{"organization":"example_organization","body":"example_body","scope_descriptor":"example_scope_descriptor","group_descriptors":"example_group_descriptors","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_groups_create '{"organization":"example_organization","body":"example_body","scope_descriptor":"example_scope_descriptor","group_descriptors":"example_group_descriptors","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_groups_get

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).

Read read
Parameters
organization, group_descriptor, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_groups_get '{"organization":"example_organization","group_descriptor":"example_group_descriptor","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_groups_get '{"organization":"example_organization","group_descriptor":"example_group_descriptor","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_groups_update

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).

Read read
Parameters
organization, group_descriptor, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_groups_update '{"organization":"example_organization","group_descriptor":"example_group_descriptor","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_groups_update '{"organization":"example_organization","group_descriptor":"example_group_descriptor","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_groups_delete

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).

Read read
Parameters
organization, group_descriptor, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_groups_delete '{"organization":"example_organization","group_descriptor":"example_group_descriptor","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_groups_delete '{"organization":"example_organization","group_descriptor":"example_group_descriptor","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_memberships_get

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).

Read read
Parameters
organization, subject_descriptor, container_descriptor, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_memberships_get '{"organization":"example_organization","subject_descriptor":"example_subject_descriptor","container_descriptor":"example_container_descriptor","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_memberships_get '{"organization":"example_organization","subject_descriptor":"example_subject_descriptor","container_descriptor":"example_container_descriptor","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_memberships_add

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).

Read read
Parameters
organization, subject_descriptor, container_descriptor, api_version, body
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_memberships_add '{"organization":"example_organization","subject_descriptor":"example_subject_descriptor","container_descriptor":"example_container_descriptor","api_version":"example_api_version","body":"example_body"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_memberships_add '{"organization":"example_organization","subject_descriptor":"example_subject_descriptor","container_descriptor":"example_container_descriptor","api_version":"example_api_version","body":"example_body"}' --json

azure-devops.azure_devops_graph_memberships_remove_membership

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).

Write write
Parameters
organization, subject_descriptor, container_descriptor, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_memberships_remove_membership '{"organization":"example_organization","subject_descriptor":"example_subject_descriptor","container_descriptor":"example_container_descriptor","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_memberships_remove_membership '{"organization":"example_organization","subject_descriptor":"example_subject_descriptor","container_descriptor":"example_container_descriptor","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_membership_states_get

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).

Read read
Parameters
organization, subject_descriptor, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_membership_states_get '{"organization":"example_organization","subject_descriptor":"example_subject_descriptor","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_membership_states_get '{"organization":"example_organization","subject_descriptor":"example_subject_descriptor","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_request_access_request_access

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_request_access_request_access '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_request_access_request_access '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_service_principals_list

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).

Read read
Parameters
organization, continuation_token, scope_descriptor, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_service_principals_list '{"organization":"example_organization","continuation_token":"example_continuation_token","scope_descriptor":"example_scope_descriptor","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_service_principals_list '{"organization":"example_organization","continuation_token":"example_continuation_token","scope_descriptor":"example_scope_descriptor","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_service_principals_create

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).

Read read
Parameters
organization, body, group_descriptors, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_service_principals_create '{"organization":"example_organization","body":"example_body","group_descriptors":"example_group_descriptors","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_service_principals_create '{"organization":"example_organization","body":"example_body","group_descriptors":"example_group_descriptors","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_service_principals_get

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).

Read read
Parameters
organization, service_principal_descriptor, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_service_principals_get '{"organization":"example_organization","service_principal_descriptor":"example_service_principal_descriptor","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_service_principals_get '{"organization":"example_organization","service_principal_descriptor":"example_service_principal_descriptor","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_service_principals_delete

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).

Read read
Parameters
organization, service_principal_descriptor, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_service_principals_delete '{"organization":"example_organization","service_principal_descriptor":"example_service_principal_descriptor","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_service_principals_delete '{"organization":"example_organization","service_principal_descriptor":"example_service_principal_descriptor","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_storage_keys_get

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).

Read read
Parameters
subject_descriptor, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_storage_keys_get '{"subject_descriptor":"example_subject_descriptor","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_storage_keys_get '{"subject_descriptor":"example_subject_descriptor","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_subject_lookup_lookup_subjects

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_subject_lookup_lookup_subjects '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_subject_lookup_lookup_subjects '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_subject_query_query

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_subject_query_query '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_subject_query_query '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_users_list

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).

Read read
Parameters
organization, subject_types, continuation_token, scope_descriptor, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_users_list '{"organization":"example_organization","subject_types":"example_subject_types","continuation_token":"example_continuation_token","scope_descriptor":"example_scope_descriptor","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_users_list '{"organization":"example_organization","subject_types":"example_subject_types","continuation_token":"example_continuation_token","scope_descriptor":"example_scope_descriptor","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_users_create

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).

Read read
Parameters
organization, body, group_descriptors, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_users_create '{"organization":"example_organization","body":"example_body","group_descriptors":"example_group_descriptors","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_users_create '{"organization":"example_organization","body":"example_body","group_descriptors":"example_group_descriptors","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_users_get

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).

Read read
Parameters
organization, user_descriptor, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_users_get '{"organization":"example_organization","user_descriptor":"example_user_descriptor","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_users_get '{"organization":"example_organization","user_descriptor":"example_user_descriptor","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_users_update

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).

Read read
Parameters
organization, body, user_descriptor, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_users_update '{"organization":"example_organization","body":"example_body","user_descriptor":"example_user_descriptor","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_users_update '{"organization":"example_organization","body":"example_body","user_descriptor":"example_user_descriptor","api_version":"example_api_version"}' --json

azure-devops.azure_devops_graph_users_delete

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).

Read read
Parameters
organization, user_descriptor, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_graph_users_delete '{"organization":"example_organization","user_descriptor":"example_user_descriptor","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_graph_users_delete '{"organization":"example_organization","user_descriptor":"example_user_descriptor","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_consumers_list

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).

Read read
Parameters
organization, publisher_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_consumers_list '{"organization":"example_organization","publisher_id":"example_publisher_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_consumers_list '{"organization":"example_organization","publisher_id":"example_publisher_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_consumers_get

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).

Read read
Parameters
organization, consumer_id, publisher_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_consumers_get '{"organization":"example_organization","consumer_id":"example_consumer_id","publisher_id":"example_publisher_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_consumers_get '{"organization":"example_organization","consumer_id":"example_consumer_id","publisher_id":"example_publisher_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_consumers_list_consumer_actions

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).

Read read
Parameters
organization, consumer_id, publisher_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_consumers_list_consumer_actions '{"organization":"example_organization","consumer_id":"example_consumer_id","publisher_id":"example_publisher_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_consumers_list_consumer_actions '{"organization":"example_organization","consumer_id":"example_consumer_id","publisher_id":"example_publisher_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_consumers_get_consumer_action

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).

Read read
Parameters
organization, consumer_id, consumer_action_id, publisher_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_consumers_get_consumer_action '{"organization":"example_organization","consumer_id":"example_consumer_id","consumer_action_id":"example_consumer_action_id","publisher_id":"example_publisher_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_consumers_get_consumer_action '{"organization":"example_organization","consumer_id":"example_consumer_id","consumer_action_id":"example_consumer_action_id","publisher_id":"example_publisher_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_notifications_query

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_notifications_query '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_notifications_query '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_publishers_list

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).

Read read
Parameters
organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_publishers_list '{"organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_publishers_list '{"organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_publishers_get

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).

Read read
Parameters
organization, publisher_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_publishers_get '{"organization":"example_organization","publisher_id":"example_publisher_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_publishers_get '{"organization":"example_organization","publisher_id":"example_publisher_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_publishers_list_event_types

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).

Read read
Parameters
organization, publisher_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_publishers_list_event_types '{"organization":"example_organization","publisher_id":"example_publisher_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_publishers_list_event_types '{"organization":"example_organization","publisher_id":"example_publisher_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_publishers_get_event_type

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).

Read read
Parameters
organization, publisher_id, event_type_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_publishers_get_event_type '{"organization":"example_organization","publisher_id":"example_publisher_id","event_type_id":"example_event_type_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_publishers_get_event_type '{"organization":"example_organization","publisher_id":"example_publisher_id","event_type_id":"example_event_type_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_publishers_query_input_values

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).

Read read
Parameters
organization, body, publisher_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_publishers_query_input_values '{"organization":"example_organization","body":"example_body","publisher_id":"example_publisher_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_publishers_query_input_values '{"organization":"example_organization","body":"example_body","publisher_id":"example_publisher_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_publishers_query_publishers

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_publishers_query_publishers '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_publishers_query_publishers '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_subscriptions_list

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).

Read read
Parameters
organization, publisher_id, event_type, consumer_id, consumer_action_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_subscriptions_list '{"organization":"example_organization","publisher_id":"example_publisher_id","event_type":"example_event_type","consumer_id":"example_consumer_id","consumer_action_id":"example_consumer_action_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_subscriptions_list '{"organization":"example_organization","publisher_id":"example_publisher_id","event_type":"example_event_type","consumer_id":"example_consumer_id","consumer_action_id":"example_consumer_action_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_subscriptions_create

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_subscriptions_create '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_subscriptions_create '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_subscriptions_get

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).

Read read
Parameters
organization, subscription_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_subscriptions_get '{"organization":"example_organization","subscription_id":"example_subscription_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_subscriptions_get '{"organization":"example_organization","subscription_id":"example_subscription_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_subscriptions_replace_subscription

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).

Read read
Parameters
organization, body, subscription_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_subscriptions_replace_subscription '{"organization":"example_organization","body":"example_body","subscription_id":"example_subscription_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_subscriptions_replace_subscription '{"organization":"example_organization","body":"example_body","subscription_id":"example_subscription_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_subscriptions_delete

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).

Read read
Parameters
organization, subscription_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_subscriptions_delete '{"organization":"example_organization","subscription_id":"example_subscription_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_subscriptions_delete '{"organization":"example_organization","subscription_id":"example_subscription_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_diagnostics_get

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).

Read read
Parameters
organization, subscription_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_diagnostics_get '{"organization":"example_organization","subscription_id":"example_subscription_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_diagnostics_get '{"organization":"example_organization","subscription_id":"example_subscription_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_diagnostics_update

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).

Read read
Parameters
organization, body, subscription_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_diagnostics_update '{"organization":"example_organization","body":"example_body","subscription_id":"example_subscription_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_diagnostics_update '{"organization":"example_organization","body":"example_body","subscription_id":"example_subscription_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_notifications_list

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).

Read read
Parameters
organization, subscription_id, max_results, status, result, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_notifications_list '{"organization":"example_organization","subscription_id":"example_subscription_id","max_results":1,"status":"example_status","result":"example_result","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_notifications_list '{"organization":"example_organization","subscription_id":"example_subscription_id","max_results":1,"status":"example_status","result":"example_result","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_notifications_get

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).

Read read
Parameters
organization, subscription_id, notification_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_notifications_get '{"organization":"example_organization","subscription_id":"example_subscription_id","notification_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_notifications_get '{"organization":"example_organization","subscription_id":"example_subscription_id","notification_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_subscriptions_create_subscriptions_query

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).

Write write
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_subscriptions_create_subscriptions_query '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_subscriptions_create_subscriptions_query '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_hooks_notifications_create

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).

Read read
Parameters
organization, body, use_real_data, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_hooks_notifications_create '{"organization":"example_organization","body":"example_body","use_real_data":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_hooks_notifications_create '{"organization":"example_organization","body":"example_body","use_real_data":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_ims_identities_read_identities

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).

Read read
Parameters
organization, descriptors, identity_ids, subject_descriptors, search_filter, filter_value, query_membership, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_ims_identities_read_identities '{"organization":"example_organization","descriptors":"example_descriptors","identity_ids":"example_identity_ids","subject_descriptors":"example_subject_descriptors","search_filter":"example_search_filter","filter_value":"example_filter_value","query_membership":"example_query_membership","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_ims_identities_read_identities '{"organization":"example_organization","descriptors":"example_descriptors","identity_ids":"example_identity_ids","subject_descriptors":"example_subject_descriptors","search_filter":"example_search_filter","filter_value":"example_filter_value","query_membership":"example_query_membership","api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_members_get

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).

Read read
Parameters
organization, group_id, max_results, paging_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_members_get '{"organization":"example_organization","group_id":"example_group_id","max_results":1,"paging_token":"example_paging_token","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_members_get '{"organization":"example_organization","group_id":"example_group_id","max_results":1,"paging_token":"example_paging_token","api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_members_add

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).

Read read
Parameters
organization, group_id, member_id, api_version, body
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_members_add '{"organization":"example_organization","group_id":"example_group_id","member_id":"example_member_id","api_version":"example_api_version","body":"example_body"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_members_add '{"organization":"example_organization","group_id":"example_group_id","member_id":"example_member_id","api_version":"example_api_version","body":"example_body"}' --json

azure-devops.azure_devops_member_entitlement_management_members_remove_member_from_group

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).

Write write
Parameters
organization, group_id, member_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_members_remove_member_from_group '{"organization":"example_organization","group_id":"example_group_id","member_id":"example_member_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_members_remove_member_from_group '{"organization":"example_organization","group_id":"example_group_id","member_id":"example_member_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_group_entitlements_list

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).

Read read
Parameters
organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_group_entitlements_list '{"organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_group_entitlements_list '{"organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_group_entitlements_add

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).

Read read
Parameters
organization, body, rule_option, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_group_entitlements_add '{"organization":"example_organization","body":"example_body","rule_option":"example_rule_option","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_group_entitlements_add '{"organization":"example_organization","body":"example_body","rule_option":"example_rule_option","api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_group_entitlements_get

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).

Read read
Parameters
organization, group_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_group_entitlements_get '{"organization":"example_organization","group_id":"example_group_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_group_entitlements_get '{"organization":"example_organization","group_id":"example_group_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_group_entitlements_update

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).

Read read
Parameters
organization, body, group_id, rule_option, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_group_entitlements_update '{"organization":"example_organization","body":"example_body","group_id":"example_group_id","rule_option":"example_rule_option","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_group_entitlements_update '{"organization":"example_organization","body":"example_body","group_id":"example_group_id","rule_option":"example_rule_option","api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_group_entitlements_delete

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).

Read read
Parameters
organization, group_id, rule_option, remove_group_membership, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_group_entitlements_delete '{"organization":"example_organization","group_id":"example_group_id","rule_option":"example_rule_option","remove_group_membership":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_group_entitlements_delete '{"organization":"example_organization","group_id":"example_group_id","rule_option":"example_rule_option","remove_group_membership":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_member_entitlements_search_member_entitlements

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).

Read read
Parameters
organization, continuation_token, select, filter, order_by, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_member_entitlements_search_member_entitlements '{"organization":"example_organization","continuation_token":"example_continuation_token","select":"example_select","filter":"example_filter","order_by":"example_order_by","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_member_entitlements_search_member_entitlements '{"organization":"example_organization","continuation_token":"example_continuation_token","select":"example_select","filter":"example_filter","order_by":"example_order_by","api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_add

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_add '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_service_principal_entitlements_add '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_update_service_principal_entitlements

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).

Write write
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_update_service_principal_entitlements '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_service_principal_entitlements_update_service_principal_entitlements '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_get

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).

Read read
Parameters
organization, service_principal_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_get '{"organization":"example_organization","service_principal_id":"example_service_principal_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_service_principal_entitlements_get '{"organization":"example_organization","service_principal_id":"example_service_principal_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_update_service_principal_entitlement

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).

Write write
Parameters
organization, body, service_principal_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_update_service_principal_entitlement '{"organization":"example_organization","body":"example_body","service_principal_id":"example_service_principal_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_service_principal_entitlements_update_service_principal_entitlement '{"organization":"example_organization","body":"example_body","service_principal_id":"example_service_principal_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_delete

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).

Read read
Parameters
organization, service_principal_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_delete '{"organization":"example_organization","service_principal_id":"example_service_principal_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_service_principal_entitlements_delete '{"organization":"example_organization","service_principal_id":"example_service_principal_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_user_entitlements_search_user_entitlements

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).

Read read
Parameters
organization, continuation_token, select, filter, order_by, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_user_entitlements_search_user_entitlements '{"organization":"example_organization","continuation_token":"example_continuation_token","select":"example_select","filter":"example_filter","order_by":"example_order_by","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_user_entitlements_search_user_entitlements '{"organization":"example_organization","continuation_token":"example_continuation_token","select":"example_select","filter":"example_filter","order_by":"example_order_by","api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_user_entitlements_add

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_user_entitlements_add '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_user_entitlements_add '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_user_entitlements_update_user_entitlements

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).

Write write
Parameters
organization, body, do_not_send_invite_for_new_users, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_user_entitlements_update_user_entitlements '{"organization":"example_organization","body":"example_body","do_not_send_invite_for_new_users":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_user_entitlements_update_user_entitlements '{"organization":"example_organization","body":"example_body","do_not_send_invite_for_new_users":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_user_entitlements_get

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).

Read read
Parameters
organization, user_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_user_entitlements_get '{"organization":"example_organization","user_id":"example_user_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_user_entitlements_get '{"organization":"example_organization","user_id":"example_user_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_user_entitlements_update_user_entitlement

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).

Write write
Parameters
organization, body, user_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_user_entitlements_update_user_entitlement '{"organization":"example_organization","body":"example_body","user_id":"example_user_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_user_entitlements_update_user_entitlement '{"organization":"example_organization","body":"example_body","user_id":"example_user_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_user_entitlements_delete

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).

Read read
Parameters
organization, user_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_user_entitlements_delete '{"organization":"example_organization","user_id":"example_user_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_user_entitlements_delete '{"organization":"example_organization","user_id":"example_user_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_member_entitlement_management_user_entitlement_summary_get

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).

Read read
Parameters
organization, select, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_member_entitlement_management_user_entitlement_summary_get '{"organization":"example_organization","select":"example_select","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_member_entitlement_management_user_entitlement_summary_get '{"organization":"example_organization","select":"example_select","api_version":"example_api_version"}' --json

azure-devops.azure_devops_notification_subscriptions_update_subscription_user_settings

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).

Write write
Parameters
body, subscription_id, user_id, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_notification_subscriptions_update_subscription_user_settings '{"body":"example_body","subscription_id":"example_subscription_id","user_id":"example_user_id","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_notification_subscriptions_update_subscription_user_settings '{"body":"example_body","subscription_id":"example_subscription_id","user_id":"example_user_id","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_notification_diagnostic_logs_list

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).

Read read
Parameters
source, organization, entry_id, start_time, end_time, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_notification_diagnostic_logs_list '{"source":"example_source","organization":"example_organization","entry_id":"example_entry_id","start_time":"example_start_time","end_time":"example_end_time","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_notification_diagnostic_logs_list '{"source":"example_source","organization":"example_organization","entry_id":"example_entry_id","start_time":"example_start_time","end_time":"example_end_time","api_version":"example_api_version"}' --json

azure-devops.azure_devops_notification_event_types_list

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).

Read read
Parameters
organization, publisher_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_notification_event_types_list '{"organization":"example_organization","publisher_id":"example_publisher_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_notification_event_types_list '{"organization":"example_organization","publisher_id":"example_publisher_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_notification_event_types_get

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).

Read read
Parameters
event_type, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_notification_event_types_get '{"event_type":"example_event_type","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_notification_event_types_get '{"event_type":"example_event_type","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_notification_settings_get

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).

Read read
Parameters
organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_notification_settings_get '{"organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_notification_settings_get '{"organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_notification_settings_update

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).

Read read
Parameters
body, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_notification_settings_update '{"body":"example_body","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_notification_settings_update '{"body":"example_body","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_notification_subscribers_get

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).

Read read
Parameters
subscriber_id, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_notification_subscribers_get '{"subscriber_id":"example_subscriber_id","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_notification_subscribers_get '{"subscriber_id":"example_subscriber_id","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_notification_subscribers_update

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).

Read read
Parameters
body, subscriber_id, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_notification_subscribers_update '{"body":"example_body","subscriber_id":"example_subscriber_id","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_notification_subscribers_update '{"body":"example_body","subscriber_id":"example_subscriber_id","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_notification_subscriptions_query

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).

Read read
Parameters
body, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_notification_subscriptions_query '{"body":"example_body","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_notification_subscriptions_query '{"body":"example_body","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_notification_subscriptions_list

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).

Read read
Parameters
organization, target_id, ids, query_flags, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_notification_subscriptions_list '{"organization":"example_organization","target_id":"example_target_id","ids":"example_ids","query_flags":"example_query_flags","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_notification_subscriptions_list '{"organization":"example_organization","target_id":"example_target_id","ids":"example_ids","query_flags":"example_query_flags","api_version":"example_api_version"}' --json

azure-devops.azure_devops_notification_subscriptions_create

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).

Read read
Parameters
body, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_notification_subscriptions_create '{"body":"example_body","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_notification_subscriptions_create '{"body":"example_body","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_notification_subscriptions_get

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).

Read read
Parameters
subscription_id, organization, query_flags, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_notification_subscriptions_get '{"subscription_id":"example_subscription_id","organization":"example_organization","query_flags":"example_query_flags","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_notification_subscriptions_get '{"subscription_id":"example_subscription_id","organization":"example_organization","query_flags":"example_query_flags","api_version":"example_api_version"}' --json

azure-devops.azure_devops_notification_subscriptions_update

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).

Read read
Parameters
body, subscription_id, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_notification_subscriptions_update '{"body":"example_body","subscription_id":"example_subscription_id","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_notification_subscriptions_update '{"body":"example_body","subscription_id":"example_subscription_id","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_notification_subscriptions_delete

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).

Read read
Parameters
subscription_id, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_notification_subscriptions_delete '{"subscription_id":"example_subscription_id","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_notification_subscriptions_delete '{"subscription_id":"example_subscription_id","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_notification_diagnostics_get

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).

Read read
Parameters
subscription_id, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_notification_diagnostics_get '{"subscription_id":"example_subscription_id","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_notification_diagnostics_get '{"subscription_id":"example_subscription_id","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_notification_diagnostics_update

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).

Read read
Parameters
body, subscription_id, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_notification_diagnostics_update '{"body":"example_body","subscription_id":"example_subscription_id","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_notification_diagnostics_update '{"body":"example_body","subscription_id":"example_subscription_id","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_notification_subscriptions_get_subscription_templates

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).

Read read
Parameters
organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_notification_subscriptions_get_subscription_templates '{"organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_notification_subscriptions_get_subscription_templates '{"organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_operations_operations_get

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).

Read read
Parameters
operation_id, organization, plugin_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_operations_operations_get '{"operation_id":"example_operation_id","organization":"example_organization","plugin_id":"example_plugin_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_operations_operations_get '{"operation_id":"example_operation_id","organization":"example_organization","plugin_id":"example_plugin_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_permissions_report_permissions_report_list

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).

Read read
Parameters
organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_permissions_report_permissions_report_list '{"organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_permissions_report_permissions_report_list '{"organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_permissions_report_permissions_report_create

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_permissions_report_permissions_report_create '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_permissions_report_permissions_report_create '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_permissions_report_permissions_report_get

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).

Read read
Parameters
organization, id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_permissions_report_permissions_report_get '{"organization":"example_organization","id":"example_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_permissions_report_permissions_report_get '{"organization":"example_organization","id":"example_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_permissions_report_permissions_report_download_download

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).

Read read
Parameters
organization, id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_permissions_report_permissions_report_download_download '{"organization":"example_organization","id":"example_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_permissions_report_permissions_report_download_download '{"organization":"example_organization","id":"example_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_pipelines_pipelines_list

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).

Read read
Parameters
organization, project, order_by, top, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_pipelines_pipelines_list '{"organization":"example_organization","project":"example_project","order_by":"example_order_by","top":1,"continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_pipelines_pipelines_list '{"organization":"example_organization","project":"example_project","order_by":"example_order_by","top":1,"continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json

azure-devops.azure_devops_pipelines_pipelines_create

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_pipelines_pipelines_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_pipelines_pipelines_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_pipelines_pipelines_get

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).

Read read
Parameters
organization, project, pipeline_id, pipeline_version, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_pipelines_pipelines_get '{"organization":"example_organization","project":"example_project","pipeline_id":1,"pipeline_version":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_pipelines_pipelines_get '{"organization":"example_organization","project":"example_project","pipeline_id":1,"pipeline_version":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_pipelines_preview_preview

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).

Read read
Parameters
organization, body, project, pipeline_id, pipeline_version, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_pipelines_preview_preview '{"organization":"example_organization","body":"example_body","project":"example_project","pipeline_id":1,"pipeline_version":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_pipelines_preview_preview '{"organization":"example_organization","body":"example_body","project":"example_project","pipeline_id":1,"pipeline_version":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_pipelines_runs_list

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).

Read read
Parameters
organization, project, pipeline_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_pipelines_runs_list '{"organization":"example_organization","project":"example_project","pipeline_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_pipelines_runs_list '{"organization":"example_organization","project":"example_project","pipeline_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_pipelines_runs_run_pipeline

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).

Write write
Parameters
organization, body, project, pipeline_id, pipeline_version, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_pipelines_runs_run_pipeline '{"organization":"example_organization","body":"example_body","project":"example_project","pipeline_id":1,"pipeline_version":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_pipelines_runs_run_pipeline '{"organization":"example_organization","body":"example_body","project":"example_project","pipeline_id":1,"pipeline_version":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_pipelines_runs_get

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).

Read read
Parameters
organization, project, pipeline_id, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_pipelines_runs_get '{"organization":"example_organization","project":"example_project","pipeline_id":1,"run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_pipelines_runs_get '{"organization":"example_organization","project":"example_project","pipeline_id":1,"run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_pipelines_artifacts_get

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).

Read read
Parameters
organization, project, pipeline_id, run_id, artifact_name, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_pipelines_artifacts_get '{"organization":"example_organization","project":"example_project","pipeline_id":1,"run_id":1,"artifact_name":"example_artifact_name","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_pipelines_artifacts_get '{"organization":"example_organization","project":"example_project","pipeline_id":1,"run_id":1,"artifact_name":"example_artifact_name","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_pipelines_logs_list

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).

Read read
Parameters
organization, project, pipeline_id, run_id, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_pipelines_logs_list '{"organization":"example_organization","project":"example_project","pipeline_id":1,"run_id":1,"expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_pipelines_logs_list '{"organization":"example_organization","project":"example_project","pipeline_id":1,"run_id":1,"expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_pipelines_logs_get

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).

Read read
Parameters
organization, project, pipeline_id, run_id, log_id, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_pipelines_logs_get '{"organization":"example_organization","project":"example_project","pipeline_id":1,"run_id":1,"log_id":1,"expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_pipelines_logs_get '{"organization":"example_organization","project":"example_project","pipeline_id":1,"run_id":1,"log_id":1,"expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_policy_configurations_list

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).

Read read
Parameters
organization, project, scope, top, continuation_token, policy_type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_policy_configurations_list '{"organization":"example_organization","project":"example_project","scope":"example_scope","top":1,"continuation_token":"example_continuation_token","policy_type":"example_policy_type","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_policy_configurations_list '{"organization":"example_organization","project":"example_project","scope":"example_scope","top":1,"continuation_token":"example_continuation_token","policy_type":"example_policy_type","api_version":"example_api_version"}' --json

azure-devops.azure_devops_policy_configurations_create

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_policy_configurations_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_policy_configurations_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_policy_configurations_get

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).

Read read
Parameters
organization, project, configuration_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_policy_configurations_get '{"organization":"example_organization","project":"example_project","configuration_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_policy_configurations_get '{"organization":"example_organization","project":"example_project","configuration_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_policy_configurations_update

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).

Read read
Parameters
organization, body, project, configuration_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_policy_configurations_update '{"organization":"example_organization","body":"example_body","project":"example_project","configuration_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_policy_configurations_update '{"organization":"example_organization","body":"example_body","project":"example_project","configuration_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_policy_configurations_delete

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).

Read read
Parameters
organization, project, configuration_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_policy_configurations_delete '{"organization":"example_organization","project":"example_project","configuration_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_policy_configurations_delete '{"organization":"example_organization","project":"example_project","configuration_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_policy_revisions_list

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).

Read read
Parameters
organization, project, configuration_id, top, skip, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_policy_revisions_list '{"organization":"example_organization","project":"example_project","configuration_id":1,"top":1,"skip":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_policy_revisions_list '{"organization":"example_organization","project":"example_project","configuration_id":1,"top":1,"skip":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_policy_revisions_get

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).

Read read
Parameters
organization, project, configuration_id, revision_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_policy_revisions_get '{"organization":"example_organization","project":"example_project","configuration_id":1,"revision_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_policy_revisions_get '{"organization":"example_organization","project":"example_project","configuration_id":1,"revision_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_policy_evaluations_list

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).

Read read
Parameters
organization, project, artifact_id, include_not_applicable, top, skip, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_policy_evaluations_list '{"organization":"example_organization","project":"example_project","artifact_id":"example_artifact_id","include_not_applicable":true,"top":1,"skip":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_policy_evaluations_list '{"organization":"example_organization","project":"example_project","artifact_id":"example_artifact_id","include_not_applicable":true,"top":1,"skip":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_policy_evaluations_get

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).

Read read
Parameters
organization, project, evaluation_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_policy_evaluations_get '{"organization":"example_organization","project":"example_project","evaluation_id":"example_evaluation_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_policy_evaluations_get '{"organization":"example_organization","project":"example_project","evaluation_id":"example_evaluation_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_policy_evaluations_requeue_policy_evaluation

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).

Read read
Parameters
organization, project, evaluation_id, api_version, body
Generic call
kosmo integrations:call azure-devops.azure_devops_policy_evaluations_requeue_policy_evaluation '{"organization":"example_organization","project":"example_project","evaluation_id":"example_evaluation_id","api_version":"example_api_version","body":"example_body"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_policy_evaluations_requeue_policy_evaluation '{"organization":"example_organization","project":"example_project","evaluation_id":"example_evaluation_id","api_version":"example_api_version","body":"example_body"}' --json

azure-devops.azure_devops_policy_types_list

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_policy_types_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_policy_types_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_policy_types_get

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).

Read read
Parameters
organization, project, type_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_policy_types_get '{"organization":"example_organization","project":"example_project","type_id":"example_type_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_policy_types_get '{"organization":"example_organization","project":"example_project","type_id":"example_type_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processadmin_processes_export_process_template

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).

Read read
Parameters
organization, id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processadmin_processes_export_process_template '{"organization":"example_organization","id":"example_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processadmin_processes_export_process_template '{"organization":"example_organization","id":"example_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processadmin_processes_import_process_template

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).

Read read
Parameters
organization, body, ignore_warnings, replace_existing_template, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processadmin_processes_import_process_template '{"organization":"example_organization","body":"example_body","ignore_warnings":true,"replace_existing_template":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processadmin_processes_import_process_template '{"organization":"example_organization","body":"example_body","ignore_warnings":true,"replace_existing_template":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_processadmin_processes_import_process_template_status

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).

Read read
Parameters
organization, id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processadmin_processes_import_process_template_status '{"organization":"example_organization","id":"example_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processadmin_processes_import_process_template_status '{"organization":"example_organization","id":"example_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processadmin_behaviors_list

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).

Read read
Parameters
organization, process_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processadmin_behaviors_list '{"organization":"example_organization","process_id":"example_process_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processadmin_behaviors_list '{"organization":"example_organization","process_id":"example_process_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_processes_list

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).

Read read
Parameters
organization, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_processes_list '{"organization":"example_organization","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_processes_list '{"organization":"example_organization","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_processes_create

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_processes_create '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_processes_create '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_lists_list

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).

Read read
Parameters
organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_lists_list '{"organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_lists_list '{"organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_lists_create

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_lists_create '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_lists_create '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_lists_get

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).

Read read
Parameters
organization, list_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_lists_get '{"organization":"example_organization","list_id":"example_list_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_lists_get '{"organization":"example_organization","list_id":"example_list_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_lists_update

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).

Read read
Parameters
organization, body, list_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_lists_update '{"organization":"example_organization","body":"example_body","list_id":"example_list_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_lists_update '{"organization":"example_organization","body":"example_body","list_id":"example_list_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_lists_delete

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).

Read read
Parameters
organization, list_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_lists_delete '{"organization":"example_organization","list_id":"example_list_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_lists_delete '{"organization":"example_organization","list_id":"example_list_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_behaviors_list

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).

Read read
Parameters
organization, process_id, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_behaviors_list '{"organization":"example_organization","process_id":"example_process_id","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_behaviors_list '{"organization":"example_organization","process_id":"example_process_id","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_behaviors_create

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).

Read read
Parameters
organization, body, process_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_behaviors_create '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_behaviors_create '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_behaviors_get

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).

Read read
Parameters
organization, process_id, behavior_ref_name, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_behaviors_get '{"organization":"example_organization","process_id":"example_process_id","behavior_ref_name":"example_behavior_ref_name","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_behaviors_get '{"organization":"example_organization","process_id":"example_process_id","behavior_ref_name":"example_behavior_ref_name","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_behaviors_update

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).

Read read
Parameters
organization, body, process_id, behavior_ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_behaviors_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","behavior_ref_name":"example_behavior_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_behaviors_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","behavior_ref_name":"example_behavior_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_behaviors_delete

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).

Read read
Parameters
organization, process_id, behavior_ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_behaviors_delete '{"organization":"example_organization","process_id":"example_process_id","behavior_ref_name":"example_behavior_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_behaviors_delete '{"organization":"example_organization","process_id":"example_process_id","behavior_ref_name":"example_behavior_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_fields_list

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).

Read read
Parameters
organization, process_id, wit_ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_fields_list '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_fields_list '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_fields_add

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).

Read read
Parameters
organization, body, process_id, wit_ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_fields_add '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_fields_add '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_fields_get

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).

Read read
Parameters
organization, process_id, wit_ref_name, field_ref_name, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_fields_get '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","field_ref_name":"example_field_ref_name","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_fields_get '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","field_ref_name":"example_field_ref_name","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_fields_update

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).

Read read
Parameters
organization, body, process_id, wit_ref_name, field_ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_fields_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","field_ref_name":"example_field_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_fields_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","field_ref_name":"example_field_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_fields_remove_work_item_type_field

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).

Write write
Parameters
organization, process_id, wit_ref_name, field_ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_fields_remove_work_item_type_field '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","field_ref_name":"example_field_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_fields_remove_work_item_type_field '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","field_ref_name":"example_field_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_layout_get

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).

Read read
Parameters
organization, process_id, wit_ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_layout_get '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_layout_get '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_controls_create

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).

Read read
Parameters
organization, body, process_id, wit_ref_name, group_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_controls_create '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","group_id":"example_group_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_controls_create '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","group_id":"example_group_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_controls_move_control_to_group

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).

Write write
Parameters
organization, body, process_id, wit_ref_name, group_id, control_id, remove_from_group_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_controls_move_control_to_group '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","group_id":"example_group_id","control_id":"example_control_id","remove_from_group_id":"example_remove_from_group_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_controls_move_control_to_group '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","group_id":"example_group_id","control_id":"example_control_id","remove_from_group_id":"example_remove_from_group_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_controls_update

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).

Read read
Parameters
organization, body, process_id, wit_ref_name, group_id, control_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_controls_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","group_id":"example_group_id","control_id":"example_control_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_controls_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","group_id":"example_group_id","control_id":"example_control_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_controls_remove_control_from_group

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).

Write write
Parameters
organization, process_id, wit_ref_name, group_id, control_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_controls_remove_control_from_group '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","group_id":"example_group_id","control_id":"example_control_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_controls_remove_control_from_group '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","group_id":"example_group_id","control_id":"example_control_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_pages_add

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).

Read read
Parameters
organization, body, process_id, wit_ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_pages_add '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_pages_add '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_pages_update

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).

Read read
Parameters
organization, body, process_id, wit_ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_pages_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_pages_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_pages_remove_page

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).

Write write
Parameters
organization, process_id, wit_ref_name, page_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_pages_remove_page '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","page_id":"example_page_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_pages_remove_page '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","page_id":"example_page_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_groups_add

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).

Read read
Parameters
organization, body, process_id, wit_ref_name, page_id, section_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_groups_add '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","page_id":"example_page_id","section_id":"example_section_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_groups_add '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","page_id":"example_page_id","section_id":"example_section_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_groups_move_group_to_section

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).

Write write
Parameters
organization, body, process_id, wit_ref_name, page_id, section_id, group_id, remove_from_section_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_groups_move_group_to_section '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","page_id":"example_page_id","section_id":"example_section_id","group_id":"example_group_id","remove_from_section_id":"example_remove_from_section_id"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_groups_move_group_to_section '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","page_id":"example_page_id","section_id":"example_section_id","group_id":"example_group_id","remove_from_section_id":"example_remove_from_section_id"}' --json

azure-devops.azure_devops_processes_groups_update

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).

Read read
Parameters
organization, body, process_id, wit_ref_name, page_id, section_id, group_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_groups_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","page_id":"example_page_id","section_id":"example_section_id","group_id":"example_group_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_groups_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","page_id":"example_page_id","section_id":"example_section_id","group_id":"example_group_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_groups_remove_group

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).

Write write
Parameters
organization, process_id, wit_ref_name, page_id, section_id, group_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_groups_remove_group '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","page_id":"example_page_id","section_id":"example_section_id","group_id":"example_group_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_groups_remove_group '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","page_id":"example_page_id","section_id":"example_section_id","group_id":"example_group_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_system_controls_list

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).

Read read
Parameters
organization, process_id, wit_ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_system_controls_list '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_system_controls_list '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_system_controls_update

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).

Read read
Parameters
organization, body, process_id, wit_ref_name, control_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_system_controls_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","control_id":"example_control_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_system_controls_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","control_id":"example_control_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_system_controls_delete

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).

Read read
Parameters
organization, process_id, wit_ref_name, control_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_system_controls_delete '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","control_id":"example_control_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_system_controls_delete '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","control_id":"example_control_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_rules_list

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).

Read read
Parameters
organization, process_id, wit_ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_rules_list '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_rules_list '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_rules_add

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).

Read read
Parameters
organization, body, process_id, wit_ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_rules_add '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_rules_add '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_rules_get

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).

Read read
Parameters
organization, process_id, wit_ref_name, rule_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_rules_get '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","rule_id":"example_rule_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_rules_get '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","rule_id":"example_rule_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_rules_update

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).

Read read
Parameters
organization, body, process_id, wit_ref_name, rule_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_rules_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","rule_id":"example_rule_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_rules_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","rule_id":"example_rule_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_rules_delete

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).

Read read
Parameters
organization, process_id, wit_ref_name, rule_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_rules_delete '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","rule_id":"example_rule_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_rules_delete '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","rule_id":"example_rule_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_states_list

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).

Read read
Parameters
organization, process_id, wit_ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_states_list '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_states_list '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_states_create

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).

Read read
Parameters
organization, body, process_id, wit_ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_states_create '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_states_create '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_states_get

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).

Read read
Parameters
organization, process_id, wit_ref_name, state_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_states_get '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","state_id":"example_state_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_states_get '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","state_id":"example_state_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_states_hide_state_definition

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).

Read read
Parameters
organization, body, process_id, wit_ref_name, state_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_states_hide_state_definition '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","state_id":"example_state_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_states_hide_state_definition '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","state_id":"example_state_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_states_update

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).

Read read
Parameters
organization, body, process_id, wit_ref_name, state_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_states_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","state_id":"example_state_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_states_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","state_id":"example_state_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_states_delete

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).

Read read
Parameters
organization, process_id, wit_ref_name, state_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_states_delete '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","state_id":"example_state_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_states_delete '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","state_id":"example_state_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_work_item_types_list

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).

Read read
Parameters
organization, process_id, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_work_item_types_list '{"organization":"example_organization","process_id":"example_process_id","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_work_item_types_list '{"organization":"example_organization","process_id":"example_process_id","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_work_item_types_create

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).

Read read
Parameters
organization, body, process_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_work_item_types_create '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_work_item_types_create '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_work_item_types_get

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).

Read read
Parameters
organization, process_id, wit_ref_name, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_work_item_types_get '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_work_item_types_get '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_work_item_types_update

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).

Read read
Parameters
organization, body, process_id, wit_ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_work_item_types_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_work_item_types_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_work_item_types_delete

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).

Read read
Parameters
organization, process_id, wit_ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_work_item_types_delete '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_work_item_types_delete '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name":"example_wit_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_work_item_types_behaviors_list

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).

Read read
Parameters
organization, process_id, wit_ref_name_for_behaviors, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_work_item_types_behaviors_list '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name_for_behaviors":"example_wit_ref_name_for_behaviors","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_work_item_types_behaviors_list '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name_for_behaviors":"example_wit_ref_name_for_behaviors","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_work_item_types_behaviors_add

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).

Read read
Parameters
organization, body, process_id, wit_ref_name_for_behaviors, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_work_item_types_behaviors_add '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name_for_behaviors":"example_wit_ref_name_for_behaviors","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_work_item_types_behaviors_add '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name_for_behaviors":"example_wit_ref_name_for_behaviors","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_work_item_types_behaviors_update

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).

Read read
Parameters
organization, body, process_id, wit_ref_name_for_behaviors, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_work_item_types_behaviors_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name_for_behaviors":"example_wit_ref_name_for_behaviors","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_work_item_types_behaviors_update '{"organization":"example_organization","body":"example_body","process_id":"example_process_id","wit_ref_name_for_behaviors":"example_wit_ref_name_for_behaviors","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_work_item_types_behaviors_get

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).

Read read
Parameters
organization, process_id, wit_ref_name_for_behaviors, behavior_ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_work_item_types_behaviors_get '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name_for_behaviors":"example_wit_ref_name_for_behaviors","behavior_ref_name":"example_behavior_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_work_item_types_behaviors_get '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name_for_behaviors":"example_wit_ref_name_for_behaviors","behavior_ref_name":"example_behavior_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_work_item_types_behaviors_remove_behavior_from_work_item_type

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).

Write write
Parameters
organization, process_id, wit_ref_name_for_behaviors, behavior_ref_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_work_item_types_behaviors_remove_behavior_from_work_item_type '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name_for_behaviors":"example_wit_ref_name_for_behaviors","behavior_ref_name":"example_behavior_ref_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_work_item_types_behaviors_remove_behavior_from_work_item_type '{"organization":"example_organization","process_id":"example_process_id","wit_ref_name_for_behaviors":"example_wit_ref_name_for_behaviors","behavior_ref_name":"example_behavior_ref_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_processes_get

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).

Read read
Parameters
organization, process_type_id, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_processes_get '{"organization":"example_organization","process_type_id":"example_process_type_id","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_processes_get '{"organization":"example_organization","process_type_id":"example_process_type_id","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_processes_edit_process

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).

Read read
Parameters
organization, body, process_type_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_processes_edit_process '{"organization":"example_organization","body":"example_body","process_type_id":"example_process_type_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_processes_edit_process '{"organization":"example_organization","body":"example_body","process_type_id":"example_process_type_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_processes_processes_delete

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).

Read read
Parameters
organization, process_type_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_processes_processes_delete '{"organization":"example_organization","process_type_id":"example_process_type_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_processes_processes_delete '{"organization":"example_organization","process_type_id":"example_process_type_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_profile_profiles_get

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).

Read read
Parameters
id, details, with_attributes, partition, core_attributes, force_refresh, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_profile_profiles_get '{"id":"example_id","details":true,"with_attributes":true,"partition":"example_partition","core_attributes":"example_core_attributes","force_refresh":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_profile_profiles_get '{"id":"example_id","details":true,"with_attributes":true,"partition":"example_partition","core_attributes":"example_core_attributes","force_refresh":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_definitions_get_release_definition_history

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).

Read read
Parameters
organization, project, definition_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_definitions_get_release_definition_history '{"organization":"example_organization","project":"example_project","definition_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_definitions_get_release_definition_history '{"organization":"example_organization","project":"example_project","definition_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_definitions_get_definition_revision

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).

Read read
Parameters
organization, project, definition_id, revision, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_definitions_get_definition_revision '{"organization":"example_organization","project":"example_project","definition_id":1,"revision":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_definitions_get_definition_revision '{"organization":"example_organization","project":"example_project","definition_id":1,"revision":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_releases_get_release_environment

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).

Read read
Parameters
organization, project, release_id, environment_id, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_releases_get_release_environment '{"organization":"example_organization","project":"example_project","release_id":1,"environment_id":1,"expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_releases_get_release_environment '{"organization":"example_organization","project":"example_project","release_id":1,"environment_id":1,"expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_releases_update_release_environment

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).

Write write
Parameters
organization, body, project, release_id, environment_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_releases_update_release_environment '{"organization":"example_organization","body":"example_body","project":"example_project","release_id":1,"environment_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_releases_update_release_environment '{"organization":"example_organization","body":"example_body","project":"example_project","release_id":1,"environment_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_manual_interventions_list

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).

Read read
Parameters
organization, project, release_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_manual_interventions_list '{"organization":"example_organization","project":"example_project","release_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_manual_interventions_list '{"organization":"example_organization","project":"example_project","release_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_manual_interventions_get

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).

Read read
Parameters
organization, project, release_id, manual_intervention_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_manual_interventions_get '{"organization":"example_organization","project":"example_project","release_id":1,"manual_intervention_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_manual_interventions_get '{"organization":"example_organization","project":"example_project","release_id":1,"manual_intervention_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_manual_interventions_update

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).

Read read
Parameters
organization, body, project, release_id, manual_intervention_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_manual_interventions_update '{"organization":"example_organization","body":"example_body","project":"example_project","release_id":1,"manual_intervention_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_manual_interventions_update '{"organization":"example_organization","body":"example_body","project":"example_project","release_id":1,"manual_intervention_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_approvals_list

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).

Read read
Parameters
organization, project, assigned_to_filter, status_filter, release_ids_filter, type_filter, top, continuation_token, query_order, include_my_group_approvals, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_approvals_list '{"organization":"example_organization","project":"example_project","assigned_to_filter":"example_assigned_to_filter","status_filter":"example_status_filter","release_ids_filter":"example_release_ids_filter","type_filter":"example_type_filter","top":1,"continuation_token":1}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_approvals_list '{"organization":"example_organization","project":"example_project","assigned_to_filter":"example_assigned_to_filter","status_filter":"example_status_filter","release_ids_filter":"example_release_ids_filter","type_filter":"example_type_filter","top":1,"continuation_token":1}' --json

azure-devops.azure_devops_release_approvals_update

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).

Read read
Parameters
organization, body, project, approval_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_approvals_update '{"organization":"example_organization","body":"example_body","project":"example_project","approval_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_approvals_update '{"organization":"example_organization","body":"example_body","project":"example_project","approval_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_definitions_list

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).

Read read
Parameters
organization, project, search_text, expand, artifact_type, artifact_source_id, top, continuation_token, query_order, path, is_exact_name_match, tag_filter, property_filters, definition_id_filter, is_deleted, search_text_contains_folder_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_definitions_list '{"organization":"example_organization","project":"example_project","search_text":"example_search_text","expand":"example_expand","artifact_type":"example_artifact_type","artifact_source_id":"example_artifact_source_id","top":1,"continuation_token":"example_continuation_token"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_definitions_list '{"organization":"example_organization","project":"example_project","search_text":"example_search_text","expand":"example_expand","artifact_type":"example_artifact_type","artifact_source_id":"example_artifact_source_id","top":1,"continuation_token":"example_continuation_token"}' --json

azure-devops.azure_devops_release_definitions_create

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_definitions_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_definitions_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_definitions_update

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).

Read read
Parameters
organization, body, project, skip_tasks_validation, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_definitions_update '{"organization":"example_organization","body":"example_body","project":"example_project","skip_tasks_validation":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_definitions_update '{"organization":"example_organization","body":"example_body","project":"example_project","skip_tasks_validation":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_definitions_get

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).

Read read
Parameters
organization, project, definition_id, property_filters, include_disabled, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_definitions_get '{"organization":"example_organization","project":"example_project","definition_id":1,"property_filters":"example_property_filters","include_disabled":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_definitions_get '{"organization":"example_organization","project":"example_project","definition_id":1,"property_filters":"example_property_filters","include_disabled":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_definitions_delete

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).

Read read
Parameters
organization, project, definition_id, comment, force_delete, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_definitions_delete '{"organization":"example_organization","project":"example_project","definition_id":1,"comment":"example_comment","force_delete":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_definitions_delete '{"organization":"example_organization","project":"example_project","definition_id":1,"comment":"example_comment","force_delete":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_deployments_list

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).

Read read
Parameters
organization, project, definition_id, definition_environment_id, created_by, min_modified_time, max_modified_time, deployment_status, operation_status, latest_attempts_only, query_order, top, continuation_token, created_for, min_started_time, max_started_time, source_branch, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_deployments_list '{"organization":"example_organization","project":"example_project","definition_id":1,"definition_environment_id":1,"created_by":"example_created_by","min_modified_time":"example_min_modified_time","max_modified_time":"example_max_modified_time","deployment_status":"example_deployment_status"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_deployments_list '{"organization":"example_organization","project":"example_project","definition_id":1,"definition_environment_id":1,"created_by":"example_created_by","min_modified_time":"example_min_modified_time","max_modified_time":"example_max_modified_time","deployment_status":"example_deployment_status"}' --json

azure-devops.azure_devops_release_folders_list

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).

Read read
Parameters
organization, project, path, query_order, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_folders_list '{"organization":"example_organization","project":"example_project","path":"example_path","query_order":"example_query_order","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_folders_list '{"organization":"example_organization","project":"example_project","path":"example_path","query_order":"example_query_order","api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_folders_create

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).

Read read
Parameters
organization, body, project, path, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_folders_create '{"organization":"example_organization","body":"example_body","project":"example_project","path":"example_path","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_folders_create '{"organization":"example_organization","body":"example_body","project":"example_project","path":"example_path","api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_folders_update

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).

Read read
Parameters
organization, body, project, path, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_folders_update '{"organization":"example_organization","body":"example_body","project":"example_project","path":"example_path","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_folders_update '{"organization":"example_organization","body":"example_body","project":"example_project","path":"example_path","api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_folders_delete

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).

Read read
Parameters
organization, project, path, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_folders_delete '{"organization":"example_organization","project":"example_project","path":"example_path","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_folders_delete '{"organization":"example_organization","project":"example_project","path":"example_path","api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_gates_update

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).

Read read
Parameters
organization, body, project, gate_step_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_gates_update '{"organization":"example_organization","body":"example_body","project":"example_project","gate_step_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_gates_update '{"organization":"example_organization","body":"example_body","project":"example_project","gate_step_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_releases_list

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).

Read read
Parameters
organization, project, definition_id, definition_environment_id, search_text, created_by, status_filter, environment_status_filter, min_created_time, max_created_time, query_order, top, continuation_token, expand, artifact_type_id, source_id, artifact_version_id, source_branch_filter, is_deleted, tag_filter, property_filters, release_id_filter, path, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_releases_list '{"organization":"example_organization","project":"example_project","definition_id":1,"definition_environment_id":1,"search_text":"example_search_text","created_by":"example_created_by","status_filter":"example_status_filter","environment_status_filter":1}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_releases_list '{"organization":"example_organization","project":"example_project","definition_id":1,"definition_environment_id":1,"search_text":"example_search_text","created_by":"example_created_by","status_filter":"example_status_filter","environment_status_filter":1}' --json

azure-devops.azure_devops_release_releases_create

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_releases_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_releases_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_releases_get_release_revision

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).

Read read
Parameters
organization, project, release_id, definition_snapshot_revision, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_releases_get_release_revision '{"organization":"example_organization","project":"example_project","release_id":1,"definition_snapshot_revision":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_releases_get_release_revision '{"organization":"example_organization","project":"example_project","release_id":1,"definition_snapshot_revision":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_releases_update_release

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).

Write write
Parameters
organization, body, project, release_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_releases_update_release '{"organization":"example_organization","body":"example_body","project":"example_project","release_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_releases_update_release '{"organization":"example_organization","body":"example_body","project":"example_project","release_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_releases_update_release_resource

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).

Write write
Parameters
organization, body, project, release_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_releases_update_release_resource '{"organization":"example_organization","body":"example_body","project":"example_project","release_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_releases_update_release_resource '{"organization":"example_organization","body":"example_body","project":"example_project","release_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_attachments_get_release_task_attachments

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).

Read read
Parameters
organization, project, release_id, environment_id, attempt_id, plan_id, type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_attachments_get_release_task_attachments '{"organization":"example_organization","project":"example_project","release_id":1,"environment_id":1,"attempt_id":1,"plan_id":"example_plan_id","type":"example_type","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_attachments_get_release_task_attachments '{"organization":"example_organization","project":"example_project","release_id":1,"environment_id":1,"attempt_id":1,"plan_id":"example_plan_id","type":"example_type","api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_attachments_get_release_task_attachment_content

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).

Read read
Parameters
organization, project, release_id, environment_id, attempt_id, plan_id, timeline_id, record_id, type, name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_attachments_get_release_task_attachment_content '{"organization":"example_organization","project":"example_project","release_id":1,"environment_id":1,"attempt_id":1,"plan_id":"example_plan_id","timeline_id":"example_timeline_id","record_id":"example_record_id"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_attachments_get_release_task_attachment_content '{"organization":"example_organization","project":"example_project","release_id":1,"environment_id":1,"attempt_id":1,"plan_id":"example_plan_id","timeline_id":"example_timeline_id","record_id":"example_record_id"}' --json

azure-devops.azure_devops_release_attachments_get_task_attachments

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).

Read read
Parameters
organization, project, release_id, environment_id, attempt_id, timeline_id, type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_attachments_get_task_attachments '{"organization":"example_organization","project":"example_project","release_id":1,"environment_id":1,"attempt_id":1,"timeline_id":"example_timeline_id","type":"example_type","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_attachments_get_task_attachments '{"organization":"example_organization","project":"example_project","release_id":1,"environment_id":1,"attempt_id":1,"timeline_id":"example_timeline_id","type":"example_type","api_version":"example_api_version"}' --json

azure-devops.azure_devops_release_attachments_get_task_attachment_content

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).

Read read
Parameters
organization, project, release_id, environment_id, attempt_id, timeline_id, record_id, type, name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_attachments_get_task_attachment_content '{"organization":"example_organization","project":"example_project","release_id":1,"environment_id":1,"attempt_id":1,"timeline_id":"example_timeline_id","record_id":"example_record_id","type":"example_type"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_attachments_get_task_attachment_content '{"organization":"example_organization","project":"example_project","release_id":1,"environment_id":1,"attempt_id":1,"timeline_id":"example_timeline_id","record_id":"example_record_id","type":"example_type"}' --json

azure-devops.azure_devops_release_releases_get_task_log

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).

Read read
Parameters
organization, project, release_id, environment_id, release_deploy_phase_id, task_id, start_line, end_line, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_releases_get_task_log '{"organization":"example_organization","project":"example_project","release_id":1,"environment_id":1,"release_deploy_phase_id":1,"task_id":1,"start_line":1,"end_line":1}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_releases_get_task_log '{"organization":"example_organization","project":"example_project","release_id":1,"environment_id":1,"release_deploy_phase_id":1,"task_id":1,"start_line":1,"end_line":1}' --json

azure-devops.azure_devops_release_releases_get_logs

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).

Read read
Parameters
organization, project, release_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_release_releases_get_logs '{"organization":"example_organization","project":"example_project","release_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_release_releases_get_logs '{"organization":"example_organization","project":"example_project","release_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_resource_usage_team_project_collection_list

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).

Read read
Parameters
organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_resource_usage_team_project_collection_list '{"organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_resource_usage_team_project_collection_list '{"organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_resource_usage_project_list

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_resource_usage_project_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_resource_usage_project_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_search_package_search_results_fetch_package_search_results

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_search_package_search_results_fetch_package_search_results '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_search_package_search_results_fetch_package_search_results '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_search_code_search_results_fetch_code_search_results

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_search_code_search_results_fetch_code_search_results '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_search_code_search_results_fetch_code_search_results '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_search_repositories_get

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).

Read read
Parameters
organization, project, repository, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_search_repositories_get '{"organization":"example_organization","project":"example_project","repository":"example_repository","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_search_repositories_get '{"organization":"example_organization","project":"example_project","repository":"example_repository","api_version":"example_api_version"}' --json

azure-devops.azure_devops_search_tfvc_get

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_search_tfvc_get '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_search_tfvc_get '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_search_wiki_search_results_fetch_wiki_search_results

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_search_wiki_search_results_fetch_wiki_search_results '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_search_wiki_search_results_fetch_wiki_search_results '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_search_work_item_search_results_fetch_work_item_search_results

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_search_work_item_search_results_fetch_work_item_search_results '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_search_work_item_search_results_fetch_work_item_search_results '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_security_access_control_entries_set_access_control_entries

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).

Read read
Parameters
body, security_namespace_id, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_security_access_control_entries_set_access_control_entries '{"body":"example_body","security_namespace_id":"example_security_namespace_id","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_security_access_control_entries_set_access_control_entries '{"body":"example_body","security_namespace_id":"example_security_namespace_id","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_security_access_control_entries_remove_access_control_entries

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).

Write write
Parameters
security_namespace_id, organization, token, descriptors, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_security_access_control_entries_remove_access_control_entries '{"security_namespace_id":"example_security_namespace_id","organization":"example_organization","token":"example_token","descriptors":"example_descriptors","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_security_access_control_entries_remove_access_control_entries '{"security_namespace_id":"example_security_namespace_id","organization":"example_organization","token":"example_token","descriptors":"example_descriptors","api_version":"example_api_version"}' --json

azure-devops.azure_devops_security_access_control_lists_query

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).

Read read
Parameters
security_namespace_id, organization, token, descriptors, include_extended_info, recurse, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_security_access_control_lists_query '{"security_namespace_id":"example_security_namespace_id","organization":"example_organization","token":"example_token","descriptors":"example_descriptors","include_extended_info":true,"recurse":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_security_access_control_lists_query '{"security_namespace_id":"example_security_namespace_id","organization":"example_organization","token":"example_token","descriptors":"example_descriptors","include_extended_info":true,"recurse":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_security_access_control_lists_set_access_control_lists

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).

Read read
Parameters
body, security_namespace_id, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_security_access_control_lists_set_access_control_lists '{"body":"example_body","security_namespace_id":"example_security_namespace_id","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_security_access_control_lists_set_access_control_lists '{"body":"example_body","security_namespace_id":"example_security_namespace_id","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_security_access_control_lists_remove_access_control_lists

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).

Write write
Parameters
security_namespace_id, organization, tokens, recurse, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_security_access_control_lists_remove_access_control_lists '{"security_namespace_id":"example_security_namespace_id","organization":"example_organization","tokens":"example_tokens","recurse":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_security_access_control_lists_remove_access_control_lists '{"security_namespace_id":"example_security_namespace_id","organization":"example_organization","tokens":"example_tokens","recurse":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_security_permissions_has_permissions

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).

Read read
Parameters
security_namespace_id, organization, permissions, tokens, always_allow_administrators, delimiter, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_security_permissions_has_permissions '{"security_namespace_id":"example_security_namespace_id","organization":"example_organization","permissions":1,"tokens":"example_tokens","always_allow_administrators":true,"delimiter":"example_delimiter","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_security_permissions_has_permissions '{"security_namespace_id":"example_security_namespace_id","organization":"example_organization","permissions":1,"tokens":"example_tokens","always_allow_administrators":true,"delimiter":"example_delimiter","api_version":"example_api_version"}' --json

azure-devops.azure_devops_security_permissions_remove_permission

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).

Write write
Parameters
security_namespace_id, descriptor, organization, permissions, token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_security_permissions_remove_permission '{"security_namespace_id":"example_security_namespace_id","descriptor":"example_descriptor","organization":"example_organization","permissions":1,"token":"example_token","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_security_permissions_remove_permission '{"security_namespace_id":"example_security_namespace_id","descriptor":"example_descriptor","organization":"example_organization","permissions":1,"token":"example_token","api_version":"example_api_version"}' --json

azure-devops.azure_devops_security_permissions_has_permissions_batch

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).

Read read
Parameters
body, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_security_permissions_has_permissions_batch '{"body":"example_body","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_security_permissions_has_permissions_batch '{"body":"example_body","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_security_security_namespaces_query

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).

Read read
Parameters
organization, security_namespace_id, local_only, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_security_security_namespaces_query '{"organization":"example_organization","security_namespace_id":"example_security_namespace_id","local_only":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_security_security_namespaces_query '{"organization":"example_organization","security_namespace_id":"example_security_namespace_id","local_only":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_security_roles_roleassignments_list

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).

Read read
Parameters
scope_id, resource_id, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_security_roles_roleassignments_list '{"scope_id":"example_scope_id","resource_id":"example_resource_id","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_security_roles_roleassignments_list '{"scope_id":"example_scope_id","resource_id":"example_resource_id","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_security_roles_roleassignments_set_role_assignments

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).

Read read
Parameters
body, scope_id, resource_id, organization, limit_to_caller_identity_domain, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_security_roles_roleassignments_set_role_assignments '{"body":"example_body","scope_id":"example_scope_id","resource_id":"example_resource_id","organization":"example_organization","limit_to_caller_identity_domain":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_security_roles_roleassignments_set_role_assignments '{"body":"example_body","scope_id":"example_scope_id","resource_id":"example_resource_id","organization":"example_organization","limit_to_caller_identity_domain":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_security_roles_roleassignments_remove_role_assignments

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).

Write write
Parameters
body, scope_id, resource_id, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_security_roles_roleassignments_remove_role_assignments '{"body":"example_body","scope_id":"example_scope_id","resource_id":"example_resource_id","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_security_roles_roleassignments_remove_role_assignments '{"body":"example_body","scope_id":"example_scope_id","resource_id":"example_resource_id","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_security_roles_roleassignments_set_role_assignment

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).

Read read
Parameters
body, scope_id, resource_id, identity_id, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_security_roles_roleassignments_set_role_assignment '{"body":"example_body","scope_id":"example_scope_id","resource_id":"example_resource_id","identity_id":"example_identity_id","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_security_roles_roleassignments_set_role_assignment '{"body":"example_body","scope_id":"example_scope_id","resource_id":"example_resource_id","identity_id":"example_identity_id","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_security_roles_roleassignments_remove_role_assignment

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).

Write write
Parameters
scope_id, resource_id, identity_id, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_security_roles_roleassignments_remove_role_assignment '{"scope_id":"example_scope_id","resource_id":"example_resource_id","identity_id":"example_identity_id","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_security_roles_roleassignments_remove_role_assignment '{"scope_id":"example_scope_id","resource_id":"example_resource_id","identity_id":"example_identity_id","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_security_roles_roledefinitions_list

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).

Read read
Parameters
scope_id, organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_security_roles_roledefinitions_list '{"scope_id":"example_scope_id","organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_security_roles_roledefinitions_list '{"scope_id":"example_scope_id","organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_service_endpoint_endpoints_create

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_service_endpoint_endpoints_create '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_service_endpoint_endpoints_create '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_service_endpoint_endpoints_update_service_endpoints

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).

Write write
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_service_endpoint_endpoints_update_service_endpoints '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_service_endpoint_endpoints_update_service_endpoints '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_service_endpoint_endpoints_update_service_endpoint

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).

Write write
Parameters
organization, body, endpoint_id, operation, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_service_endpoint_endpoints_update_service_endpoint '{"organization":"example_organization","body":"example_body","endpoint_id":"example_endpoint_id","operation":"example_operation","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_service_endpoint_endpoints_update_service_endpoint '{"organization":"example_organization","body":"example_body","endpoint_id":"example_endpoint_id","operation":"example_operation","api_version":"example_api_version"}' --json

azure-devops.azure_devops_service_endpoint_endpoints_share_service_endpoint

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).

Read read
Parameters
organization, body, endpoint_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_service_endpoint_endpoints_share_service_endpoint '{"organization":"example_organization","body":"example_body","endpoint_id":"example_endpoint_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_service_endpoint_endpoints_share_service_endpoint '{"organization":"example_organization","body":"example_body","endpoint_id":"example_endpoint_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_service_endpoint_endpoints_delete

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).

Read read
Parameters
organization, endpoint_id, project_ids, deep, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_service_endpoint_endpoints_delete '{"organization":"example_organization","endpoint_id":"example_endpoint_id","project_ids":"example_project_ids","deep":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_service_endpoint_endpoints_delete '{"organization":"example_organization","endpoint_id":"example_endpoint_id","project_ids":"example_project_ids","deep":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_service_endpoint_types_get_service_endpoint_types

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).

Read read
Parameters
organization, type, scheme, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_service_endpoint_types_get_service_endpoint_types '{"organization":"example_organization","type":"example_type","scheme":"example_scheme","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_service_endpoint_types_get_service_endpoint_types '{"organization":"example_organization","type":"example_type","scheme":"example_scheme","api_version":"example_api_version"}' --json

azure-devops.azure_devops_service_endpoint_types_get_filtered_service_endpoint_types

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_service_endpoint_types_get_filtered_service_endpoint_types '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_service_endpoint_types_get_filtered_service_endpoint_types '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_service_endpoint_endpointproxy_query

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_service_endpoint_endpointproxy_query '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_service_endpoint_endpointproxy_query '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_service_endpoint_endpoints_get_service_endpoints_by_names

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).

Read read
Parameters
organization, project, endpoint_names, type, auth_schemes, owner, include_failed, include_details, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_service_endpoint_endpoints_get_service_endpoints_by_names '{"organization":"example_organization","project":"example_project","endpoint_names":"example_endpoint_names","type":"example_type","auth_schemes":"example_auth_schemes","owner":"example_owner","include_failed":true,"include_details":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_service_endpoint_endpoints_get_service_endpoints_by_names '{"organization":"example_organization","project":"example_project","endpoint_names":"example_endpoint_names","type":"example_type","auth_schemes":"example_auth_schemes","owner":"example_owner","include_failed":true,"include_details":true}' --json

azure-devops.azure_devops_service_endpoint_endpoints_get_service_endpoints_with_refreshed_authentication

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).

Read read
Parameters
organization, body, project, endpoint_ids, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_service_endpoint_endpoints_get_service_endpoints_with_refreshed_authentication '{"organization":"example_organization","body":"example_body","project":"example_project","endpoint_ids":"example_endpoint_ids","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_service_endpoint_endpoints_get_service_endpoints_with_refreshed_authentication '{"organization":"example_organization","body":"example_body","project":"example_project","endpoint_ids":"example_endpoint_ids","api_version":"example_api_version"}' --json

azure-devops.azure_devops_service_endpoint_endpoints_get

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).

Read read
Parameters
organization, project, endpoint_id, action_filter, load_confidential_data, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_service_endpoint_endpoints_get '{"organization":"example_organization","project":"example_project","endpoint_id":"example_endpoint_id","action_filter":"example_action_filter","load_confidential_data":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_service_endpoint_endpoints_get '{"organization":"example_organization","project":"example_project","endpoint_id":"example_endpoint_id","action_filter":"example_action_filter","load_confidential_data":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_service_endpoint_executionhistory_list

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).

Read read
Parameters
organization, project, endpoint_id, top, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_service_endpoint_executionhistory_list '{"organization":"example_organization","project":"example_project","endpoint_id":"example_endpoint_id","top":1,"continuation_token":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_service_endpoint_executionhistory_list '{"organization":"example_organization","project":"example_project","endpoint_id":"example_endpoint_id","top":1,"continuation_token":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_status_health_get

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).

Read read
Parameters
services, geographies, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_status_health_get '{"services":"example_services","geographies":"example_geographies","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_status_health_get '{"services":"example_services","geographies":"example_geographies","api_version":"example_api_version"}' --json

azure-devops.azure_devops_symbol_availability_check_availability

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).

Read read
Parameters
organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_symbol_availability_check_availability '{"organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_symbol_availability_check_availability '{"organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_symbol_client_get

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).

Read read
Parameters
organization, client_type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_symbol_client_get '{"organization":"example_organization","client_type":"example_client_type","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_symbol_client_get '{"organization":"example_organization","client_type":"example_client_type","api_version":"example_api_version"}' --json

azure-devops.azure_devops_symbol_requests_get_requests_request_name

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).

Read read
Parameters
organization, request_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_symbol_requests_get_requests_request_name '{"organization":"example_organization","request_name":"example_request_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_symbol_requests_get_requests_request_name '{"organization":"example_organization","request_name":"example_request_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_symbol_requests_create_requests

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).

Write write
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_symbol_requests_create_requests '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_symbol_requests_create_requests '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_symbol_requests_update_requests_request_name

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).

Write write
Parameters
organization, body, request_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_symbol_requests_update_requests_request_name '{"organization":"example_organization","body":"example_body","request_name":"example_request_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_symbol_requests_update_requests_request_name '{"organization":"example_organization","body":"example_body","request_name":"example_request_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_symbol_requests_delete_requests_request_name

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).

Write write
Parameters
organization, request_name, synchronous, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_symbol_requests_delete_requests_request_name '{"organization":"example_organization","request_name":"example_request_name","synchronous":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_symbol_requests_delete_requests_request_name '{"organization":"example_organization","request_name":"example_request_name","synchronous":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_symbol_requests_get_requests_request_id

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).

Read read
Parameters
organization, request_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_symbol_requests_get_requests_request_id '{"organization":"example_organization","request_id":"example_request_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_symbol_requests_get_requests_request_id '{"organization":"example_organization","request_id":"example_request_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_symbol_requests_create_requests_request_id_debug_entries

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).

Write write
Parameters
organization, body, request_id, collection, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_symbol_requests_create_requests_request_id_debug_entries '{"organization":"example_organization","body":"example_body","request_id":"example_request_id","collection":"example_collection","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_symbol_requests_create_requests_request_id_debug_entries '{"organization":"example_organization","body":"example_body","request_id":"example_request_id","collection":"example_collection","api_version":"example_api_version"}' --json

azure-devops.azure_devops_symbol_requests_update_requests_request_id

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).

Write write
Parameters
organization, body, request_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_symbol_requests_update_requests_request_id '{"organization":"example_organization","body":"example_body","request_id":"example_request_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_symbol_requests_update_requests_request_id '{"organization":"example_organization","body":"example_body","request_id":"example_request_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_symbol_requests_delete_requests_request_id

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).

Write write
Parameters
organization, request_id, synchronous, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_symbol_requests_delete_requests_request_id '{"organization":"example_organization","request_id":"example_request_id","synchronous":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_symbol_requests_delete_requests_request_id '{"organization":"example_organization","request_id":"example_request_id","synchronous":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_symbol_contents_get

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).

Read read
Parameters
organization, request_id, debug_entry_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_symbol_contents_get '{"organization":"example_organization","request_id":"example_request_id","debug_entry_id":"example_debug_entry_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_symbol_contents_get '{"organization":"example_organization","request_id":"example_request_id","debug_entry_id":"example_debug_entry_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_symbol_symsrv_get

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).

Read read
Parameters
organization, debug_entry_client_key, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_symbol_symsrv_get '{"organization":"example_organization","debug_entry_client_key":"example_debug_entry_client_key","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_symbol_symsrv_get '{"organization":"example_organization","debug_entry_client_key":"example_debug_entry_client_key","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_points_list

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).

Write write
Parameters
organization, project, plan_id, suite_id, wit_fields, configuration_id, test_case_id, test_point_ids, include_point_details, skip, top, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_points_list '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"wit_fields":"example_wit_fields","configuration_id":"example_configuration_id","test_case_id":"example_test_case_id","test_point_ids":"example_test_point_ids"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_points_list '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"wit_fields":"example_wit_fields","configuration_id":"example_configuration_id","test_case_id":"example_test_case_id","test_point_ids":"example_test_point_ids"}' --json

azure-devops.azure_devops_test_points_get_point

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).

Write write
Parameters
organization, project, plan_id, suite_id, point_ids, wit_fields, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_points_get_point '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"point_ids":1,"wit_fields":"example_wit_fields","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_points_get_point '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"point_ids":1,"wit_fields":"example_wit_fields","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_points_update

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).

Write write
Parameters
organization, body, project, plan_id, suite_id, point_ids, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_points_update '{"organization":"example_organization","body":"example_body","project":"example_project","plan_id":1,"suite_id":1,"point_ids":"example_point_ids","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_points_update '{"organization":"example_organization","body":"example_body","project":"example_project","plan_id":1,"suite_id":1,"point_ids":"example_point_ids","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_test_suites_list

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).

Write write
Parameters
organization, project, plan_id, suite_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_test_suites_list '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_test_suites_list '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_test_suites_get

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).

Write write
Parameters
organization, project, plan_id, suite_id, test_case_ids, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_test_suites_get '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"test_case_ids":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_test_suites_get '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"test_case_ids":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_test_suites_add

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).

Write write
Parameters
organization, project, plan_id, suite_id, test_case_ids, api_version, body
Generic call
kosmo integrations:call azure-devops.azure_devops_test_test_suites_add '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"test_case_ids":"example_test_case_ids","api_version":"example_api_version","body":"example_body"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_test_suites_add '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"test_case_ids":"example_test_case_ids","api_version":"example_api_version","body":"example_body"}' --json

azure-devops.azure_devops_test_test_suites_update

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).

Write write
Parameters
organization, body, project, plan_id, suite_id, test_case_ids, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_test_suites_update '{"organization":"example_organization","body":"example_body","project":"example_project","plan_id":1,"suite_id":1,"test_case_ids":"example_test_case_ids","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_test_suites_update '{"organization":"example_organization","body":"example_body","project":"example_project","plan_id":1,"suite_id":1,"test_case_ids":"example_test_case_ids","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_test_suites_remove_test_cases_from_suite_url

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).

Write write
Parameters
organization, project, plan_id, suite_id, test_case_ids, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_test_suites_remove_test_cases_from_suite_url '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"test_case_ids":"example_test_case_ids","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_test_suites_remove_test_cases_from_suite_url '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"test_case_ids":"example_test_case_ids","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_test_history_query

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_test_history_query '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_test_history_query '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_attachments_get_test_result_attachments

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).

Write write
Parameters
organization, project, run_id, test_case_result_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_attachments_get_test_result_attachments '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_attachments_get_test_result_attachments '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_attachments_create_test_result_attachment

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).

Write write
Parameters
organization, body, project, run_id, test_case_result_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_attachments_create_test_result_attachment '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"test_case_result_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_attachments_create_test_result_attachment '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"test_case_result_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_attachments_get_test_result_attachment_zip

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).

Write write
Parameters
organization, project, run_id, test_case_result_id, attachment_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_attachments_get_test_result_attachment_zip '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"attachment_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_attachments_get_test_result_attachment_zip '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"attachment_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_iterations_list

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).

Write write
Parameters
organization, project, run_id, test_case_result_id, include_action_results, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_iterations_list '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"include_action_results":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_iterations_list '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"include_action_results":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_iterations_get

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).

Write write
Parameters
organization, project, run_id, test_case_result_id, iteration_id, include_action_results, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_iterations_get '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"iteration_id":1,"include_action_results":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_iterations_get '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"iteration_id":1,"include_action_results":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_attachments_get_test_run_attachments

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).

Write write
Parameters
organization, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_attachments_get_test_run_attachments '{"organization":"example_organization","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_attachments_get_test_run_attachments '{"organization":"example_organization","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_attachments_create_test_run_attachment

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).

Write write
Parameters
organization, body, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_attachments_create_test_run_attachment '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_attachments_create_test_run_attachment '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_attachments_get_test_run_attachment_zip

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).

Write write
Parameters
organization, project, run_id, attachment_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_attachments_get_test_run_attachment_zip '{"organization":"example_organization","project":"example_project","run_id":1,"attachment_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_attachments_get_test_run_attachment_zip '{"organization":"example_organization","project":"example_project","run_id":1,"attachment_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_code_coverage_get_test_run_code_coverage

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).

Write write
Parameters
organization, project, run_id, flags, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_code_coverage_get_test_run_code_coverage '{"organization":"example_organization","project":"example_project","run_id":1,"flags":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_code_coverage_get_test_run_code_coverage '{"organization":"example_organization","project":"example_project","run_id":1,"flags":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_list

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).

Write write
Parameters
organization, project, run_id, details_to_include, skip, top, outcomes, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_list '{"organization":"example_organization","project":"example_project","run_id":1,"details_to_include":"example_details_to_include","skip":1,"top":1,"outcomes":"example_outcomes","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_list '{"organization":"example_organization","project":"example_project","run_id":1,"details_to_include":"example_details_to_include","skip":1,"top":1,"outcomes":"example_outcomes","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_add

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).

Write write
Parameters
organization, body, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_add '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_add '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_update

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).

Write write
Parameters
organization, body, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_update '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_update '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_get

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).

Write write
Parameters
organization, project, run_id, test_case_result_id, details_to_include, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_get '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"details_to_include":"example_details_to_include","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_get '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"details_to_include":"example_details_to_include","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_code_coverage_get_build_code_coverage

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).

Write write
Parameters
organization, project, build_id, flags, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_code_coverage_get_build_code_coverage '{"organization":"example_organization","project":"example_project","build_id":1,"flags":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_code_coverage_get_build_code_coverage '{"organization":"example_organization","project":"example_project","build_id":1,"flags":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_points_get_points_by_query

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).

Write write
Parameters
organization, body, project, skip, top, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_points_get_points_by_query '{"organization":"example_organization","body":"example_body","project":"example_project","skip":1,"top":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_points_get_points_by_query '{"organization":"example_organization","body":"example_body","project":"example_project","skip":1,"top":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_result_retention_settings_get

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).

Write write
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_result_retention_settings_get '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_result_retention_settings_get '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_result_retention_settings_update

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_result_retention_settings_update '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_result_retention_settings_update '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_runs_list

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).

Write write
Parameters
organization, project, build_uri, owner, tmi_run_id, plan_id, include_run_details, automated, skip, top, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_runs_list '{"organization":"example_organization","project":"example_project","build_uri":"example_build_uri","owner":"example_owner","tmi_run_id":"example_tmi_run_id","plan_id":1,"include_run_details":true,"automated":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_runs_list '{"organization":"example_organization","project":"example_project","build_uri":"example_build_uri","owner":"example_owner","tmi_run_id":"example_tmi_run_id","plan_id":1,"include_run_details":true,"automated":true}' --json

azure-devops.azure_devops_test_runs_create

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_runs_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_runs_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_runs_get_test_run_by_id

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).

Write write
Parameters
organization, project, run_id, include_details, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_runs_get_test_run_by_id '{"organization":"example_organization","project":"example_project","run_id":1,"include_details":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_runs_get_test_run_by_id '{"organization":"example_organization","project":"example_project","run_id":1,"include_details":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_runs_update

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).

Write write
Parameters
organization, body, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_runs_update '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_runs_update '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_runs_delete

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).

Write write
Parameters
organization, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_runs_delete '{"organization":"example_organization","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_runs_delete '{"organization":"example_organization","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_runs_get_test_run_statistics

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).

Write write
Parameters
organization, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_runs_get_test_run_statistics '{"organization":"example_organization","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_runs_get_test_run_statistics '{"organization":"example_organization","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_test_cases_delete

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).

Write write
Parameters
organization, project, test_case_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_test_cases_delete '{"organization":"example_organization","project":"example_project","test_case_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_test_cases_delete '{"organization":"example_organization","project":"example_project","test_case_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_session_list

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).

Write write
Parameters
organization, project, team, period, all_sessions, include_all_properties, source, include_only_completed_sessions, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_session_list '{"organization":"example_organization","project":"example_project","team":"example_team","period":1,"all_sessions":true,"include_all_properties":true,"source":"example_source","include_only_completed_sessions":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_session_list '{"organization":"example_organization","project":"example_project","team":"example_team","period":1,"all_sessions":true,"include_all_properties":true,"source":"example_source","include_only_completed_sessions":true}' --json

azure-devops.azure_devops_test_session_create

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).

Write write
Parameters
organization, body, project, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_session_create '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_session_create '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_session_update

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).

Write write
Parameters
organization, body, project, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_session_update '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_session_update '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_suites_get_suites_by_test_case_id

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).

Write write
Parameters
organization, test_case_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_suites_get_suites_by_test_case_id '{"organization":"example_organization","test_case_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_suites_get_suites_by_test_case_id '{"organization":"example_organization","test_case_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_plan_clone_clone_test_plan

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).

Write write
Parameters
organization, body, project, deep_clone, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_plan_clone_clone_test_plan '{"organization":"example_organization","body":"example_body","project":"example_project","deep_clone":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_plan_clone_clone_test_plan '{"organization":"example_organization","body":"example_body","project":"example_project","deep_clone":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_plan_clone_get

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).

Write write
Parameters
organization, project, clone_operation_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_plan_clone_get '{"organization":"example_organization","project":"example_project","clone_operation_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_plan_clone_get '{"organization":"example_organization","project":"example_project","clone_operation_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_suite_test_case_get_test_case_list

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).

Write write
Parameters
organization, project, plan_id, suite_id, test_ids, configuration_ids, wit_fields, continuation_token, return_identity_ref, expand, exclude_flags, is_recursive, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_suite_test_case_get_test_case_list '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"test_ids":"example_test_ids","configuration_ids":"example_configuration_ids","wit_fields":"example_wit_fields","continuation_token":"example_continuation_token"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_suite_test_case_get_test_case_list '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"test_ids":"example_test_ids","configuration_ids":"example_configuration_ids","wit_fields":"example_wit_fields","continuation_token":"example_continuation_token"}' --json

azure-devops.azure_devops_test_plan_suite_test_case_add

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).

Write write
Parameters
organization, body, project, plan_id, suite_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_suite_test_case_add '{"organization":"example_organization","body":"example_body","project":"example_project","plan_id":1,"suite_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_suite_test_case_add '{"organization":"example_organization","body":"example_body","project":"example_project","plan_id":1,"suite_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_suite_test_case_update

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).

Write write
Parameters
organization, body, project, plan_id, suite_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_suite_test_case_update '{"organization":"example_organization","body":"example_body","project":"example_project","plan_id":1,"suite_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_suite_test_case_update '{"organization":"example_organization","body":"example_body","project":"example_project","plan_id":1,"suite_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_suite_test_case_remove_test_cases_list_from_suite

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).

Write write
Parameters
organization, project, plan_id, suite_id, test_ids, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_suite_test_case_remove_test_cases_list_from_suite '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"test_ids":"example_test_ids","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_suite_test_case_remove_test_cases_list_from_suite '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"test_ids":"example_test_ids","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_suite_test_case_get_test_case

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).

Write write
Parameters
organization, project, plan_id, suite_id, test_case_id, wit_fields, return_identity_ref, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_suite_test_case_get_test_case '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"test_case_id":"example_test_case_id","wit_fields":"example_wit_fields","return_identity_ref":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_suite_test_case_get_test_case '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"test_case_id":"example_test_case_id","wit_fields":"example_wit_fields","return_identity_ref":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_point_get_points

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).

Write write
Parameters
organization, project, plan_id, suite_id, point_id, return_identity_ref, include_point_details, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_point_get_points '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"point_id":"example_point_id","return_identity_ref":true,"include_point_details":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_point_get_points '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"point_id":"example_point_id","return_identity_ref":true,"include_point_details":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_point_update

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).

Write write
Parameters
organization, body, project, plan_id, suite_id, include_point_details, return_identity_ref, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_point_update '{"organization":"example_organization","body":"example_body","project":"example_project","plan_id":1,"suite_id":1,"include_point_details":true,"return_identity_ref":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_point_update '{"organization":"example_organization","body":"example_body","project":"example_project","plan_id":1,"suite_id":1,"include_point_details":true,"return_identity_ref":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_suites_get_test_suites_for_plan

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).

Write write
Parameters
organization, project, plan_id, expand, continuation_token, as_tree_view, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_suites_get_test_suites_for_plan '{"organization":"example_organization","project":"example_project","plan_id":1,"expand":"example_expand","continuation_token":"example_continuation_token","as_tree_view":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_suites_get_test_suites_for_plan '{"organization":"example_organization","project":"example_project","plan_id":1,"expand":"example_expand","continuation_token":"example_continuation_token","as_tree_view":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_suites_create

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).

Write write
Parameters
organization, body, project, plan_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_suites_create '{"organization":"example_organization","body":"example_body","project":"example_project","plan_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_suites_create '{"organization":"example_organization","body":"example_body","project":"example_project","plan_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_suites_get

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).

Write write
Parameters
organization, project, plan_id, suite_id, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_suites_get '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_suites_get '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_suites_update

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).

Write write
Parameters
organization, body, project, plan_id, suite_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_suites_update '{"organization":"example_organization","body":"example_body","project":"example_project","plan_id":1,"suite_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_suites_update '{"organization":"example_organization","body":"example_body","project":"example_project","plan_id":1,"suite_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_suites_delete

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).

Write write
Parameters
organization, project, plan_id, suite_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_suites_delete '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_suites_delete '{"organization":"example_organization","project":"example_project","plan_id":1,"suite_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_suite_clone_clone_test_suite

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).

Write write
Parameters
organization, body, project, deep_clone, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_suite_clone_clone_test_suite '{"organization":"example_organization","body":"example_body","project":"example_project","deep_clone":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_suite_clone_clone_test_suite '{"organization":"example_organization","body":"example_body","project":"example_project","deep_clone":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_suite_clone_get

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).

Write write
Parameters
organization, project, clone_operation_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_suite_clone_get '{"organization":"example_organization","project":"example_project","clone_operation_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_suite_clone_get '{"organization":"example_organization","project":"example_project","clone_operation_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_case_clone_clone_test_case

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_case_clone_clone_test_case '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_case_clone_clone_test_case '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_case_clone_get

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).

Write write
Parameters
organization, project, clone_operation_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_case_clone_get '{"organization":"example_organization","project":"example_project","clone_operation_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_case_clone_get '{"organization":"example_organization","project":"example_project","clone_operation_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_configurations_list

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).

Write write
Parameters
organization, project, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_configurations_list '{"organization":"example_organization","project":"example_project","continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_configurations_list '{"organization":"example_organization","project":"example_project","continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_configurations_create

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_configurations_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_configurations_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_configurations_update

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).

Write write
Parameters
organization, body, project, test_configuartion_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_configurations_update '{"organization":"example_organization","body":"example_body","project":"example_project","test_configuartion_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_configurations_update '{"organization":"example_organization","body":"example_body","project":"example_project","test_configuartion_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_configurations_delete

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).

Write write
Parameters
organization, project, test_configuartion_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_configurations_delete '{"organization":"example_organization","project":"example_project","test_configuartion_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_configurations_delete '{"organization":"example_organization","project":"example_project","test_configuartion_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_configurations_get

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).

Write write
Parameters
organization, project, test_configuration_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_configurations_get '{"organization":"example_organization","project":"example_project","test_configuration_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_configurations_get '{"organization":"example_organization","project":"example_project","test_configuration_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_plans_list

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).

Write write
Parameters
organization, project, owner, continuation_token, include_plan_details, filter_active_plans, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_plans_list '{"organization":"example_organization","project":"example_project","owner":"example_owner","continuation_token":"example_continuation_token","include_plan_details":true,"filter_active_plans":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_plans_list '{"organization":"example_organization","project":"example_project","owner":"example_owner","continuation_token":"example_continuation_token","include_plan_details":true,"filter_active_plans":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_plans_create

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_plans_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_plans_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_plans_get

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).

Write write
Parameters
organization, project, plan_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_plans_get '{"organization":"example_organization","project":"example_project","plan_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_plans_get '{"organization":"example_organization","project":"example_project","plan_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_plans_update

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).

Write write
Parameters
organization, body, project, plan_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_plans_update '{"organization":"example_organization","body":"example_body","project":"example_project","plan_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_plans_update '{"organization":"example_organization","body":"example_body","project":"example_project","plan_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_plans_delete

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).

Write write
Parameters
organization, project, plan_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_plans_delete '{"organization":"example_organization","project":"example_project","plan_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_plans_delete '{"organization":"example_organization","project":"example_project","plan_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_suite_recycle_bin_operations_get_deleted_test_suites_for_plan

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).

Write write
Parameters
organization, project, plan_id, expand, continuation_token, as_tree_view, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_suite_recycle_bin_operations_get_deleted_test_suites_for_plan '{"organization":"example_organization","project":"example_project","plan_id":1,"expand":"example_expand","continuation_token":"example_continuation_token","as_tree_view":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_suite_recycle_bin_operations_get_deleted_test_suites_for_plan '{"organization":"example_organization","project":"example_project","plan_id":1,"expand":"example_expand","continuation_token":"example_continuation_token","as_tree_view":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_plan_recycle_bin_list

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).

Write write
Parameters
organization, project, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_plan_recycle_bin_list '{"organization":"example_organization","project":"example_project","continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_plan_recycle_bin_list '{"organization":"example_organization","project":"example_project","continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_plan_recycle_bin_restore_deleted_test_plan

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).

Write write
Parameters
organization, body, project, plan_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_plan_recycle_bin_restore_deleted_test_plan '{"organization":"example_organization","body":"example_body","project":"example_project","plan_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_plan_recycle_bin_restore_deleted_test_plan '{"organization":"example_organization","body":"example_body","project":"example_project","plan_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_suite_recycle_bin_operations_get_deleted_test_suites_for_project

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).

Write write
Parameters
organization, project, expand, continuation_token, as_tree_view, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_suite_recycle_bin_operations_get_deleted_test_suites_for_project '{"organization":"example_organization","project":"example_project","expand":"example_expand","continuation_token":"example_continuation_token","as_tree_view":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_suite_recycle_bin_operations_get_deleted_test_suites_for_project '{"organization":"example_organization","project":"example_project","expand":"example_expand","continuation_token":"example_continuation_token","as_tree_view":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_suite_recycle_bin_operations_restore_deleted_test_suite

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).

Write write
Parameters
organization, body, project, suite_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_suite_recycle_bin_operations_restore_deleted_test_suite '{"organization":"example_organization","body":"example_body","project":"example_project","suite_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_suite_recycle_bin_operations_restore_deleted_test_suite '{"organization":"example_organization","body":"example_body","project":"example_project","suite_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_suite_entry_list

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).

Write write
Parameters
organization, project, suite_id, suite_entry_type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_suite_entry_list '{"organization":"example_organization","project":"example_project","suite_id":1,"suite_entry_type":"example_suite_entry_type","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_suite_entry_list '{"organization":"example_organization","project":"example_project","suite_id":1,"suite_entry_type":"example_suite_entry_type","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_suite_entry_reorder_suite_entries

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).

Write write
Parameters
organization, body, project, suite_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_suite_entry_reorder_suite_entries '{"organization":"example_organization","body":"example_body","project":"example_project","suite_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_suite_entry_reorder_suite_entries '{"organization":"example_organization","body":"example_body","project":"example_project","suite_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_test_cases_delete

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).

Write write
Parameters
organization, project, test_case_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_test_cases_delete '{"organization":"example_organization","project":"example_project","test_case_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_test_cases_delete '{"organization":"example_organization","project":"example_project","test_case_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_variables_list

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).

Write write
Parameters
organization, project, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_variables_list '{"organization":"example_organization","project":"example_project","continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_variables_list '{"organization":"example_organization","project":"example_project","continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_variables_create

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_variables_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_variables_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_variables_get

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).

Write write
Parameters
organization, project, test_variable_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_variables_get '{"organization":"example_organization","project":"example_project","test_variable_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_variables_get '{"organization":"example_organization","project":"example_project","test_variable_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_variables_update

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).

Write write
Parameters
organization, body, project, test_variable_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_variables_update '{"organization":"example_organization","body":"example_body","project":"example_project","test_variable_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_variables_update '{"organization":"example_organization","body":"example_body","project":"example_project","test_variable_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_plan_variables_delete

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).

Write write
Parameters
organization, project, test_variable_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_plan_variables_delete '{"organization":"example_organization","project":"example_project","test_variable_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_plan_variables_delete '{"organization":"example_organization","project":"example_project","test_variable_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_codecoverage_get

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).

Write write
Parameters
organization, project, build_id, delta_build_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_codecoverage_get '{"organization":"example_organization","project":"example_project","build_id":1,"delta_build_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_codecoverage_get '{"organization":"example_organization","project":"example_project","build_id":1,"delta_build_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_codecoverage_update

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).

Write write
Parameters
organization, project, build_id, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_codecoverage_update '{"organization":"example_organization","project":"example_project","build_id":1,"body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_codecoverage_update '{"organization":"example_organization","project":"example_project","build_id":1,"body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_filecoverage_get

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_filecoverage_get '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_filecoverage_get '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_codecoverage_fetch_source_code_coverage_report

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).

Write write
Parameters
organization, project, build_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_codecoverage_fetch_source_code_coverage_report '{"organization":"example_organization","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_codecoverage_fetch_source_code_coverage_report '{"organization":"example_organization","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_status_get

<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).

Write write
Parameters
organization, project, definition, branch_name, label, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_status_get '{"organization":"example_organization","project":"example_project","definition":"example_definition","branch_name":"example_branch_name","label":"example_label","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_status_get '{"organization":"example_organization","project":"example_project","definition":"example_definition","branch_name":"example_branch_name","label":"example_label","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_extensionfields_query

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).

Write write
Parameters
organization, project, scope_filter, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_extensionfields_query '{"organization":"example_organization","project":"example_project","scope_filter":"example_scope_filter","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_extensionfields_query '{"organization":"example_organization","project":"example_project","scope_filter":"example_scope_filter","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_extensionfields_add

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_extensionfields_add '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_extensionfields_add '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_extensionfields_update

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_extensionfields_update '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_extensionfields_update '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_extensionfields_delete

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).

Write write
Parameters
organization, project, test_extension_field_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_extensionfields_delete '{"organization":"example_organization","project":"example_project","test_extension_field_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_extensionfields_delete '{"organization":"example_organization","project":"example_project","test_extension_field_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_metrics_get

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).

Write write
Parameters
organization, project, pipeline_id, stage_name, phase_name, job_name, metric_names, group_by_node, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_metrics_get '{"organization":"example_organization","project":"example_project","pipeline_id":1,"stage_name":"example_stage_name","phase_name":"example_phase_name","job_name":"example_job_name","metric_names":"example_metric_names","group_by_node":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_metrics_get '{"organization":"example_organization","project":"example_project","pipeline_id":1,"stage_name":"example_stage_name","phase_name":"example_phase_name","job_name":"example_job_name","metric_names":"example_metric_names","group_by_node":true}' --json

azure-devops.azure_devops_test_results_resultdetailsbybuild_get

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).

Write write
Parameters
organization, project, build_id, publish_context, group_by, filter, orderby, should_include_results, query_run_summary_for_in_progress, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_resultdetailsbybuild_get '{"organization":"example_organization","project":"example_project","build_id":1,"publish_context":"example_publish_context","group_by":"example_group_by","filter":"example_filter","orderby":"example_orderby","should_include_results":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_resultdetailsbybuild_get '{"organization":"example_organization","project":"example_project","build_id":1,"publish_context":"example_publish_context","group_by":"example_group_by","filter":"example_filter","orderby":"example_orderby","should_include_results":true}' --json

azure-devops.azure_devops_test_results_resultdetailsbyrelease_get

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).

Write write
Parameters
organization, project, release_id, release_env_id, publish_context, group_by, filter, orderby, should_include_results, query_run_summary_for_in_progress, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_resultdetailsbyrelease_get '{"organization":"example_organization","project":"example_project","release_id":1,"release_env_id":1,"publish_context":"example_publish_context","group_by":"example_group_by","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_resultdetailsbyrelease_get '{"organization":"example_organization","project":"example_project","release_id":1,"release_env_id":1,"publish_context":"example_publish_context","group_by":"example_group_by","filter":"example_filter","orderby":"example_orderby"}' --json

azure-devops.azure_devops_test_results_resultgroupsbybuild_list

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).

Write write
Parameters
organization, project, build_id, publish_context, fields, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_resultgroupsbybuild_list '{"organization":"example_organization","project":"example_project","build_id":1,"publish_context":"example_publish_context","fields":"example_fields","continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_resultgroupsbybuild_list '{"organization":"example_organization","project":"example_project","build_id":1,"publish_context":"example_publish_context","fields":"example_fields","continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_resultgroupsbyrelease_list

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).

Write write
Parameters
organization, project, release_id, publish_context, release_env_id, fields, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_resultgroupsbyrelease_list '{"organization":"example_organization","project":"example_project","release_id":1,"publish_context":"example_publish_context","release_env_id":1,"fields":"example_fields","continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_resultgroupsbyrelease_list '{"organization":"example_organization","project":"example_project","release_id":1,"publish_context":"example_publish_context","release_env_id":1,"fields":"example_fields","continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_results_get_test_results_by_query

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_results_get_test_results_by_query '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_results_get_test_results_by_query '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_history_query

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_history_query '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_history_query '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_results_get_test_results_by_query_wiql

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).

Write write
Parameters
organization, body, project, include_result_details, include_iteration_details, skip, top, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_results_get_test_results_by_query_wiql '{"organization":"example_organization","body":"example_body","project":"example_project","include_result_details":true,"include_iteration_details":true,"skip":1,"top":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_results_get_test_results_by_query_wiql '{"organization":"example_organization","body":"example_body","project":"example_project","include_result_details":true,"include_iteration_details":true,"skip":1,"top":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_result_meta_data_query

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).

Write write
Parameters
organization, body, project, details_to_include, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_result_meta_data_query '{"organization":"example_organization","body":"example_body","project":"example_project","details_to_include":"example_details_to_include","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_result_meta_data_query '{"organization":"example_organization","body":"example_body","project":"example_project","details_to_include":"example_details_to_include","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_result_meta_data_update

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).

Write write
Parameters
organization, body, project, test_case_reference_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_result_meta_data_update '{"organization":"example_organization","body":"example_body","project":"example_project","test_case_reference_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_result_meta_data_update '{"organization":"example_organization","body":"example_body","project":"example_project","test_case_reference_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_test_history_query

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_test_history_query '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_test_history_query '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_workitems_query_test_result_work_items

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).

Write write
Parameters
organization, project, work_item_category, automated_test_name, test_case_id, max_complete_date, days, work_item_count, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_workitems_query_test_result_work_items '{"organization":"example_organization","project":"example_project","work_item_category":"example_work_item_category","automated_test_name":"example_automated_test_name","test_case_id":1,"max_complete_date":"example_max_complete_date","days":1,"work_item_count":1}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_workitems_query_test_result_work_items '{"organization":"example_organization","project":"example_project","work_item_category":"example_work_item_category","automated_test_name":"example_automated_test_name","test_case_id":1,"max_complete_date":"example_max_complete_date","days":1,"work_item_count":1}' --json

azure-devops.azure_devops_test_results_resultsbybuild_list

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).

Write write
Parameters
organization, project, build_id, publish_context, outcomes, top, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_resultsbybuild_list '{"organization":"example_organization","project":"example_project","build_id":1,"publish_context":"example_publish_context","outcomes":"example_outcomes","top":1,"continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_resultsbybuild_list '{"organization":"example_organization","project":"example_project","build_id":1,"publish_context":"example_publish_context","outcomes":"example_outcomes","top":1,"continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_resultsbypipeline_list

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).

Write write
Parameters
organization, project, pipeline_id, stage_name, phase_name, job_name, outcomes, include_all_build_runs, top, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_resultsbypipeline_list '{"organization":"example_organization","project":"example_project","pipeline_id":1,"stage_name":"example_stage_name","phase_name":"example_phase_name","job_name":"example_job_name","outcomes":"example_outcomes","include_all_build_runs":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_resultsbypipeline_list '{"organization":"example_organization","project":"example_project","pipeline_id":1,"stage_name":"example_stage_name","phase_name":"example_phase_name","job_name":"example_job_name","outcomes":"example_outcomes","include_all_build_runs":true}' --json

azure-devops.azure_devops_test_results_resultsbyrelease_list

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).

Write write
Parameters
organization, project, release_id, release_envid, publish_context, outcomes, top, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_resultsbyrelease_list '{"organization":"example_organization","project":"example_project","release_id":1,"release_envid":1,"publish_context":"example_publish_context","outcomes":"example_outcomes","top":1,"continuation_token":"example_continuation_token"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_resultsbyrelease_list '{"organization":"example_organization","project":"example_project","release_id":1,"release_envid":1,"publish_context":"example_publish_context","outcomes":"example_outcomes","top":1,"continuation_token":"example_continuation_token"}' --json

azure-devops.azure_devops_test_results_resultsgroup_details_test_results_group_details

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).

Write write
Parameters
organization, project, pipeline_id, stage_name, phase_name, job_name, should_include_failed_and_aborted_results, query_group_summary_for_in_progress, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_resultsgroup_details_test_results_group_details '{"organization":"example_organization","project":"example_project","pipeline_id":1,"stage_name":"example_stage_name","phase_name":"example_phase_name","job_name":"example_job_name","should_include_failed_and_aborted_results":true,"query_group_summary_for_in_progress":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_resultsgroup_details_test_results_group_details '{"organization":"example_organization","project":"example_project","pipeline_id":1,"stage_name":"example_stage_name","phase_name":"example_phase_name","job_name":"example_job_name","should_include_failed_and_aborted_results":true,"query_group_summary_for_in_progress":true}' --json

azure-devops.azure_devops_test_results_resultsummarybybuild_query

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).

Write write
Parameters
organization, project, build_id, publish_context, include_failure_details, build_to_compare_branch_name, build_to_compare_build_system, build_to_compare_definition_id, build_to_compare_id, build_to_compare_number, build_to_compare_repository_id, build_to_compare_uri, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_resultsummarybybuild_query '{"organization":"example_organization","project":"example_project","build_id":1,"publish_context":"example_publish_context","include_failure_details":true,"build_to_compare_branch_name":"example_build_to_compare_branch_name","build_to_compare_build_system":"example_build_to_compare_build_system","build_to_compare_definition_id":1}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_resultsummarybybuild_query '{"organization":"example_organization","project":"example_project","build_id":1,"publish_context":"example_publish_context","include_failure_details":true,"build_to_compare_branch_name":"example_build_to_compare_branch_name","build_to_compare_build_system":"example_build_to_compare_build_system","build_to_compare_definition_id":1}' --json

azure-devops.azure_devops_test_results_resultsummarybypipeline_query

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).

Write write
Parameters
organization, project, pipeline_id, stage_name, phase_name, job_name, include_failure_details, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_resultsummarybypipeline_query '{"organization":"example_organization","project":"example_project","pipeline_id":1,"stage_name":"example_stage_name","phase_name":"example_phase_name","job_name":"example_job_name","include_failure_details":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_resultsummarybypipeline_query '{"organization":"example_organization","project":"example_project","pipeline_id":1,"stage_name":"example_stage_name","phase_name":"example_phase_name","job_name":"example_job_name","include_failure_details":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_resultsummarybyrelease_query_test_results_report_for_release

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).

Write write
Parameters
organization, project, release_id, release_env_id, publish_context, include_failure_details, release_to_compare_attempt, release_to_compare_creation_date, release_to_compare_definition_id, release_to_compare_environment_creation_date, release_to_compare_environment_definition_id, release_to_compare_environment_definition_name, release_to_compare_environment_id, release_to_compare_environment_name, release_to_compare_id, release_to_compare_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_resultsummarybyrelease_query_test_results_report_for_release '{"organization":"example_organization","project":"example_project","release_id":1,"release_env_id":1,"publish_context":"example_publish_context","include_failure_details":true,"release_to_compare_attempt":1,"release_to_compare_creation_date":"example_release_to_compare_creation_date"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_resultsummarybyrelease_query_test_results_report_for_release '{"organization":"example_organization","project":"example_project","release_id":1,"release_env_id":1,"publish_context":"example_publish_context","include_failure_details":true,"release_to_compare_attempt":1,"release_to_compare_creation_date":"example_release_to_compare_creation_date"}' --json

azure-devops.azure_devops_test_results_resultsummarybyrelease_query_test_results_summary_for_releases

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_resultsummarybyrelease_query_test_results_summary_for_releases '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_resultsummarybyrelease_query_test_results_summary_for_releases '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_resultsummarybyrequirement_query

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).

Write write
Parameters
organization, body, project, work_item_ids, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_resultsummarybyrequirement_query '{"organization":"example_organization","body":"example_body","project":"example_project","work_item_ids":"example_work_item_ids","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_resultsummarybyrequirement_query '{"organization":"example_organization","body":"example_body","project":"example_project","work_item_ids":"example_work_item_ids","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_result_trend_by_build_query

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_result_trend_by_build_query '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_result_trend_by_build_query '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_result_trend_by_release_query

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_result_trend_by_release_query '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_result_trend_by_release_query '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_runs_list

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).

Write write
Parameters
organization, project, build_uri, owner, tmi_run_id, plan_id, include_run_details, automated, skip, top, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_runs_list '{"organization":"example_organization","project":"example_project","build_uri":"example_build_uri","owner":"example_owner","tmi_run_id":"example_tmi_run_id","plan_id":1,"include_run_details":true,"automated":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_runs_list '{"organization":"example_organization","project":"example_project","build_uri":"example_build_uri","owner":"example_owner","tmi_run_id":"example_tmi_run_id","plan_id":1,"include_run_details":true,"automated":true}' --json

azure-devops.azure_devops_test_results_runs_create

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_runs_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_runs_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_runs_get

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).

Write write
Parameters
organization, project, run_id, include_details, include_tags, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_runs_get '{"organization":"example_organization","project":"example_project","run_id":1,"include_details":true,"include_tags":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_runs_get '{"organization":"example_organization","project":"example_project","run_id":1,"include_details":true,"include_tags":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_runs_update

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).

Write write
Parameters
organization, body, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_runs_update '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_runs_update '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_runs_delete

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).

Write write
Parameters
organization, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_runs_delete '{"organization":"example_organization","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_runs_delete '{"organization":"example_organization","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_attachments_get_test_run_attachments

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).

Write write
Parameters
organization, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_attachments_get_test_run_attachments '{"organization":"example_organization","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_attachments_get_test_run_attachments '{"organization":"example_organization","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_attachments_create_test_run_attachment

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).

Write write
Parameters
organization, body, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_attachments_create_test_run_attachment '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_attachments_create_test_run_attachment '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_attachments_get_test_run_attachment_zip

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).

Write write
Parameters
organization, project, run_id, attachment_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_attachments_get_test_run_attachment_zip '{"organization":"example_organization","project":"example_project","run_id":1,"attachment_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_attachments_get_test_run_attachment_zip '{"organization":"example_organization","project":"example_project","run_id":1,"attachment_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_attachments_delete_test_run_attachment

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).

Write write
Parameters
organization, project, run_id, attachment_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_attachments_delete_test_run_attachment '{"organization":"example_organization","project":"example_project","run_id":1,"attachment_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_attachments_delete_test_run_attachment '{"organization":"example_organization","project":"example_project","run_id":1,"attachment_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_codecoverage_get_test_run_code_coverage

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).

Write write
Parameters
organization, project, run_id, flags, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_codecoverage_get_test_run_code_coverage '{"organization":"example_organization","project":"example_project","run_id":1,"flags":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_codecoverage_get_test_run_code_coverage '{"organization":"example_organization","project":"example_project","run_id":1,"flags":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_message_logs_list

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).

Write write
Parameters
organization, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_message_logs_list '{"organization":"example_organization","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_message_logs_list '{"organization":"example_organization","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_result_document_publish_test_result_document

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).

Write write
Parameters
organization, body, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_result_document_publish_test_result_document '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_result_document_publish_test_result_document '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_results_get_test_results

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).

Write write
Parameters
organization, project, run_id, details_to_include, skip, top, outcomes, new_tests_only, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_results_get_test_results '{"organization":"example_organization","project":"example_project","run_id":1,"details_to_include":"example_details_to_include","skip":1,"top":1,"outcomes":"example_outcomes","new_tests_only":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_results_get_test_results '{"organization":"example_organization","project":"example_project","run_id":1,"details_to_include":"example_details_to_include","skip":1,"top":1,"outcomes":"example_outcomes","new_tests_only":true}' --json

azure-devops.azure_devops_test_results_results_add

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).

Write write
Parameters
organization, body, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_results_add '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_results_add '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_results_update

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).

Write write
Parameters
organization, body, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_results_update '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_results_update '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_testlog_get_test_result_logs

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).

Write write
Parameters
organization, project, run_id, result_id, type, directory_path, file_name_prefix, fetch_meta_data, top, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testlog_get_test_result_logs '{"organization":"example_organization","project":"example_project","run_id":1,"result_id":1,"type":"example_type","directory_path":"example_directory_path","file_name_prefix":"example_file_name_prefix","fetch_meta_data":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testlog_get_test_result_logs '{"organization":"example_organization","project":"example_project","run_id":1,"result_id":1,"type":"example_type","directory_path":"example_directory_path","file_name_prefix":"example_file_name_prefix","fetch_meta_data":true}' --json

azure-devops.azure_devops_test_results_testlogstoreendpoint_get_test_log_store_endpoint_details_for_result_log

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).

Write write
Parameters
organization, project, run_id, result_id, type, file_path, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testlogstoreendpoint_get_test_log_store_endpoint_details_for_result_log '{"organization":"example_organization","project":"example_project","run_id":1,"result_id":1,"type":"example_type","file_path":"example_file_path","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testlogstoreendpoint_get_test_log_store_endpoint_details_for_result_log '{"organization":"example_organization","project":"example_project","run_id":1,"result_id":1,"type":"example_type","file_path":"example_file_path","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_testlogstoreendpoint_test_log_store_endpoint_details_for_result

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).

Write write
Parameters
organization, project, run_id, result_id, sub_result_id, file_path, type, api_version, body
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testlogstoreendpoint_test_log_store_endpoint_details_for_result '{"organization":"example_organization","project":"example_project","run_id":1,"result_id":1,"sub_result_id":1,"file_path":"example_file_path","type":"example_type","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testlogstoreendpoint_test_log_store_endpoint_details_for_result '{"organization":"example_organization","project":"example_project","run_id":1,"result_id":1,"sub_result_id":1,"file_path":"example_file_path","type":"example_type","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_attachments_get_test_result_attachments

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).

Write write
Parameters
organization, project, run_id, test_case_result_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_attachments_get_test_result_attachments '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_attachments_get_test_result_attachments '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_attachments_create_test_result_attachment

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).

Write write
Parameters
organization, body, project, run_id, test_case_result_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_attachments_create_test_result_attachment '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"test_case_result_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_attachments_create_test_result_attachment '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"test_case_result_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_attachments_get_test_result_attachment_zip

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).

Write write
Parameters
organization, project, run_id, test_case_result_id, attachment_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_attachments_get_test_result_attachment_zip '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"attachment_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_attachments_get_test_result_attachment_zip '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"attachment_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_attachments_delete_test_result_attachment

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).

Write write
Parameters
organization, project, run_id, test_case_result_id, attachment_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_attachments_delete_test_result_attachment '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"attachment_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_attachments_delete_test_result_attachment '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"attachment_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_bugs_list

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).

Write write
Parameters
organization, project, run_id, test_case_result_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_bugs_list '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_bugs_list '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_workitems_list

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).

Write write
Parameters
organization, project, run_id, test_case_result_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_workitems_list '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_workitems_list '{"organization":"example_organization","project":"example_project","run_id":1,"test_case_result_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_results_get_test_result_by_id

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).

Write write
Parameters
organization, project, run_id, test_result_id, details_to_include, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_results_get_test_result_by_id '{"organization":"example_organization","project":"example_project","run_id":1,"test_result_id":1,"details_to_include":"example_details_to_include","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_results_get_test_result_by_id '{"organization":"example_organization","project":"example_project","run_id":1,"test_result_id":1,"details_to_include":"example_details_to_include","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_similar_test_results_list

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).

Write write
Parameters
organization, project, run_id, test_result_id, test_sub_result_id, top, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_similar_test_results_list '{"organization":"example_organization","project":"example_project","run_id":1,"test_result_id":1,"test_sub_result_id":1,"top":1,"continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_similar_test_results_list '{"organization":"example_organization","project":"example_project","run_id":1,"test_result_id":1,"test_sub_result_id":1,"top":1,"continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_runsummary_get

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).

Write write
Parameters
organization, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_runsummary_get '{"organization":"example_organization","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_runsummary_get '{"organization":"example_organization","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_statistics_get

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).

Write write
Parameters
organization, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_statistics_get '{"organization":"example_organization","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_statistics_get '{"organization":"example_organization","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_tags_update

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).

Write write
Parameters
organization, body, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_tags_update '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_tags_update '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_testattachments_list

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).

Write write
Parameters
organization, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testattachments_list '{"organization":"example_organization","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testattachments_list '{"organization":"example_organization","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_testattachments_create_test_run_log_store_attachment

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).

Write write
Parameters
organization, body, project, run_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testattachments_create_test_run_log_store_attachment '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testattachments_create_test_run_log_store_attachment '{"organization":"example_organization","body":"example_body","project":"example_project","run_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_testattachments_delete

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).

Write write
Parameters
organization, project, run_id, filename, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testattachments_delete '{"organization":"example_organization","project":"example_project","run_id":1,"filename":"example_filename","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testattachments_delete '{"organization":"example_organization","project":"example_project","run_id":1,"filename":"example_filename","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_testlog_get_test_run_logs

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).

Write write
Parameters
organization, project, run_id, type, directory_path, file_name_prefix, fetch_meta_data, top, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testlog_get_test_run_logs '{"organization":"example_organization","project":"example_project","run_id":1,"type":"example_type","directory_path":"example_directory_path","file_name_prefix":"example_file_name_prefix","fetch_meta_data":true,"top":1}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testlog_get_test_run_logs '{"organization":"example_organization","project":"example_project","run_id":1,"type":"example_type","directory_path":"example_directory_path","file_name_prefix":"example_file_name_prefix","fetch_meta_data":true,"top":1}' --json

azure-devops.azure_devops_test_results_testlogstoreendpoint_get_test_log_store_endpoint_details_for_run_log

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).

Write write
Parameters
organization, project, run_id, type, file_path, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testlogstoreendpoint_get_test_log_store_endpoint_details_for_run_log '{"organization":"example_organization","project":"example_project","run_id":1,"type":"example_type","file_path":"example_file_path","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testlogstoreendpoint_get_test_log_store_endpoint_details_for_run_log '{"organization":"example_organization","project":"example_project","run_id":1,"type":"example_type","file_path":"example_file_path","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_testlogstoreendpoint_test_log_store_endpoint_details_for_run

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).

Write write
Parameters
organization, project, run_id, test_log_store_operation_type, file_path, type, api_version, body
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testlogstoreendpoint_test_log_store_endpoint_details_for_run '{"organization":"example_organization","project":"example_project","run_id":1,"test_log_store_operation_type":"example_test_log_store_operation_type","file_path":"example_file_path","type":"example_type","api_version":"example_api_version","body":"example_body"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testlogstoreendpoint_test_log_store_endpoint_details_for_run '{"organization":"example_organization","project":"example_project","run_id":1,"test_log_store_operation_type":"example_test_log_store_operation_type","file_path":"example_file_path","type":"example_type","api_version":"example_api_version","body":"example_body"}' --json

azure-devops.azure_devops_test_results_settings_get

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).

Write write
Parameters
organization, project, settings_type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_settings_get '{"organization":"example_organization","project":"example_project","settings_type":"example_settings_type","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_settings_get '{"organization":"example_organization","project":"example_project","settings_type":"example_settings_type","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_settings_update

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_settings_update '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_settings_update '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_tags_get_test_tags_for_build

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).

Write write
Parameters
organization, project, build_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_tags_get_test_tags_for_build '{"organization":"example_organization","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_tags_get_test_tags_for_build '{"organization":"example_organization","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_tagsummary_get_test_tag_summary_for_build

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).

Write write
Parameters
organization, project, build_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_tagsummary_get_test_tag_summary_for_build '{"organization":"example_organization","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_tagsummary_get_test_tag_summary_for_build '{"organization":"example_organization","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_testai_complete_git_hub_auth

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).

Write write
Parameters
organization, project, code, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testai_complete_git_hub_auth '{"organization":"example_organization","project":"example_project","code":"example_code","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testai_complete_git_hub_auth '{"organization":"example_organization","project":"example_project","code":"example_code","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_testfailuretype_list

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).

Write write
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testfailuretype_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testfailuretype_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_testfailuretype_create

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testfailuretype_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testfailuretype_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_testfailuretype_delete

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).

Write write
Parameters
organization, project, failure_type_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testfailuretype_delete '{"organization":"example_organization","project":"example_project","failure_type_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testfailuretype_delete '{"organization":"example_organization","project":"example_project","failure_type_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_testlog_get_test_logs_for_build

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).

Write write
Parameters
organization, project, build_id, type, directory_path, file_name_prefix, fetch_meta_data, top, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testlog_get_test_logs_for_build '{"organization":"example_organization","project":"example_project","build_id":1,"type":"example_type","directory_path":"example_directory_path","file_name_prefix":"example_file_name_prefix","fetch_meta_data":true,"top":1}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testlog_get_test_logs_for_build '{"organization":"example_organization","project":"example_project","build_id":1,"type":"example_type","directory_path":"example_directory_path","file_name_prefix":"example_file_name_prefix","fetch_meta_data":true,"top":1}' --json

azure-devops.azure_devops_test_results_testlogstoreendpoint_get_test_log_store_endpoint_details_for_build_log

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).

Write write
Parameters
organization, project, build, type, file_path, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testlogstoreendpoint_get_test_log_store_endpoint_details_for_build_log '{"organization":"example_organization","project":"example_project","build":1,"type":"example_type","file_path":"example_file_path","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testlogstoreendpoint_get_test_log_store_endpoint_details_for_build_log '{"organization":"example_organization","project":"example_project","build":1,"type":"example_type","file_path":"example_file_path","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_testlogstoreendpoint_test_log_store_endpoint_details_for_build

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).

Write write
Parameters
organization, project, build_id, test_log_store_operation_type, api_version, body
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testlogstoreendpoint_test_log_store_endpoint_details_for_build '{"organization":"example_organization","project":"example_project","build_id":1,"test_log_store_operation_type":"example_test_log_store_operation_type","api_version":"example_api_version","body":"example_body"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testlogstoreendpoint_test_log_store_endpoint_details_for_build '{"organization":"example_organization","project":"example_project","build_id":1,"test_log_store_operation_type":"example_test_log_store_operation_type","api_version":"example_api_version","body":"example_body"}' --json

azure-devops.azure_devops_test_results_workitems_add

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_workitems_add '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_workitems_add '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_workitems_delete

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).

Write write
Parameters
organization, project, test_name, work_item_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_workitems_delete '{"organization":"example_organization","project":"example_project","test_name":"example_test_name","work_item_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_workitems_delete '{"organization":"example_organization","project":"example_project","test_name":"example_test_name","work_item_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_testsettings_get

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).

Write write
Parameters
organization, project, test_settings_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testsettings_get '{"organization":"example_organization","project":"example_project","test_settings_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testsettings_get '{"organization":"example_organization","project":"example_project","test_settings_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_testsettings_create

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testsettings_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testsettings_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_testsettings_delete

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).

Write write
Parameters
organization, project, test_settings_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testsettings_delete '{"organization":"example_organization","project":"example_project","test_settings_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testsettings_delete '{"organization":"example_organization","project":"example_project","test_settings_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_test_results_testattachments_create_build_attachment_in_log_store

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).

Write write
Parameters
organization, body, project, build_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_test_results_testattachments_create_build_attachment_in_log_store '{"organization":"example_organization","body":"example_body","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_test_results_testattachments_create_build_attachment_in_log_store '{"organization":"example_organization","body":"example_body","project":"example_project","build_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_tfvc_changesets_get_changeset_changes

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).

Read read
Parameters
organization, id, skip, top, continuation_token, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_tfvc_changesets_get_changeset_changes '{"organization":"example_organization","id":1,"skip":1,"top":1,"continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_tfvc_changesets_get_changeset_changes '{"organization":"example_organization","id":1,"skip":1,"top":1,"continuation_token":"example_continuation_token","api_version":"example_api_version"}' --json

azure-devops.azure_devops_tfvc_changesets_get_changeset_work_items

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).

Read read
Parameters
organization, id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_tfvc_changesets_get_changeset_work_items '{"organization":"example_organization","id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_tfvc_changesets_get_changeset_work_items '{"organization":"example_organization","id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_tfvc_changesets_get_batched_changesets

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_tfvc_changesets_get_batched_changesets '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_tfvc_changesets_get_batched_changesets '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_tfvc_labels_get_label_items

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).

Read read
Parameters
organization, label_id, top, skip, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_tfvc_labels_get_label_items '{"organization":"example_organization","label_id":"example_label_id","top":1,"skip":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_tfvc_labels_get_label_items '{"organization":"example_organization","label_id":"example_label_id","top":1,"skip":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_tfvc_shelvesets_get

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).

Read read
Parameters
organization, shelveset_id, request_data_include_details, request_data_include_links, request_data_include_work_items, request_data_max_change_count, request_data_max_comment_length, request_data_name, request_data_owner, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_tfvc_shelvesets_get '{"organization":"example_organization","shelveset_id":"example_shelveset_id","request_data_include_details":true,"request_data_include_links":true,"request_data_include_work_items":true,"request_data_max_change_count":1,"request_data_max_comment_length":1,"request_data_name":"example_request_data_name"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_tfvc_shelvesets_get '{"organization":"example_organization","shelveset_id":"example_shelveset_id","request_data_include_details":true,"request_data_include_links":true,"request_data_include_work_items":true,"request_data_max_change_count":1,"request_data_max_comment_length":1,"request_data_name":"example_request_data_name"}' --json

azure-devops.azure_devops_tfvc_shelvesets_get_shelveset_changes

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).

Read read
Parameters
organization, shelveset_id, top, skip, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_tfvc_shelvesets_get_shelveset_changes '{"organization":"example_organization","shelveset_id":"example_shelveset_id","top":1,"skip":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_tfvc_shelvesets_get_shelveset_changes '{"organization":"example_organization","shelveset_id":"example_shelveset_id","top":1,"skip":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_tfvc_shelvesets_get_shelveset_work_items

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).

Read read
Parameters
organization, shelveset_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_tfvc_shelvesets_get_shelveset_work_items '{"organization":"example_organization","shelveset_id":"example_shelveset_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_tfvc_shelvesets_get_shelveset_work_items '{"organization":"example_organization","shelveset_id":"example_shelveset_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_tfvc_branches_get_branch_refs

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).

Read read
Parameters
organization, scope_path, project, include_deleted, include_links, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_tfvc_branches_get_branch_refs '{"organization":"example_organization","scope_path":"example_scope_path","project":"example_project","include_deleted":true,"include_links":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_tfvc_branches_get_branch_refs '{"organization":"example_organization","scope_path":"example_scope_path","project":"example_project","include_deleted":true,"include_links":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_tfvc_changesets_get_changesets

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).

Read read
Parameters
organization, project, max_comment_length, skip, top, orderby, search_criteria_author, search_criteria_follow_renames, search_criteria_from_date, search_criteria_from_id, search_criteria_include_links, search_criteria_item_path, search_criteria_mappings, search_criteria_to_date, search_criteria_to_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_tfvc_changesets_get_changesets '{"organization":"example_organization","project":"example_project","max_comment_length":1,"skip":1,"top":1,"orderby":"example_orderby","search_criteria_author":"example_search_criteria_author","search_criteria_follow_renames":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_tfvc_changesets_get_changesets '{"organization":"example_organization","project":"example_project","max_comment_length":1,"skip":1,"top":1,"orderby":"example_orderby","search_criteria_author":"example_search_criteria_author","search_criteria_follow_renames":true}' --json

azure-devops.azure_devops_tfvc_changesets_create

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_tfvc_changesets_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_tfvc_changesets_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_tfvc_changesets_get

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).

Read read
Parameters
organization, id, project, max_change_count, include_details, include_work_items, max_comment_length, include_source_rename, skip, top, orderby, search_criteria_author, search_criteria_follow_renames, search_criteria_from_date, search_criteria_from_id, search_criteria_include_links, search_criteria_item_path, search_criteria_mappings, search_criteria_to_date, search_criteria_to_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_tfvc_changesets_get '{"organization":"example_organization","id":1,"project":"example_project","max_change_count":1,"include_details":true,"include_work_items":true,"max_comment_length":1,"include_source_rename":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_tfvc_changesets_get '{"organization":"example_organization","id":1,"project":"example_project","max_change_count":1,"include_details":true,"include_work_items":true,"max_comment_length":1,"include_source_rename":true}' --json

azure-devops.azure_devops_tfvc_items_get_items_batch

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_tfvc_items_get_items_batch '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_tfvc_items_get_items_batch '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_tfvc_items_list

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).

Read read
Parameters
organization, project, scope_path, recursion_level, include_links, version_descriptor_version, version_descriptor_version_option, version_descriptor_version_type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_tfvc_items_list '{"organization":"example_organization","project":"example_project","scope_path":"example_scope_path","recursion_level":"example_recursion_level","include_links":true,"version_descriptor_version":"example_version_descriptor_version","version_descriptor_version_option":"example_version_descriptor_version_option","version_descriptor_version_type":"example_version_descriptor_version_type"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_tfvc_items_list '{"organization":"example_organization","project":"example_project","scope_path":"example_scope_path","recursion_level":"example_recursion_level","include_links":true,"version_descriptor_version":"example_version_descriptor_version","version_descriptor_version_option":"example_version_descriptor_version_option","version_descriptor_version_type":"example_version_descriptor_version_type"}' --json

azure-devops.azure_devops_tfvc_labels_list

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).

Read read
Parameters
organization, project, request_data_include_links, request_data_item_label_filter, request_data_label_scope, request_data_max_item_count, request_data_name, request_data_owner, top, skip, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_tfvc_labels_list '{"organization":"example_organization","project":"example_project","request_data_include_links":true,"request_data_item_label_filter":"example_request_data_item_label_filter","request_data_label_scope":"example_request_data_label_scope","request_data_max_item_count":1,"request_data_name":"example_request_data_name","request_data_owner":"example_request_data_owner"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_tfvc_labels_list '{"organization":"example_organization","project":"example_project","request_data_include_links":true,"request_data_item_label_filter":"example_request_data_item_label_filter","request_data_label_scope":"example_request_data_label_scope","request_data_max_item_count":1,"request_data_name":"example_request_data_name","request_data_owner":"example_request_data_owner"}' --json

azure-devops.azure_devops_tfvc_labels_get

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).

Read read
Parameters
organization, label_id, project, request_data_include_links, request_data_item_label_filter, request_data_label_scope, request_data_max_item_count, request_data_name, request_data_owner, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_tfvc_labels_get '{"organization":"example_organization","label_id":"example_label_id","project":"example_project","request_data_include_links":true,"request_data_item_label_filter":"example_request_data_item_label_filter","request_data_label_scope":"example_request_data_label_scope","request_data_max_item_count":1,"request_data_name":"example_request_data_name"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_tfvc_labels_get '{"organization":"example_organization","label_id":"example_label_id","project":"example_project","request_data_include_links":true,"request_data_item_label_filter":"example_request_data_item_label_filter","request_data_label_scope":"example_request_data_label_scope","request_data_max_item_count":1,"request_data_name":"example_request_data_name"}' --json

azure-devops.azure_devops_token_admin_personal_access_tokens_list

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).

Read read
Parameters
organization, subject_descriptor, page_size, continuation_token, is_public, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_token_admin_personal_access_tokens_list '{"organization":"example_organization","subject_descriptor":"example_subject_descriptor","page_size":1,"continuation_token":"example_continuation_token","is_public":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_token_admin_personal_access_tokens_list '{"organization":"example_organization","subject_descriptor":"example_subject_descriptor","page_size":1,"continuation_token":"example_continuation_token","is_public":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_token_admin_revocation_rules_create

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_token_admin_revocation_rules_create '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_token_admin_revocation_rules_create '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_token_admin_revocations_revoke_authorizations

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).

Read read
Parameters
organization, body, is_public, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_token_admin_revocations_revoke_authorizations '{"organization":"example_organization","body":"example_body","is_public":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_token_admin_revocations_revoke_authorizations '{"organization":"example_organization","body":"example_body","is_public":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_tokens_pats_get

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).

Read read
Parameters
organization, authorization_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_tokens_pats_get '{"organization":"example_organization","authorization_id":"example_authorization_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_tokens_pats_get '{"organization":"example_organization","authorization_id":"example_authorization_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_tokens_pats_create

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_tokens_pats_create '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_tokens_pats_create '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_tokens_pats_update

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).

Read read
Parameters
organization, body, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_tokens_pats_update '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_tokens_pats_update '{"organization":"example_organization","body":"example_body","api_version":"example_api_version"}' --json

azure-devops.azure_devops_tokens_pats_revoke

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).

Read read
Parameters
organization, authorization_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_tokens_pats_revoke '{"organization":"example_organization","authorization_id":"example_authorization_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_tokens_pats_revoke '{"organization":"example_organization","authorization_id":"example_authorization_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wiki_wikis_list

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wiki_wikis_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wiki_wikis_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wiki_wikis_create

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wiki_wikis_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wiki_wikis_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wiki_wikis_get

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).

Read read
Parameters
organization, wiki_identifier, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wiki_wikis_get '{"organization":"example_organization","wiki_identifier":"example_wiki_identifier","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wiki_wikis_get '{"organization":"example_organization","wiki_identifier":"example_wiki_identifier","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wiki_wikis_update

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).

Read read
Parameters
organization, body, wiki_identifier, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wiki_wikis_update '{"organization":"example_organization","body":"example_body","wiki_identifier":"example_wiki_identifier","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wiki_wikis_update '{"organization":"example_organization","body":"example_body","wiki_identifier":"example_wiki_identifier","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wiki_wikis_delete

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).

Read read
Parameters
organization, wiki_identifier, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wiki_wikis_delete '{"organization":"example_organization","wiki_identifier":"example_wiki_identifier","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wiki_wikis_delete '{"organization":"example_organization","wiki_identifier":"example_wiki_identifier","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wiki_attachments_create

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).

Read read
Parameters
organization, body, project, wiki_identifier, name, version_descriptor_version, version_descriptor_version_options, version_descriptor_version_type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wiki_attachments_create '{"organization":"example_organization","body":"example_body","project":"example_project","wiki_identifier":"example_wiki_identifier","name":"example_name","version_descriptor_version":"example_version_descriptor_version","version_descriptor_version_options":"example_version_descriptor_version_options","version_descriptor_version_type":"example_version_descriptor_version_type"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wiki_attachments_create '{"organization":"example_organization","body":"example_body","project":"example_project","wiki_identifier":"example_wiki_identifier","name":"example_name","version_descriptor_version":"example_version_descriptor_version","version_descriptor_version_options":"example_version_descriptor_version_options","version_descriptor_version_type":"example_version_descriptor_version_type"}' --json

azure-devops.azure_devops_wiki_page_moves_create

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).

Read read
Parameters
organization, body, project, wiki_identifier, comment, version_descriptor_version, version_descriptor_version_options, version_descriptor_version_type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wiki_page_moves_create '{"organization":"example_organization","body":"example_body","project":"example_project","wiki_identifier":"example_wiki_identifier","comment":"example_comment","version_descriptor_version":"example_version_descriptor_version","version_descriptor_version_options":"example_version_descriptor_version_options","version_descriptor_version_type":"example_version_descriptor_version_type"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wiki_page_moves_create '{"organization":"example_organization","body":"example_body","project":"example_project","wiki_identifier":"example_wiki_identifier","comment":"example_comment","version_descriptor_version":"example_version_descriptor_version","version_descriptor_version_options":"example_version_descriptor_version_options","version_descriptor_version_type":"example_version_descriptor_version_type"}' --json

azure-devops.azure_devops_wiki_pages_get_page

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).

Read read
Parameters
organization, project, wiki_identifier, path, recursion_level, version_descriptor_version, version_descriptor_version_options, version_descriptor_version_type, include_content, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wiki_pages_get_page '{"organization":"example_organization","project":"example_project","wiki_identifier":"example_wiki_identifier","path":"example_path","recursion_level":"example_recursion_level","version_descriptor_version":"example_version_descriptor_version","version_descriptor_version_options":"example_version_descriptor_version_options","version_descriptor_version_type":"example_version_descriptor_version_type"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wiki_pages_get_page '{"organization":"example_organization","project":"example_project","wiki_identifier":"example_wiki_identifier","path":"example_path","recursion_level":"example_recursion_level","version_descriptor_version":"example_version_descriptor_version","version_descriptor_version_options":"example_version_descriptor_version_options","version_descriptor_version_type":"example_version_descriptor_version_type"}' --json

azure-devops.azure_devops_wiki_pages_create_or_update

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).

Write write
Parameters
organization, body, project, wiki_identifier, path, version, comment, version_descriptor_version, version_descriptor_version_options, version_descriptor_version_type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wiki_pages_create_or_update '{"organization":"example_organization","body":"example_body","project":"example_project","wiki_identifier":"example_wiki_identifier","path":"example_path","version":"example_version","comment":"example_comment","version_descriptor_version":"example_version_descriptor_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wiki_pages_create_or_update '{"organization":"example_organization","body":"example_body","project":"example_project","wiki_identifier":"example_wiki_identifier","path":"example_path","version":"example_version","comment":"example_comment","version_descriptor_version":"example_version_descriptor_version"}' --json

azure-devops.azure_devops_wiki_pages_delete_page

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).

Write write
Parameters
organization, project, wiki_identifier, path, comment, version_descriptor_version, version_descriptor_version_options, version_descriptor_version_type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wiki_pages_delete_page '{"organization":"example_organization","project":"example_project","wiki_identifier":"example_wiki_identifier","path":"example_path","comment":"example_comment","version_descriptor_version":"example_version_descriptor_version","version_descriptor_version_options":"example_version_descriptor_version_options","version_descriptor_version_type":"example_version_descriptor_version_type"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wiki_pages_delete_page '{"organization":"example_organization","project":"example_project","wiki_identifier":"example_wiki_identifier","path":"example_path","comment":"example_comment","version_descriptor_version":"example_version_descriptor_version","version_descriptor_version_options":"example_version_descriptor_version_options","version_descriptor_version_type":"example_version_descriptor_version_type"}' --json

azure-devops.azure_devops_wiki_pages_get_page_by_id

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).

Read read
Parameters
organization, project, wiki_identifier, id, recursion_level, include_content, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wiki_pages_get_page_by_id '{"organization":"example_organization","project":"example_project","wiki_identifier":"example_wiki_identifier","id":1,"recursion_level":"example_recursion_level","include_content":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wiki_pages_get_page_by_id '{"organization":"example_organization","project":"example_project","wiki_identifier":"example_wiki_identifier","id":1,"recursion_level":"example_recursion_level","include_content":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wiki_pages_update

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).

Read read
Parameters
organization, body, project, wiki_identifier, id, version, comment, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wiki_pages_update '{"organization":"example_organization","body":"example_body","project":"example_project","wiki_identifier":"example_wiki_identifier","id":1,"version":"example_version","comment":"example_comment","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wiki_pages_update '{"organization":"example_organization","body":"example_body","project":"example_project","wiki_identifier":"example_wiki_identifier","id":1,"version":"example_version","comment":"example_comment","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wiki_pages_delete_page_by_id

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).

Write write
Parameters
organization, project, wiki_identifier, id, comment, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wiki_pages_delete_page_by_id '{"organization":"example_organization","project":"example_project","wiki_identifier":"example_wiki_identifier","id":1,"comment":"example_comment","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wiki_pages_delete_page_by_id '{"organization":"example_organization","project":"example_project","wiki_identifier":"example_wiki_identifier","id":1,"comment":"example_comment","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wiki_page_stats_get

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).

Read read
Parameters
organization, project, wiki_identifier, page_id, page_views_for_days, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wiki_page_stats_get '{"organization":"example_organization","project":"example_project","wiki_identifier":"example_wiki_identifier","page_id":1,"page_views_for_days":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wiki_page_stats_get '{"organization":"example_organization","project":"example_project","wiki_identifier":"example_wiki_identifier","page_id":1,"page_views_for_days":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wiki_pages_batch_get

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).

Read read
Parameters
organization, body, project, wiki_identifier, version_descriptor_version, version_descriptor_version_options, version_descriptor_version_type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wiki_pages_batch_get '{"organization":"example_organization","body":"example_body","project":"example_project","wiki_identifier":"example_wiki_identifier","version_descriptor_version":"example_version_descriptor_version","version_descriptor_version_options":"example_version_descriptor_version_options","version_descriptor_version_type":"example_version_descriptor_version_type","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wiki_pages_batch_get '{"organization":"example_organization","body":"example_body","project":"example_project","wiki_identifier":"example_wiki_identifier","version_descriptor_version":"example_version_descriptor_version","version_descriptor_version_options":"example_version_descriptor_version_options","version_descriptor_version_type":"example_version_descriptor_version_type","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_artifact_link_types_list

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).

Read read
Parameters
organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_artifact_link_types_list '{"organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_artifact_link_types_list '{"organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_work_item_icons_list

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).

Read read
Parameters
organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_item_icons_list '{"organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_item_icons_list '{"organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_work_item_icons_get

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).

Read read
Parameters
icon, organization, color, v, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_item_icons_get '{"icon":"example_icon","organization":"example_organization","color":"example_color","v":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_item_icons_get '{"icon":"example_icon","organization":"example_organization","color":"example_color","v":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_work_item_relation_types_list

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).

Read read
Parameters
organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_item_relation_types_list '{"organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_item_relation_types_list '{"organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_work_item_relation_types_get

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).

Read read
Parameters
organization, relation, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_item_relation_types_get '{"organization":"example_organization","relation":"example_relation","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_item_relation_types_get '{"organization":"example_organization","relation":"example_relation","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_work_item_transitions_list

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).

Read read
Parameters
organization, ids, action, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_item_transitions_list '{"organization":"example_organization","ids":"example_ids","action":"example_action","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_item_transitions_list '{"organization":"example_organization","ids":"example_ids","action":"example_action","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_account_my_work_recent_activity_list

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).

Read read
Parameters
organization, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_account_my_work_recent_activity_list '{"organization":"example_organization","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_account_my_work_recent_activity_list '{"organization":"example_organization","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_github_connections_get_github_connections

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_github_connections_get_github_connections '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_github_connections_get_github_connections '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_github_connections_get_github_connection_repositories

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).

Read read
Parameters
organization, project, connection_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_github_connections_get_github_connection_repositories '{"organization":"example_organization","project":"example_project","connection_id":"example_connection_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_github_connections_get_github_connection_repositories '{"organization":"example_organization","project":"example_project","connection_id":"example_connection_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_github_connections_update

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).

Read read
Parameters
organization, body, project, connection_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_github_connections_update '{"organization":"example_organization","body":"example_body","project":"example_project","connection_id":"example_connection_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_github_connections_update '{"organization":"example_organization","body":"example_body","project":"example_project","connection_id":"example_connection_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_artifact_uri_query_query

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_artifact_uri_query_query '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_artifact_uri_query_query '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_attachments_create

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).

Read read
Parameters
organization, body, project, file_name, upload_type, area_path, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_attachments_create '{"organization":"example_organization","body":"example_body","project":"example_project","file_name":"example_file_name","upload_type":"example_upload_type","area_path":"example_area_path","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_attachments_create '{"organization":"example_organization","body":"example_body","project":"example_project","file_name":"example_file_name","upload_type":"example_upload_type","area_path":"example_area_path","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_attachments_get

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).

Read read
Parameters
organization, id, project, file_name, download, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_attachments_get '{"organization":"example_organization","id":"example_id","project":"example_project","file_name":"example_file_name","download":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_attachments_get '{"organization":"example_organization","id":"example_id","project":"example_project","file_name":"example_file_name","download":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_attachments_upload_chunk

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).

Read read
Parameters
organization, body, id, content_range_header, project, file_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_attachments_upload_chunk '{"organization":"example_organization","body":"example_body","id":"example_id","content_range_header":"example_content_range_header","project":"example_project","file_name":"example_file_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_attachments_upload_chunk '{"organization":"example_organization","body":"example_body","id":"example_id","content_range_header":"example_content_range_header","project":"example_project","file_name":"example_file_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_attachments_delete

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).

Read read
Parameters
organization, id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_attachments_delete '{"organization":"example_organization","id":"example_id","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_attachments_delete '{"organization":"example_organization","id":"example_id","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_classification_nodes_get_root_nodes

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).

Read read
Parameters
organization, project, depth, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_classification_nodes_get_root_nodes '{"organization":"example_organization","project":"example_project","depth":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_classification_nodes_get_root_nodes '{"organization":"example_organization","project":"example_project","depth":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_classification_nodes_get

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).

Read read
Parameters
organization, project, structure_group, path, depth, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_classification_nodes_get '{"organization":"example_organization","project":"example_project","structure_group":"example_structure_group","path":"example_path","depth":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_classification_nodes_get '{"organization":"example_organization","project":"example_project","structure_group":"example_structure_group","path":"example_path","depth":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_classification_nodes_create_or_update

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).

Write write
Parameters
organization, body, project, structure_group, path, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_classification_nodes_create_or_update '{"organization":"example_organization","body":"example_body","project":"example_project","structure_group":"example_structure_group","path":"example_path","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_classification_nodes_create_or_update '{"organization":"example_organization","body":"example_body","project":"example_project","structure_group":"example_structure_group","path":"example_path","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_classification_nodes_update

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).

Read read
Parameters
organization, body, project, structure_group, path, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_classification_nodes_update '{"organization":"example_organization","body":"example_body","project":"example_project","structure_group":"example_structure_group","path":"example_path","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_classification_nodes_update '{"organization":"example_organization","body":"example_body","project":"example_project","structure_group":"example_structure_group","path":"example_path","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_classification_nodes_delete

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).

Read read
Parameters
organization, project, structure_group, path, reclassify_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_classification_nodes_delete '{"organization":"example_organization","project":"example_project","structure_group":"example_structure_group","path":"example_path","reclassify_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_classification_nodes_delete '{"organization":"example_organization","project":"example_project","structure_group":"example_structure_group","path":"example_path","reclassify_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_fields_list

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).

Read read
Parameters
organization, project, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_fields_list '{"organization":"example_organization","project":"example_project","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_fields_list '{"organization":"example_organization","project":"example_project","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_fields_create

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_fields_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_fields_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_fields_get

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).

Read read
Parameters
organization, field_name_or_ref_name, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_fields_get '{"organization":"example_organization","field_name_or_ref_name":"example_field_name_or_ref_name","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_fields_get '{"organization":"example_organization","field_name_or_ref_name":"example_field_name_or_ref_name","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_fields_update

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).

Read read
Parameters
organization, body, field_name_or_ref_name, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_fields_update '{"organization":"example_organization","body":"example_body","field_name_or_ref_name":"example_field_name_or_ref_name","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_fields_update '{"organization":"example_organization","body":"example_body","field_name_or_ref_name":"example_field_name_or_ref_name","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_fields_delete

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).

Read read
Parameters
organization, field_name_or_ref_name, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_fields_delete '{"organization":"example_organization","field_name_or_ref_name":"example_field_name_or_ref_name","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_fields_delete '{"organization":"example_organization","field_name_or_ref_name":"example_field_name_or_ref_name","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_project_process_migration_migrate_projects_process

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_project_process_migration_migrate_projects_process '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_project_process_migration_migrate_projects_process '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_queries_list

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).

Read read
Parameters
organization, project, expand, depth, include_deleted, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_queries_list '{"organization":"example_organization","project":"example_project","expand":"example_expand","depth":1,"include_deleted":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_queries_list '{"organization":"example_organization","project":"example_project","expand":"example_expand","depth":1,"include_deleted":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_queries_get

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).

Read read
Parameters
organization, project, query, expand, depth, include_deleted, use_iso_date_format, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_queries_get '{"organization":"example_organization","project":"example_project","query":"example_query","expand":"example_expand","depth":1,"include_deleted":true,"use_iso_date_format":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_queries_get '{"organization":"example_organization","project":"example_project","query":"example_query","expand":"example_expand","depth":1,"include_deleted":true,"use_iso_date_format":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_queries_create

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).

Read read
Parameters
organization, body, project, query, validate_wiql_only, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_queries_create '{"organization":"example_organization","body":"example_body","project":"example_project","query":"example_query","validate_wiql_only":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_queries_create '{"organization":"example_organization","body":"example_body","project":"example_project","query":"example_query","validate_wiql_only":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_queries_update

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).

Read read
Parameters
organization, body, project, query, undelete_descendants, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_queries_update '{"organization":"example_organization","body":"example_body","project":"example_project","query":"example_query","undelete_descendants":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_queries_update '{"organization":"example_organization","body":"example_body","project":"example_project","query":"example_query","undelete_descendants":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_queries_delete

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).

Read read
Parameters
organization, project, query, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_queries_delete '{"organization":"example_organization","project":"example_project","query":"example_query","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_queries_delete '{"organization":"example_organization","project":"example_project","query":"example_query","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_queries_get_queries_batch

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_queries_get_queries_batch '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_queries_get_queries_batch '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_recyclebin_get_deleted_work_item_shallow_references

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_recyclebin_get_deleted_work_item_shallow_references '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_recyclebin_get_deleted_work_item_shallow_references '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_recyclebin_get

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).

Read read
Parameters
organization, id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_recyclebin_get '{"organization":"example_organization","id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_recyclebin_get '{"organization":"example_organization","id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_recyclebin_restore_work_item

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).

Read read
Parameters
organization, body, id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_recyclebin_restore_work_item '{"organization":"example_organization","body":"example_body","id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_recyclebin_restore_work_item '{"organization":"example_organization","body":"example_body","id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_recyclebin_destroy_work_item

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).

Read read
Parameters
organization, id, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_recyclebin_destroy_work_item '{"organization":"example_organization","id":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_recyclebin_destroy_work_item '{"organization":"example_organization","id":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_work_item_revisions_discussions_read_reporting_discussions

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).

Read read
Parameters
organization, project, continuation_token, max_page_size, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_item_revisions_discussions_read_reporting_discussions '{"organization":"example_organization","project":"example_project","continuation_token":"example_continuation_token","max_page_size":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_item_revisions_discussions_read_reporting_discussions '{"organization":"example_organization","project":"example_project","continuation_token":"example_continuation_token","max_page_size":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_reporting_work_item_links_get

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).

Read read
Parameters
organization, project, link_types, types, continuation_token, start_date_time, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_reporting_work_item_links_get '{"organization":"example_organization","project":"example_project","link_types":"example_link_types","types":"example_types","continuation_token":"example_continuation_token","start_date_time":"example_start_date_time","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_reporting_work_item_links_get '{"organization":"example_organization","project":"example_project","link_types":"example_link_types","types":"example_types","continuation_token":"example_continuation_token","start_date_time":"example_start_date_time","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_reporting_work_item_revisions_read_reporting_revisions_get

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).

Read read
Parameters
organization, project, fields, types, continuation_token, start_date_time, include_identity_ref, include_deleted, include_tag_ref, include_latest_only, expand, include_discussion_changes_only, max_page_size, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_reporting_work_item_revisions_read_reporting_revisions_get '{"organization":"example_organization","project":"example_project","fields":"example_fields","types":"example_types","continuation_token":"example_continuation_token","start_date_time":"example_start_date_time","include_identity_ref":true,"include_deleted":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_reporting_work_item_revisions_read_reporting_revisions_get '{"organization":"example_organization","project":"example_project","fields":"example_fields","types":"example_types","continuation_token":"example_continuation_token","start_date_time":"example_start_date_time","include_identity_ref":true,"include_deleted":true}' --json

azure-devops.azure_devops_wit_reporting_work_item_revisions_read_reporting_revisions_post

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).

Read read
Parameters
organization, body, project, continuation_token, start_date_time, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_reporting_work_item_revisions_read_reporting_revisions_post '{"organization":"example_organization","body":"example_body","project":"example_project","continuation_token":"example_continuation_token","start_date_time":"example_start_date_time","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_reporting_work_item_revisions_read_reporting_revisions_post '{"organization":"example_organization","body":"example_body","project":"example_project","continuation_token":"example_continuation_token","start_date_time":"example_start_date_time","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_send_mail_send_mail

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_send_mail_send_mail '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_send_mail_send_mail '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_tags_list

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_tags_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_tags_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_tags_get

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).

Read read
Parameters
organization, project, tag_id_or_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_tags_get '{"organization":"example_organization","project":"example_project","tag_id_or_name":"example_tag_id_or_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_tags_get '{"organization":"example_organization","project":"example_project","tag_id_or_name":"example_tag_id_or_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_tags_update

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).

Read read
Parameters
organization, body, project, tag_id_or_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_tags_update '{"organization":"example_organization","body":"example_body","project":"example_project","tag_id_or_name":"example_tag_id_or_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_tags_update '{"organization":"example_organization","body":"example_body","project":"example_project","tag_id_or_name":"example_tag_id_or_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_tags_delete

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).

Read read
Parameters
organization, project, tag_id_or_name, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_tags_delete '{"organization":"example_organization","project":"example_project","tag_id_or_name":"example_tag_id_or_name","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_tags_delete '{"organization":"example_organization","project":"example_project","tag_id_or_name":"example_tag_id_or_name","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_temp_queries_create

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_temp_queries_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_temp_queries_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_revisions_list

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).

Read read
Parameters
organization, id, project, top, skip, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_revisions_list '{"organization":"example_organization","id":1,"project":"example_project","top":1,"skip":1,"expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_revisions_list '{"organization":"example_organization","id":1,"project":"example_project","top":1,"skip":1,"expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_revisions_get

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).

Read read
Parameters
organization, id, revision_number, project, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_revisions_get '{"organization":"example_organization","id":1,"revision_number":1,"project":"example_project","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_revisions_get '{"organization":"example_organization","id":1,"revision_number":1,"project":"example_project","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_updates_list

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).

Read read
Parameters
organization, id, project, top, skip, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_updates_list '{"organization":"example_organization","id":1,"project":"example_project","top":1,"skip":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_updates_list '{"organization":"example_organization","id":1,"project":"example_project","top":1,"skip":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_updates_get

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).

Read read
Parameters
organization, id, update_number, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_updates_get '{"organization":"example_organization","id":1,"update_number":1,"project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_updates_get '{"organization":"example_organization","id":1,"update_number":1,"project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_comments_get_comments_batch

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).

Read read
Parameters
organization, project, work_item_id, ids, include_deleted, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_comments_get_comments_batch '{"organization":"example_organization","project":"example_project","work_item_id":1,"ids":"example_ids","include_deleted":true,"expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_comments_get_comments_batch '{"organization":"example_organization","project":"example_project","work_item_id":1,"ids":"example_ids","include_deleted":true,"expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_comments_add_comment

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).

Write write
Parameters
organization, body, project, work_item_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_comments_add_comment '{"organization":"example_organization","body":"example_body","project":"example_project","work_item_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_comments_add_comment '{"organization":"example_organization","body":"example_body","project":"example_project","work_item_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_comments_get_comment

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).

Read read
Parameters
organization, project, work_item_id, comment_id, include_deleted, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_comments_get_comment '{"organization":"example_organization","project":"example_project","work_item_id":1,"comment_id":1,"include_deleted":true,"expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_comments_get_comment '{"organization":"example_organization","project":"example_project","work_item_id":1,"comment_id":1,"include_deleted":true,"expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_comments_update_comment

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).

Write write
Parameters
organization, body, project, work_item_id, comment_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_comments_update_comment '{"organization":"example_organization","body":"example_body","project":"example_project","work_item_id":1,"comment_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_comments_update_comment '{"organization":"example_organization","body":"example_body","project":"example_project","work_item_id":1,"comment_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_comments_delete

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).

Read read
Parameters
organization, project, work_item_id, comment_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_comments_delete '{"organization":"example_organization","project":"example_project","work_item_id":1,"comment_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_comments_delete '{"organization":"example_organization","project":"example_project","work_item_id":1,"comment_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_comments_reactions_list

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).

Read read
Parameters
organization, project, work_item_id, comment_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_comments_reactions_list '{"organization":"example_organization","project":"example_project","work_item_id":1,"comment_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_comments_reactions_list '{"organization":"example_organization","project":"example_project","work_item_id":1,"comment_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_comments_reactions_create

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).

Read read
Parameters
organization, project, work_item_id, comment_id, reaction_type, api_version, body
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_comments_reactions_create '{"organization":"example_organization","project":"example_project","work_item_id":1,"comment_id":1,"reaction_type":"example_reaction_type","api_version":"example_api_version","body":"example_body"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_comments_reactions_create '{"organization":"example_organization","project":"example_project","work_item_id":1,"comment_id":1,"reaction_type":"example_reaction_type","api_version":"example_api_version","body":"example_body"}' --json

azure-devops.azure_devops_wit_comments_reactions_delete

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).

Read read
Parameters
organization, project, work_item_id, comment_id, reaction_type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_comments_reactions_delete '{"organization":"example_organization","project":"example_project","work_item_id":1,"comment_id":1,"reaction_type":"example_reaction_type","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_comments_reactions_delete '{"organization":"example_organization","project":"example_project","work_item_id":1,"comment_id":1,"reaction_type":"example_reaction_type","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_comment_reactions_engaged_users_list

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).

Read read
Parameters
organization, project, work_item_id, comment_id, reaction_type, top, skip, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_comment_reactions_engaged_users_list '{"organization":"example_organization","project":"example_project","work_item_id":1,"comment_id":1,"reaction_type":"example_reaction_type","top":1,"skip":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_comment_reactions_engaged_users_list '{"organization":"example_organization","project":"example_project","work_item_id":1,"comment_id":1,"reaction_type":"example_reaction_type","top":1,"skip":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_comments_versions_list

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).

Read read
Parameters
organization, project, work_item_id, comment_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_comments_versions_list '{"organization":"example_organization","project":"example_project","work_item_id":1,"comment_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_comments_versions_list '{"organization":"example_organization","project":"example_project","work_item_id":1,"comment_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_comments_versions_get

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).

Read read
Parameters
organization, project, work_item_id, comment_id, version, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_comments_versions_get '{"organization":"example_organization","project":"example_project","work_item_id":1,"comment_id":1,"version":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_comments_versions_get '{"organization":"example_organization","project":"example_project","work_item_id":1,"comment_id":1,"version":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_work_items_list

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).

Read read
Parameters
organization, ids, project, fields, as_of, expand, error_policy, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_items_list '{"organization":"example_organization","ids":"example_ids","project":"example_project","fields":"example_fields","as_of":"example_as_of","expand":"example_expand","error_policy":"example_error_policy","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_items_list '{"organization":"example_organization","ids":"example_ids","project":"example_project","fields":"example_fields","as_of":"example_as_of","expand":"example_expand","error_policy":"example_error_policy","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_work_items_get_work_item_template

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).

Read read
Parameters
organization, project, type, fields, as_of, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_items_get_work_item_template '{"organization":"example_organization","project":"example_project","type":"example_type","fields":"example_fields","as_of":"example_as_of","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_items_get_work_item_template '{"organization":"example_organization","project":"example_project","type":"example_type","fields":"example_fields","as_of":"example_as_of","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_work_items_create

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).

Read read
Parameters
organization, body, project, type, validate_only, bypass_rules, suppress_notifications, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_items_create '{"organization":"example_organization","body":"example_body","project":"example_project","type":"example_type","validate_only":true,"bypass_rules":true,"suppress_notifications":true,"expand":"example_expand"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_items_create '{"organization":"example_organization","body":"example_body","project":"example_project","type":"example_type","validate_only":true,"bypass_rules":true,"suppress_notifications":true,"expand":"example_expand"}' --json

azure-devops.azure_devops_wit_work_items_get_work_item

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).

Read read
Parameters
organization, id, project, fields, as_of, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_items_get_work_item '{"organization":"example_organization","id":1,"project":"example_project","fields":"example_fields","as_of":"example_as_of","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_items_get_work_item '{"organization":"example_organization","id":1,"project":"example_project","fields":"example_fields","as_of":"example_as_of","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_work_items_update

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).

Read read
Parameters
organization, body, id, project, validate_only, bypass_rules, suppress_notifications, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_items_update '{"organization":"example_organization","body":"example_body","id":1,"project":"example_project","validate_only":true,"bypass_rules":true,"suppress_notifications":true,"expand":"example_expand"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_items_update '{"organization":"example_organization","body":"example_body","id":1,"project":"example_project","validate_only":true,"bypass_rules":true,"suppress_notifications":true,"expand":"example_expand"}' --json

azure-devops.azure_devops_wit_work_items_delete

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).

Read read
Parameters
organization, id, project, destroy, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_items_delete '{"organization":"example_organization","id":1,"project":"example_project","destroy":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_items_delete '{"organization":"example_organization","id":1,"project":"example_project","destroy":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_work_items_get_work_items_batch

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_items_get_work_items_batch '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_items_get_work_items_batch '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_work_items_delete_work_items

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).

Write write
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_items_delete_work_items '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_items_delete_work_items '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_work_item_type_categories_list

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_item_type_categories_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_item_type_categories_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_work_item_type_categories_get

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).

Read read
Parameters
organization, project, category, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_item_type_categories_get '{"organization":"example_organization","project":"example_project","category":"example_category","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_item_type_categories_get '{"organization":"example_organization","project":"example_project","category":"example_category","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_work_item_types_list

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_item_types_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_item_types_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_work_item_types_get

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).

Read read
Parameters
organization, project, type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_item_types_get '{"organization":"example_organization","project":"example_project","type":"example_type","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_item_types_get '{"organization":"example_organization","project":"example_project","type":"example_type","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_work_item_types_field_list

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).

Read read
Parameters
organization, project, type, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_item_types_field_list '{"organization":"example_organization","project":"example_project","type":"example_type","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_item_types_field_list '{"organization":"example_organization","project":"example_project","type":"example_type","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_work_item_types_field_get

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).

Read read
Parameters
organization, project, type, field, expand, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_item_types_field_get '{"organization":"example_organization","project":"example_project","type":"example_type","field":"example_field","expand":"example_expand","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_item_types_field_get '{"organization":"example_organization","project":"example_project","type":"example_type","field":"example_field","expand":"example_expand","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_work_item_type_states_list

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).

Read read
Parameters
organization, project, type, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_work_item_type_states_list '{"organization":"example_organization","project":"example_project","type":"example_type","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_work_item_type_states_list '{"organization":"example_organization","project":"example_project","type":"example_type","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_templates_list

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).

Read read
Parameters
organization, project, team, workitemtypename, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_templates_list '{"organization":"example_organization","project":"example_project","team":"example_team","workitemtypename":"example_workitemtypename","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_templates_list '{"organization":"example_organization","project":"example_project","team":"example_team","workitemtypename":"example_workitemtypename","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_templates_create

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).

Read read
Parameters
organization, body, project, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_templates_create '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_templates_create '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_templates_get

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).

Read read
Parameters
organization, project, team, template_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_templates_get '{"organization":"example_organization","project":"example_project","team":"example_team","template_id":"example_template_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_templates_get '{"organization":"example_organization","project":"example_project","team":"example_team","template_id":"example_template_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_templates_replace_template

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).

Read read
Parameters
organization, body, project, team, template_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_templates_replace_template '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","template_id":"example_template_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_templates_replace_template '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","template_id":"example_template_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_templates_delete

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).

Read read
Parameters
organization, project, team, template_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_templates_delete '{"organization":"example_organization","project":"example_project","team":"example_team","template_id":"example_template_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_templates_delete '{"organization":"example_organization","project":"example_project","team":"example_team","template_id":"example_template_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_wiql_query_by_wiql

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).

Read read
Parameters
organization, body, project, team, time_precision, top, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_wiql_query_by_wiql '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","time_precision":true,"top":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_wiql_query_by_wiql '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","time_precision":true,"top":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_wit_wiql_query_by_id

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).

Read read
Parameters
organization, id, project, team, time_precision, top, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_wit_wiql_query_by_id '{"organization":"example_organization","id":"example_id","project":"example_project","team":"example_team","time_precision":true,"top":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_wit_wiql_query_by_id '{"organization":"example_organization","id":"example_id","project":"example_project","team":"example_team","time_precision":true,"top":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_boardcolumns_list

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_boardcolumns_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_boardcolumns_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_boardrows_list

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_boardrows_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_boardrows_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_iterationcapacities_get

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).

Read read
Parameters
organization, project, iteration_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_iterationcapacities_get '{"organization":"example_organization","project":"example_project","iteration_id":"example_iteration_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_iterationcapacities_get '{"organization":"example_organization","project":"example_project","iteration_id":"example_iteration_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_plans_list

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_plans_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_plans_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_plans_create

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).

Read read
Parameters
organization, body, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_plans_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_plans_create '{"organization":"example_organization","body":"example_body","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_plans_get

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).

Read read
Parameters
organization, project, id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_plans_get '{"organization":"example_organization","project":"example_project","id":"example_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_plans_get '{"organization":"example_organization","project":"example_project","id":"example_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_plans_update

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).

Read read
Parameters
organization, body, project, id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_plans_update '{"organization":"example_organization","body":"example_body","project":"example_project","id":"example_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_plans_update '{"organization":"example_organization","body":"example_body","project":"example_project","id":"example_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_plans_delete

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).

Read read
Parameters
organization, project, id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_plans_delete '{"organization":"example_organization","project":"example_project","id":"example_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_plans_delete '{"organization":"example_organization","project":"example_project","id":"example_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_deliverytimeline_get

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).

Read read
Parameters
organization, project, id, revision, start_date, end_date, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_deliverytimeline_get '{"organization":"example_organization","project":"example_project","id":"example_id","revision":1,"start_date":"example_start_date","end_date":"example_end_date","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_deliverytimeline_get '{"organization":"example_organization","project":"example_project","id":"example_id","revision":1,"start_date":"example_start_date","end_date":"example_end_date","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_predefined_queries_list

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_predefined_queries_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_predefined_queries_list '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_predefined_queries_get

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).

Read read
Parameters
organization, project, id, top, include_completed, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_predefined_queries_get '{"organization":"example_organization","project":"example_project","id":"example_id","top":1,"include_completed":true,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_predefined_queries_get '{"organization":"example_organization","project":"example_project","id":"example_id","top":1,"include_completed":true,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_processconfiguration_get

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).

Read read
Parameters
organization, project, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_processconfiguration_get '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_processconfiguration_get '{"organization":"example_organization","project":"example_project","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_backlogconfiguration_get

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).

Read read
Parameters
organization, project, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_backlogconfiguration_get '{"organization":"example_organization","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_backlogconfiguration_get '{"organization":"example_organization","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_backlogs_list

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).

Read read
Parameters
organization, project, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_backlogs_list '{"organization":"example_organization","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_backlogs_list '{"organization":"example_organization","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_backlogs_get_backlog_level_work_items

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).

Read read
Parameters
organization, project, team, backlog_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_backlogs_get_backlog_level_work_items '{"organization":"example_organization","project":"example_project","team":"example_team","backlog_id":"example_backlog_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_backlogs_get_backlog_level_work_items '{"organization":"example_organization","project":"example_project","team":"example_team","backlog_id":"example_backlog_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_backlogs_get_backlog

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).

Read read
Parameters
organization, project, team, id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_backlogs_get_backlog '{"organization":"example_organization","project":"example_project","team":"example_team","id":"example_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_backlogs_get_backlog '{"organization":"example_organization","project":"example_project","team":"example_team","id":"example_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_boards_list

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).

Read read
Parameters
organization, project, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_boards_list '{"organization":"example_organization","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_boards_list '{"organization":"example_organization","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_boardparents_list

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).

Read read
Parameters
organization, project, child_backlog_context_category_ref_name, workitem_ids, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_boardparents_list '{"organization":"example_organization","project":"example_project","child_backlog_context_category_ref_name":"example_child_backlog_context_category_ref_name","workitem_ids":"example_workitem_ids","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_boardparents_list '{"organization":"example_organization","project":"example_project","child_backlog_context_category_ref_name":"example_child_backlog_context_category_ref_name","workitem_ids":"example_workitem_ids","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_boardusersettings_get

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).

Read read
Parameters
organization, project, board, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_boardusersettings_get '{"organization":"example_organization","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_boardusersettings_get '{"organization":"example_organization","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_boardusersettings_update

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).

Read read
Parameters
organization, body, project, board, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_boardusersettings_update '{"organization":"example_organization","body":"example_body","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_boardusersettings_update '{"organization":"example_organization","body":"example_body","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_cardrulesettings_get

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).

Read read
Parameters
organization, project, board, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_cardrulesettings_get '{"organization":"example_organization","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_cardrulesettings_get '{"organization":"example_organization","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_cardrulesettings_update_board_card_rule_settings

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).

Write write
Parameters
organization, body, project, board, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_cardrulesettings_update_board_card_rule_settings '{"organization":"example_organization","body":"example_body","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_cardrulesettings_update_board_card_rule_settings '{"organization":"example_organization","body":"example_body","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_cardsettings_get

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).

Read read
Parameters
organization, project, board, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_cardsettings_get '{"organization":"example_organization","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_cardsettings_get '{"organization":"example_organization","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_cardsettings_update_board_card_settings

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).

Write write
Parameters
organization, body, project, board, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_cardsettings_update_board_card_settings '{"organization":"example_organization","body":"example_body","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_cardsettings_update_board_card_settings '{"organization":"example_organization","body":"example_body","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_chartimages_get_board_chart_image

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).

Read read
Parameters
organization, project, team, board, name, width, height, show_details, title, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_chartimages_get_board_chart_image '{"organization":"example_organization","project":"example_project","team":"example_team","board":"example_board","name":"example_name","width":1,"height":1,"show_details":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_chartimages_get_board_chart_image '{"organization":"example_organization","project":"example_project","team":"example_team","board":"example_board","name":"example_name","width":1,"height":1,"show_details":true}' --json

azure-devops.azure_devops_work_charts_list

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).

Read read
Parameters
organization, project, board, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_charts_list '{"organization":"example_organization","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_charts_list '{"organization":"example_organization","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_charts_get

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).

Read read
Parameters
organization, project, board, name, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_charts_get '{"organization":"example_organization","project":"example_project","board":"example_board","name":"example_name","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_charts_get '{"organization":"example_organization","project":"example_project","board":"example_board","name":"example_name","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_charts_update

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).

Read read
Parameters
organization, body, project, board, name, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_charts_update '{"organization":"example_organization","body":"example_body","project":"example_project","board":"example_board","name":"example_name","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_charts_update '{"organization":"example_organization","body":"example_body","project":"example_project","board":"example_board","name":"example_name","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_columns_list

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).

Read read
Parameters
organization, project, board, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_columns_list '{"organization":"example_organization","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_columns_list '{"organization":"example_organization","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_columns_update

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).

Read read
Parameters
organization, body, project, board, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_columns_update '{"organization":"example_organization","body":"example_body","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_columns_update '{"organization":"example_organization","body":"example_body","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_rows_list

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).

Read read
Parameters
organization, project, board, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_rows_list '{"organization":"example_organization","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_rows_list '{"organization":"example_organization","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_rows_update

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).

Read read
Parameters
organization, body, project, board, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_rows_update '{"organization":"example_organization","body":"example_body","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_rows_update '{"organization":"example_organization","body":"example_body","project":"example_project","board":"example_board","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_boards_get

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).

Read read
Parameters
organization, project, id, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_boards_get '{"organization":"example_organization","project":"example_project","id":"example_id","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_boards_get '{"organization":"example_organization","project":"example_project","id":"example_id","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_boards_set_board_options

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).

Read read
Parameters
organization, body, project, id, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_boards_set_board_options '{"organization":"example_organization","body":"example_body","project":"example_project","id":"example_id","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_boards_set_board_options '{"organization":"example_organization","body":"example_body","project":"example_project","id":"example_id","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_chartimages_get_iterations_chart_image

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).

Read read
Parameters
organization, project, team, name, iterations_number, width, height, show_details, title, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_chartimages_get_iterations_chart_image '{"organization":"example_organization","project":"example_project","team":"example_team","name":"example_name","iterations_number":1,"width":1,"height":1,"show_details":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_chartimages_get_iterations_chart_image '{"organization":"example_organization","project":"example_project","team":"example_team","name":"example_name","iterations_number":1,"width":1,"height":1,"show_details":true}' --json

azure-devops.azure_devops_work_chartimages_get_iteration_chart_image

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).

Read read
Parameters
organization, project, team, iteration_id, name, width, height, show_details, title, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_chartimages_get_iteration_chart_image '{"organization":"example_organization","project":"example_project","team":"example_team","iteration_id":"example_iteration_id","name":"example_name","width":1,"height":1,"show_details":true}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_chartimages_get_iteration_chart_image '{"organization":"example_organization","project":"example_project","team":"example_team","iteration_id":"example_iteration_id","name":"example_name","width":1,"height":1,"show_details":true}' --json

azure-devops.azure_devops_work_workitemsorder_reorder_iteration_work_items

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).

Read read
Parameters
organization, body, project, team, iteration_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_workitemsorder_reorder_iteration_work_items '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","iteration_id":"example_iteration_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_workitemsorder_reorder_iteration_work_items '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","iteration_id":"example_iteration_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_cardrulesettings_update_taskboard_card_rule_settings

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).

Write write
Parameters
organization, body, project, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_cardrulesettings_update_taskboard_card_rule_settings '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_cardrulesettings_update_taskboard_card_rule_settings '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_cardsettings_update_taskboard_card_settings

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).

Write write
Parameters
organization, body, project, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_cardsettings_update_taskboard_card_settings '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_cardsettings_update_taskboard_card_settings '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_taskboard_columns_get

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).

Read read
Parameters
organization, project, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_taskboard_columns_get '{"organization":"example_organization","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_taskboard_columns_get '{"organization":"example_organization","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_taskboard_columns_update

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).

Read read
Parameters
organization, body, project, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_taskboard_columns_update '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_taskboard_columns_update '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_taskboard_work_items_list

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).

Read read
Parameters
organization, project, team, iteration_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_taskboard_work_items_list '{"organization":"example_organization","project":"example_project","team":"example_team","iteration_id":"example_iteration_id","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_taskboard_work_items_list '{"organization":"example_organization","project":"example_project","team":"example_team","iteration_id":"example_iteration_id","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_taskboard_work_items_update

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).

Read read
Parameters
organization, body, project, team, iteration_id, work_item_id, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_taskboard_work_items_update '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","iteration_id":"example_iteration_id","work_item_id":1,"api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_taskboard_work_items_update '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","iteration_id":"example_iteration_id","work_item_id":1,"api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_teamsettings_get

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).

Read read
Parameters
organization, project, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_teamsettings_get '{"organization":"example_organization","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_teamsettings_get '{"organization":"example_organization","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_teamsettings_update

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).

Read read
Parameters
organization, body, project, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_teamsettings_update '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_teamsettings_update '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_iterations_list

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).

Read read
Parameters
organization, project, team, timeframe, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_iterations_list '{"organization":"example_organization","project":"example_project","team":"example_team","timeframe":"example_timeframe","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_iterations_list '{"organization":"example_organization","project":"example_project","team":"example_team","timeframe":"example_timeframe","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_iterations_post_team_iteration

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).

Read read
Parameters
organization, body, project, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_iterations_post_team_iteration '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_iterations_post_team_iteration '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_iterations_get

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).

Read read
Parameters
organization, project, id, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_iterations_get '{"organization":"example_organization","project":"example_project","id":"example_id","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_iterations_get '{"organization":"example_organization","project":"example_project","id":"example_id","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_iterations_delete

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).

Read read
Parameters
organization, project, id, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_iterations_delete '{"organization":"example_organization","project":"example_project","id":"example_id","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_iterations_delete '{"organization":"example_organization","project":"example_project","id":"example_id","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_capacities_get_capacities_with_identity_ref_and_totals

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).

Read read
Parameters
organization, project, iteration_id, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_capacities_get_capacities_with_identity_ref_and_totals '{"organization":"example_organization","project":"example_project","iteration_id":"example_iteration_id","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_capacities_get_capacities_with_identity_ref_and_totals '{"organization":"example_organization","project":"example_project","iteration_id":"example_iteration_id","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_capacities_replace_capacities_with_identity_ref

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).

Read read
Parameters
organization, body, project, iteration_id, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_capacities_replace_capacities_with_identity_ref '{"organization":"example_organization","body":"example_body","project":"example_project","iteration_id":"example_iteration_id","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_capacities_replace_capacities_with_identity_ref '{"organization":"example_organization","body":"example_body","project":"example_project","iteration_id":"example_iteration_id","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_capacities_get_capacity_with_identity_ref

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).

Read read
Parameters
organization, project, iteration_id, team_member_id, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_capacities_get_capacity_with_identity_ref '{"organization":"example_organization","project":"example_project","iteration_id":"example_iteration_id","team_member_id":"example_team_member_id","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_capacities_get_capacity_with_identity_ref '{"organization":"example_organization","project":"example_project","iteration_id":"example_iteration_id","team_member_id":"example_team_member_id","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_capacities_update

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).

Read read
Parameters
organization, body, project, iteration_id, team_member_id, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_capacities_update '{"organization":"example_organization","body":"example_body","project":"example_project","iteration_id":"example_iteration_id","team_member_id":"example_team_member_id","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_capacities_update '{"organization":"example_organization","body":"example_body","project":"example_project","iteration_id":"example_iteration_id","team_member_id":"example_team_member_id","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_teamdaysoff_get

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).

Read read
Parameters
organization, project, iteration_id, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_teamdaysoff_get '{"organization":"example_organization","project":"example_project","iteration_id":"example_iteration_id","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_teamdaysoff_get '{"organization":"example_organization","project":"example_project","iteration_id":"example_iteration_id","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_teamdaysoff_update

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).

Read read
Parameters
organization, body, project, iteration_id, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_teamdaysoff_update '{"organization":"example_organization","body":"example_body","project":"example_project","iteration_id":"example_iteration_id","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_teamdaysoff_update '{"organization":"example_organization","body":"example_body","project":"example_project","iteration_id":"example_iteration_id","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_iterations_get_iteration_work_items

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).

Read read
Parameters
organization, project, iteration_id, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_iterations_get_iteration_work_items '{"organization":"example_organization","project":"example_project","iteration_id":"example_iteration_id","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_iterations_get_iteration_work_items '{"organization":"example_organization","project":"example_project","iteration_id":"example_iteration_id","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_teamfieldvalues_get

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).

Read read
Parameters
organization, project, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_teamfieldvalues_get '{"organization":"example_organization","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_teamfieldvalues_get '{"organization":"example_organization","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_teamfieldvalues_update

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).

Read read
Parameters
organization, body, project, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_teamfieldvalues_update '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_teamfieldvalues_update '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json

azure-devops.azure_devops_work_workitemsorder_reorder_backlog_work_items

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).

Read read
Parameters
organization, body, project, team, api_version
Generic call
kosmo integrations:call azure-devops.azure_devops_work_workitemsorder_reorder_backlog_work_items '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json
Shortcut
kosmo integrations:azure-devops azure_devops_work_workitemsorder_reorder_backlog_work_items '{"organization":"example_organization","body":"example_body","project":"example_project","team":"example_team","api_version":"example_api_version"}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

azure-devops.azure_devops_account_accounts_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_account_accounts_list --json
ParameterTypeRequiredDescription
owner_id string no ID for the owner of the accounts.
member_id string no ID for a member of the accounts.
properties string no query parameter `properties`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_advanced_security_filters_settings_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_filters_settings_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
include_deleted boolean no Whether to include soft-deleted filters.
keywords string no Optional filter to search filters by name (case-insensitive, partial match).
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_advanced_security_filters_settings_create 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_filters_settings_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The advanced filter to create.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_advanced_security_filters_settings_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_filters_settings_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
filter_id string yes The ID of the advanced filter to retrieve.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_advanced_security_filters_settings_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_filters_settings_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The update data containing the new name.
filter_id string yes The ID of the advanced filter to update.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_advanced_security_filters_settings_delete 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_filters_settings_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
filter_id string yes The ID of the advanced filter to delete.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_advanced_security_summary_dashboard_get_alert_summary_for_org 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_summary_dashboard_get_alert_summary_for_org --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
criteria_alert_types array no If provided, only return summary data for alerts of this type. Otherwise, return summary data for alerts of all types.
criteria_keywords string no If provided, only return repos whose titles match this pattern.
criteria_period string no If provided, summary data will be scoped to this time period.
criteria_projects array no If provided, only return summary data for these projects Otherwise, return summary data for all projects.
criteria_severities array no If provided, only return summary data for alerts at these severities. <br />Otherwise, return summary data for alerts at any severity.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_advanced_security_summary_dashboard_list 22 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_summary_dashboard_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
criteria_alert_type string no If provided, only return alerts of the specified alert type.
criteria_alert_validity_status string no If provided, only return alerts with the specified validity status.
criteria_component_names array no If provided, only return dependency alerts for the specified package names.
criteria_component_types array no If provided, only return dependency alerts for the specified ecosystems (e.g., NuGet, Npm, Maven).
criteria_dismissal_types array no If provided, only return alerts with one of the specified dismissal types (closure reasons). Applicable only when filtering for closed/dismissed alerts.
criteria_fixed_date_end string no If provided, only return alerts fixed on or before this date.
criteria_fixed_date_start string no If provided, only return alerts fixed on or after this date.
criteria_introduced_date_end string no If provided, only return alerts introduced on or before this date.
criteria_introduced_date_start string no If provided, only return alerts introduced on or after this date.
criteria_keywords string no If provided, only return alerts whose titles match this pattern.
criteria_projects array no If provided, only return alerts for projects whose names are in this list.
criteria_repositories array no If provided, only return alerts for repositories whose names are in this list.
criteria_repository_ids array no If provided, only return alerts for repositories whose IDs (GitRepositoryId) are in this list.
criteria_rule_names array no If provided, only return code scanning alerts or secret alerts matching the specified rule names.
criteria_secret_types array no If provided, only return secret alerts matching the specified secret types (rule friendly name or opaque ID).
criteria_severities array no If provided, only return alerts with the specified severities. Otherwise, return alerts at any severity.
criteria_state string no If provided, return alerts that are active or inactive based on this value. <br />Otherwise, return alerts in any state.
criteria_tool_names array no If provided, only return code scanning alerts detected by the specified tools.
top number no The maximum number of alerts to return
continuation_token string no If there are more alerts than can be returned, a continuation token is placed in the "x-ms-continuationtoken" header. Use that token here to get the next page of alerts
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_advanced_security_summary_dashboard_get_enablement_summary_for_org 11 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_summary_dashboard_get_enablement_summary_for_org --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
criteria_keywords string no If provided, only return repos whose titles match this pattern.
criteria_projects array no If provided, only return summary data for these projects. Otherwise, return summary data for all projects.
criteria_states_any_tool boolean no True if any tool is enabled for the repository, false if any tool is disabled.
criteria_states_code_alerts boolean no True if code scanning alerts are enabled for the repository, false if disabled.
criteria_states_code_pralerts boolean no True if code scanning pull request alerts are enabled for the repository, false if disabled.
criteria_states_dependency_alerts boolean no True if dependency alerts are enabled for the repository, false if disabled.
criteria_states_dependency_pralerts boolean no True if dependency pull request alerts are enabled for the repository, false if disabled.
criteria_states_push_protection boolean no True if pushes containing secrets will be blocked, false if they will not.
criteria_states_secret_alerts boolean no True if secret scanning is enabled for the repository, false if disabled.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_advanced_security_alerts_batch_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_alerts_batch_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request containing alert IDs and optional alert type filter
project string yes Project ID or project name
repository string yes The name or ID of the repository
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_advanced_security_alerts_list 31 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_alerts_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
repository string yes The name or ID of the repository
top number no The maximum number of alerts to return
order_by string no Must be "id" "firstSeen" "lastSeen" "fixedOn" or "severity" Defaults to "id"
criteria_alert_ids array no If provided, only return alerts with the ids specified. <br />Otherwise, return any alert.
criteria_alert_type string no If provided, only return alerts of this type. Otherwise, return alerts of all types.
criteria_confidence_levels array no If provided, only return alerts at these confidence levels. <br />Both High and Other need to be specified to fetch alerts of all confidence levels. <br />Otherwise, return alerts with high confidence level. <br />Only applicable for secret alerts.
criteria_dependency_name string no If provided, only alerts for this dependency are returned. <br />Otherwise, return alerts for all dependencies. <br />In a sarif submission, a dependency (or a component) is specified in result.RelatedLocations[].logicalLocation. <br />Not applicable for secret alerts.
criteria_from_date string no If provided, only return alerts last seen after this date. <br />Otherwise return all alerts.
criteria_has_linked_work_items boolean no If provided, filters alerts based on whether they have linked work items. <br />Set to "true" to return only alerts with linked work items. <br />Set to "false" to return only alerts without linked work items. <br />If not provided, returns all alerts regardless of linked work items. <br />Not applicable for secret and dependency scanning alerts.
criteria_is_triaged boolean no If provided with isTriaged, only return alerts that have been triaged. <br />Otherwise, return alerts regardless of triage status.
criteria_keywords string no If provided, only return alerts whose titles match this pattern.
criteria_license_name string no If provided, only alerts created for dependency with this license are returned. <br />Otherwise, return alerts for all licenses. <br />In a sarif submission, license for a dependency (or a component) is specified in result.RelatedLocations[].logicalLocation.properties.license. <br />Not applicable for secret alerts.
criteria_modified_since string no If provided, only return alerts that were modified since this date. <br />Otherwise return all alerts.
criteria_only_default_branch boolean no If true or not set, only return alerts found on the default branch of the repository. <br />If there have been no runs completed on the default branch, the last run is used instead regardless of the branch used for that run. If false, return alerts from all branches. <br />This option is ignored if ref is provided. <br />Not applicable for secret alerts.
criteria_phase_id string no If provided with pipelineName, only return alerts detected in this pipeline phase <br />Otherwise, return alerts detected in all phases. <br />Not applicable for secret alerts.
criteria_phase_name string no If provided with pipelineName, only return alerts detected in this pipeline phase <br />Otherwise, return alerts detected in all phases. <br />Not applicable for secret alerts.
criteria_pipeline_id number no If provided with pipelineId, only return alerts detected in this pipeline <br />Otherwise, return alerts detected in all pipelines.
criteria_pipeline_name string no If provided, only return alerts detected in this pipeline. <br />Otherwise, return alerts detected in all pipelines. <br />Not applicable for secret alerts.
criteria_ref string no If provided, only include alerts for this ref. <br />If not provided and OnlyDefaultBranch is true, only include alerts found on the default branch or last run branch if there is no analysis configuration for the default branch. <br />Otherwise, include alerts from all branches. <br />Not applicable for secret alerts.
criteria_rule_id string no If provided, only return alerts for this rule. <br />Otherwise, return alerts of all rules.
criteria_rule_name string no If provided, only return alerts for this rule. <br />Otherwise, return alerts for all rules.
criteria_severities array no If provided, only return alerts at these severities. <br />Otherwise, return alerts at any severity.
criteria_states array no If provided, only return alerts in these states. <br />Otherwise, return alerts in any state.
criteria_to_date string no If provided, only return alerts last seen before this date. <br />Otherwise return all alerts.
criteria_tool_name string no If provided with toolName, only return alerts detected by this tool. <br />Otherwise, return alerts detected by all tools.
criteria_validity array no If provided, only return alerts with the validity specified here. If the validity status is Unknown, fetch alerts of all validity results. <br />Only applicable for secret alerts. <br />Filtering by validity status may cause less alerts to be returned than requested with TOP parameter. <br />Due to this behavior, the ContinuationToken(<![CDATA[<header name>]]>) in the response header should be relied on to decide if another batch needs to be fetched.
expand string no query parameter `expand`.
continuation_token string no If there are more alerts than can be returned, a continuation token is placed in the "x-ms-continuationtoken" header. Use that token here to get the next page of alerts
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_advanced_security_metadata_batch_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_metadata_batch_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
repository string yes Name or id of a repository that alert is part of
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_advanced_security_alerts_get 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_alerts_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
alert_id number yes ID of alert to retrieve
repository string yes Name or id of a repository that alert is part of
ref string no query parameter `ref`.
expand string no Expand attributes of a secret alert. Possible values are `None` and `ValidationFingerprint`. Defaults to `None`. Be aware that if `expand` is set to `ValidationFingerprint`, the response may contain the secret in its unencrypted form. Please exercise caution when using this data.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_advanced_security_alerts_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_alerts_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The new status of the alert
project string yes Project ID or project name
alert_id number yes The ID of the alert
repository string yes The name or ID of the repository
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_advanced_security_instances_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_instances_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
alert_id number yes ID of alert to retrieve
repository string yes Name or id of a repository that alert is part of
ref string no query parameter `ref`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_advanced_security_metadata2_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_metadata2_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
alert_id number yes ID of alert to retrieve
repository string yes Name or id of a repository that alert is part of
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_advanced_security_analysis_list 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_analysis_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
repository string yes path parameter `repository`.
alert_type string no The type of alert: Dependency Scanning (1), Secret (2), Code QL (3), etc.
continuation_token string no A string variable that represents the branch name and is used to fetch branches that follow it in alphabetical order.
branch_name_contains string no A string variable used to fetch branches that contain this string anywhere in the branch name, case insensitive.
top number no An int variable used to return the top k branches that satisfy the search criteria.
include_pull_request_branches boolean no A bool variable indicating whether or not to include pull request branches.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_advanced_security_pipeline_analyses_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_pipeline_analyses_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
repository string yes The name or ID of the repository.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_advanced_security_pipeline_analysis_delete 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_pipeline_analysis_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
repository string yes The name or ID of the repository.
ado_pipeline_id number yes The ID of the ADO pipeline whose analysis data should be cleaned up.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_advanced_security_org_enablement_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_org_enablement_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
include_all_properties boolean no When true, also determine if pushes are blocked if they contain secrets
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_advanced_security_org_enablement_update 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_org_enablement_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The new status
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_advanced_security_org_meter_usage_estimate_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_org_meter_usage_estimate_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
plan string no The plan to query.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_advanced_security_meter_usage_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_meter_usage_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
plan string no The plan to query. Plans supported: CodeSecurity and SecretProtection. This is a mandatory parameter.
billing_date string no The date to query, or if not provided, today
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_advanced_security_project_enablement_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_project_enablement_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
include_all_properties boolean no When true, also determine if pushes are blocked if they contain secrets
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_advanced_security_project_enablement_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_project_enablement_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The new status
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_advanced_security_project_meter_usage_estimate_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_project_meter_usage_estimate_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
plan string no query parameter `plan`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_advanced_security_repo_enablement_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_repo_enablement_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
repository string yes The name or ID of the repository
include_all_properties boolean no When true, will also determine if pushes are blocked when secrets are detected
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_advanced_security_repo_enablement_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_repo_enablement_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes new status
project string yes Project ID or project name
repository string yes Name or ID of the repository
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_advanced_security_repo_meter_usage_estimate_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_advanced_security_repo_meter_usage_estimate_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
repository string yes The name or ID of the repository
plan string no The plan to query.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_approvals_and_checks_pipeline_permissions_update_pipeline_permisions_for_resources 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_approvals_and_checks_pipeline_permissions_update_pipeline_permisions_for_resources --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_approvals_and_checks_pipeline_permissions_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_approvals_and_checks_pipeline_permissions_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
resource_type string yes path parameter `resourceType`.
resource_id string yes path parameter `resourceId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_approvals_and_checks_pipeline_permissions_update_pipeline_permisions_for_resource 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_approvals_and_checks_pipeline_permissions_update_pipeline_permisions_for_resource --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
resource_type string yes path parameter `resourceType`.
resource_id string yes path parameter `resourceId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_approvals_and_checks_check_configurations_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_approvals_and_checks_check_configurations_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
resource_type string no resource type
resource_id string no resource id
expand string no query parameter `$expand`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_approvals_and_checks_check_configurations_add 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_approvals_and_checks_check_configurations_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_approvals_and_checks_check_configurations_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_approvals_and_checks_check_configurations_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
id number yes path parameter `id`.
expand string no query parameter `$expand`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_approvals_and_checks_check_configurations_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_approvals_and_checks_check_configurations_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes check configuration
project string yes Project ID or project name
id number yes check configuration id
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_approvals_and_checks_check_configurations_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_approvals_and_checks_check_configurations_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
id number yes check configuration id
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_approvals_and_checks_check_configurations_query 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_approvals_and_checks_check_configurations_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes List of resources.
project string yes Project ID or project name
expand string no The properties that should be expanded in the list of check configurations.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_approvals_and_checks_check_evaluations_evaluate 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_approvals_and_checks_check_evaluations_evaluate --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
expand string no query parameter `$expand`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_approvals_and_checks_check_evaluations_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_approvals_and_checks_check_evaluations_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
check_suite_id string yes path parameter `checkSuiteId`.
expand string no query parameter `$expand`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_approvals_and_checks_check_evaluations_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_approvals_and_checks_check_evaluations_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
check_suite_id string yes path parameter `checkSuiteId`.
expand string no query parameter `$expand`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_approvals_and_checks_approvals_query 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_approvals_and_checks_approvals_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
approval_ids string no List of approval Ids to get.
expand string no Include these additional details in the returned objects.
assigned_to string no List of user Ids approvals assigned to. Accepts user Ids, user descriptors or user emails.
state string no Approval status. Returns approvals of any status if not provided
top number no Maximum number of approvals to get.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_approvals_and_checks_approvals_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_approvals_and_checks_approvals_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_approvals_and_checks_approvals_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_approvals_and_checks_approvals_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
approval_id string yes Id of the approval.
expand string no query parameter `$expand`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_artifacts_service_settings_get_global_permissions 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_service_settings_get_global_permissions --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
include_ids boolean no Set to true to add IdentityIds to the permission objects.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_service_settings_set_global_permissions 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_service_settings_set_global_permissions --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes New permissions for the organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_artifact_details_get_package_version_provenance 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_artifact_details_get_package_version_provenance --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or Id of the feed.
package_id string yes Id of the package (GUID Id, not name).
package_version_id string yes Id of the package version (GUID Id, not name).
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_artifact_details_query_package_version_metrics 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_artifact_details_query_package_version_metrics --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
feed_id string yes path parameter `feedId`.
package_id string yes path parameter `packageId`.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_artifact_details_get_package_versions 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_artifact_details_get_package_versions --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or Id of the feed.
package_id string yes Id of the package (GUID Id, not name).
project string yes Project ID or project name
include_urls boolean no True to include urls for each version. Default is true.
is_listed boolean no Only applicable for NuGet packages. If false, delisted package versions will be returned.
is_deleted boolean no If set specifies whether to return only deleted or non-deleted versions of packages in the response. Default is unset (return all versions).
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_artifact_details_get_package_version 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_artifact_details_get_package_version --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or Id of the feed.
package_id string yes Id of the package (GUID Id, not name).
package_version_id string yes Id of the package version (GUID Id, not name).
project string yes Project ID or project name
include_urls boolean no True to include urls for each version. Default is true.
is_listed boolean no Only applicable for NuGet packages. If false, delisted package versions will be returned.
is_deleted boolean no This does not have any effect on the requested package version, for other versions returned specifies whether to return only deleted or non-deleted versions of packages in the response. Default is unset (return all versions).
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_packages 10 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_packages --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or Id of the feed.
project string yes Project ID or project name
protocol_type string no Type of package (e.g. NuGet, npm, ...).
package_name_query string no Filter to packages matching this name.
include_urls boolean no True to return REST Urls with the response. Default is True.
top number no Get the top N packages.
skip number no Skip the first N packages.
include_all_versions boolean no True to return all versions of the package in the response. Default is false (latest version only).
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_recycle_bin_empty_recycle_bin 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_recycle_bin_empty_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or Id of the feed
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_package 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_package --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or Id of the feed.
package_id string yes The package Id (GUID Id, not the package name).
project string yes Project ID or project name
include_urls boolean no True to return REST Urls with the response. Default is True.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_package_versions 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_package_versions --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or Id of the feed.
package_id string yes The package Id (GUID Id, not the package name).
project string yes Project ID or project name
include_urls boolean no True to return REST Urls with the response. Default is True.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_package_version 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_recycle_bin_get_recycle_bin_package_version --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or Id of the feed.
package_id string yes The package Id (GUID Id, not the package name).
package_version_id string yes The package version Id 9guid Id, not the version string).
project string yes Project ID or project name
include_urls boolean no True to return REST Urls with the response. Default is True.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_change_tracking_get_package_changes 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_change_tracking_get_package_changes --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or Id of the feed.
project string yes Project ID or project name
continuation_token number no A continuation token which acts as a bookmark to a previously retrieved change. This token allows the user to continue retrieving changes in batches, picking up where the previous batch left off. If specified, all the changes that occur strictly after the token will be returned. If not specified or 0, iteration will start with the first change.
batch_size number no Number of package changes to fetch. The default value is 1000. The maximum value is 2000.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_artifact_details_query_package_metrics 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_artifact_details_query_package_metrics --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
feed_id string yes path parameter `feedId`.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_artifact_details_get_packages 18 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_artifact_details_get_packages --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or Id of the feed.
project string yes Project ID or project name
protocol_type string no One of the supported artifact package types.
package_name_query string no Filter to packages that contain the provided string. Characters in the string must conform to the package name constraints.
normalized_package_name string no [Obsolete] Used for legacy scenarios and may be removed in future versions.
include_urls boolean no True to return REST Urls with the response. Default is True.
include_all_versions boolean no True to return all versions of the package in the response. Default is false (latest version only).
is_listed boolean no Only applicable for NuGet packages, setting it for other package types will result in a 404. If false, delisted package versions will be returned. Use this to filter the response when includeAllVersions is set to true. Default is unset (do not return delisted packages).
get_top_package_versions boolean no Changes the behavior of $top and $skip to return all versions of each package up to $top. Must be used in conjunction with includeAllVersions=true
is_release boolean no Only applicable for Nuget packages. Use this to filter the response when includeAllVersions is set to true. Default is True (only return packages without prerelease versioning).
include_description boolean no Return the description for every version of each package in the response. Default is False.
top number no Get the top N packages (or package versions where getTopPackageVersions=true)
skip number no Skip the first N packages (or package versions where getTopPackageVersions=true)
include_deleted boolean no Return deleted or unpublished versions of packages in the response. Default is False.
is_cached boolean no [Obsolete] Used for legacy scenarios and may be removed in future versions.
direct_upstream_id string no Filter results to return packages from a specific upstream.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_artifact_details_get_package 11 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_artifact_details_get_package --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or Id of the feed.
package_id string yes The package Id (GUID Id, not the package name).
project string yes Project ID or project name
include_all_versions boolean no True to return all versions of the package in the response. Default is false (latest version only).
include_urls boolean no True to return REST Urls with the response. Default is True.
is_listed boolean no Only applicable for NuGet packages, setting it for other package types will result in a 404. If false, delisted package versions will be returned. Use this to filter the response when includeAllVersions is set to true. Default is unset (do not return delisted packages).
is_release boolean no Only applicable for Nuget packages. Use this to filter the response when includeAllVersions is set to true. Default is True (only return packages without prerelease versioning).
include_deleted boolean no Return deleted or unpublished versions of packages in the response. Default is False.
include_description boolean no Return the description for every version of each package in the response. Default is False.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_feed_management_get_feed_permissions 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_feed_management_get_feed_permissions --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or Id of the feed.
project string yes Project ID or project name
include_ids boolean no True to include user Ids in the response. Default is false.
exclude_inherited_permissions boolean no True to only return explicitly set permissions on the feed. Default is false.
identity_descriptor string no Filter permissions to the provided identity.
include_deleted_feeds boolean no If includeDeletedFeeds is true, then feedId must be specified by name and not by Guid.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_feed_management_set_feed_permissions 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_feed_management_set_feed_permissions --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Permissions to set.
feed_id string yes Name or Id of the feed.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_retention_policies_get_retention_policy 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_retention_policies_get_retention_policy --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_retention_policies_set_retention_policy 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_retention_policies_set_retention_policy --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Feed retention policy.
feed_id string yes Name or ID of the feed.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_retention_policies_delete_retention_policy 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_retention_policies_delete_retention_policy --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_feed_management_get_feed_views 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_feed_management_get_feed_views --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or Id of the feed.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_feed_management_create_feed_view 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_feed_management_create_feed_view --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes View to be created.
feed_id string yes Name or Id of the feed.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_feed_management_get_feed_view 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_feed_management_get_feed_view --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or Id of the feed.
view_id string yes Name or Id of the view.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_feed_management_update_feed_view 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_feed_management_update_feed_view --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes New settings to apply to the specified view.
feed_id string yes Name or Id of the feed.
view_id string yes Name or Id of the view.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_feed_management_delete_feed_view 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_feed_management_delete_feed_view --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or Id of the feed.
view_id string yes Name or Id of the view.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_change_tracking_get_feed_changes 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_change_tracking_get_feed_changes --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
include_deleted boolean no If true, get changes for all feeds including deleted feeds. The default value is false.
continuation_token number no A continuation token which acts as a bookmark to a previously retrieved change. This token allows the user to continue retrieving changes in batches, picking up where the previous batch left off. If specified, all the changes that occur strictly after the token will be returned. If not specified or 0, iteration will start with the first change.
batch_size number no Number of package changes to fetch. The default value is 1000. The maximum value is 2000.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_change_tracking_get_feed_change 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_change_tracking_get_feed_change --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_feed_recycle_bin_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_feed_recycle_bin_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_feed_recycle_bin_restore_deleted_feed 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_feed_recycle_bin_restore_deleted_feed --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
feed_id string yes Name or Id of the feed.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_feed_recycle_bin_permanent_delete_feed 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_feed_recycle_bin_permanent_delete_feed --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or Id of the feed.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_feed_management_get_feeds 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_feed_management_get_feeds --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
feed_role string no Filter by this role, either Administrator(4), Contributor(3), or Reader(2) level permissions.
include_deleted_upstreams boolean no Include upstreams that have been deleted in the response.
include_urls boolean no Resolve names if true
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_feed_management_create_feed 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_feed_management_create_feed --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes A JSON object containing both required and optional attributes for the feed. Name is the only required value.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_feed_management_get_feed 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_feed_management_get_feed --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or Id of the feed.
project string yes Project ID or project name
include_deleted_upstreams boolean no Include upstreams that have been deleted in the response.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_feed_management_update_feed 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_feed_management_update_feed --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes A JSON object containing the feed settings to be updated.
feed_id string yes Name or Id of the feed.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_feed_management_delete_feed 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_feed_management_delete_feed --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or Id of the feed.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_artifact_details_get_badge 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_artifact_details_get_badge --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or Id of the feed.
package_id string yes Id of the package (GUID Id, not name).
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_provenance_create_session 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_provenance_create_session --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The feed and metadata for the session
protocol string yes The protocol that the session will target
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_cargo_get_package_version_from_recycle_bin 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_cargo_get_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_cargo_restore_package_version_from_recycle_bin 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_cargo_restore_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Set the 'Deleted' state to 'false' to restore the package to its feed.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_cargo_delete_package_version_from_recycle_bin 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_cargo_delete_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_cargo_update_recycle_bin_package_versions 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_cargo_update_recycle_bin_package_versions --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Information about the packages to update, the operation to perform, and its associated data. <c>Operation</c> must be <c>PermanentDelete</c> or <c>RestoreToFeed</c>
feed_id string yes Feed which contains the packages to update.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_cargo_get_package_version 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_cargo_get_package_version --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
show_deleted boolean no True to show information for deleted package versions.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_cargo_update_package_version 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_cargo_update_package_version --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Details to be updated.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_cargo_delete_package_version 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_cargo_delete_package_version --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package to delete.
package_version string yes Version of the package to delete.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_cargo_get_upstreaming_behavior 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_cargo_get_upstreaming_behavior --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed string yes The name or id of the feed
package_name string yes The name of the package
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_cargo_set_upstreaming_behavior 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_cargo_set_upstreaming_behavior --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed string yes The name or id of the feed
package_name string yes The name of the package
body object yes The behavior to apply to the package within the scope of the feed
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_cargo_update_package_versions 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_cargo_update_package_versions --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Information about the packages to update, the operation to perform, and its associated data.
feed_id string yes Name or ID of the feed.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_maven_update_package_versions 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_maven_update_package_versions --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Information about the packages to update, the operation to perform, and its associated data.
feed_id string yes Feed which contains the packages to update.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_maven_download_package 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_maven_download_package --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
group_id string yes GroupId of the maven package
artifact_id string yes ArtifactId of the maven package
version string yes Version of the package
file_name string yes File name to download
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_maven_get_package_version_from_recycle_bin 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_maven_get_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed string yes Name or ID of the feed.
group_id string yes Group ID of the package.
artifact_id string yes Artifact ID of the package.
version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_maven_restore_package_version_from_recycle_bin 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_maven_restore_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Set the 'Deleted' property to false to restore the package.
feed string yes Name or ID of the feed.
group_id string yes Group ID of the package.
artifact_id string yes Artifact ID of the package.
version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_maven_delete_package_version_from_recycle_bin 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_maven_delete_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed string yes Name or ID of the feed.
group_id string yes Group ID of the package.
artifact_id string yes Artifact ID of the package.
version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_maven_update_recycle_bin_packages 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_maven_update_recycle_bin_packages --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Information about the packages to update, the operation to perform, and its associated data.
feed string yes path parameter `feed`.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_maven_get_upstreaming_behavior 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_maven_get_upstreaming_behavior --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed string yes The name or id of the feed
group_id string yes The group id of the package
artifact_id string yes The artifact id of the package
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_maven_set_upstreaming_behavior 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_maven_set_upstreaming_behavior --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed string yes The name or id of the feed
group_id string yes path parameter `groupId`.
artifact_id string yes path parameter `artifactId`.
body object yes The behavior to apply to the package within the scope of the feed
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_maven_get_package_version 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_maven_get_package_version --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed string yes Name or ID of the feed.
group_id string yes Group ID of the package.
artifact_id string yes Artifact ID of the package.
version string yes Version of the package.
project string yes Project ID or project name
show_deleted boolean no True to show information for deleted packages.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_maven_update_package_version 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_maven_update_package_version --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Details to be updated.
feed string yes Name or ID of the feed.
group_id string yes Group ID of the package.
artifact_id string yes Artifact ID of the package.
version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_maven_delete_package_version 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_maven_delete_package_version --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed string yes Name or ID of the feed.
group_id string yes Group ID of the package.
artifact_id string yes Artifact ID of the package.
version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_validate_custom_public_upstream_source 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_validate_custom_public_upstream_source --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The upstream location (https URI) and package name to validate
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_version 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_version --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_scope string yes Scope of the package (the 'scope' part of @scope/name).
unscoped_package_name string yes Name of the package (the 'name' part of @scope/name).
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_update_scoped_package 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_update_scoped_package --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Updated state for the package version.
feed_id string yes Name or ID of the feed.
package_scope string yes path parameter `packageScope`.
unscoped_package_name string yes Name of the package (the 'name' part of @scope/name).
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_unpublish_scoped_package 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_unpublish_scoped_package --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_scope string yes Scope of the package (the 'scope' part of @scope/name).
unscoped_package_name string yes Name of the package (the 'name' part of @scope/name).
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_update_recycle_bin_packages 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_update_recycle_bin_packages --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Information about the packages to update, the operation to perform, and its associated data.
feed_id string yes Name or ID of the feed.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_version_from_recycle_bin 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_scope string yes Scope of the package (the 'scope' part of @scope/name)
unscoped_package_name string yes Name of the package (the 'name' part of @scope/name).
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_restore_scoped_package_version_from_recycle_bin 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_restore_scoped_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
feed_id string yes Name or ID of the feed.
package_scope string yes Scope of the package (the 'scope' part of @scope/name).
unscoped_package_name string yes Name of the package (the 'name' part of @scope/name).
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_delete_scoped_package_version_from_recycle_bin 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_delete_scoped_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_scope string yes Scope of the package (the 'scope' part of @scope/name).
unscoped_package_name string yes Name of the package (the 'name' part of @scope/name).
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_get_package_version_from_recycle_bin 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_get_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_restore_package_version_from_recycle_bin 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_restore_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_delete_package_version_from_recycle_bin 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_delete_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_get_package_upstreaming_behavior 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_get_package_upstreaming_behavior --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes The name or id of the feed
package_scope string yes The scope of the package
unscoped_package_name string yes The name of the scoped package
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_set_scoped_upstreaming_behavior 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_set_scoped_upstreaming_behavior --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes The name or id of the feed
package_scope string yes The scope of the package
unscoped_package_name string yes The name of the scoped package
body object yes The behavior to apply to the scoped package within the scope of the feed
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_download_scoped_package 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_download_scoped_package --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_scope string yes Scope of the npm package (the @scope portion of @scope/packageName).
unscoped_package_name string yes Name of the package without the scope component.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_readme 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_readme --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_scope string yes Scope of the package (the 'scope' part of @scope\name)
unscoped_package_name string yes Name of the package (the 'name' part of @scope\name)
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_upstreaming_behavior 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_get_scoped_package_upstreaming_behavior --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes The name or id of the feed
package_name string yes The name of the package
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_set_upstreaming_behavior 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_set_upstreaming_behavior --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes The name or id of the feed
package_name string yes The name of the package
body object yes The behavior to apply to the scoped package within the scope of the feed
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_download_package 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_download_package --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_get_package_readme 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_get_package_readme --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_update_packages 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_update_packages --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Information about the packages to update, the operation to perform, and its associated data.
feed_id string yes Name or ID of the feed.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_get_package_version 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_get_package_version --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_update_package 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_update_package --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Updated state for the package version.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_npm_unpublish_package 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_npm_unpublish_package --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_nu_get_get_package_version_from_recycle_bin 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_nu_get_get_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_nu_get_restore_package_version_from_recycle_bin 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_nu_get_restore_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Set the 'Deleted' member to 'false' to apply the restore operation
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_nu_get_delete_package_version_from_recycle_bin 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_nu_get_delete_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_nu_get_update_recycle_bin_package_versions 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_nu_get_update_recycle_bin_package_versions --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Information about the packages to update, the operation to perform, and its associated data. <c>Operation</c> must be <c>PermanentDelete</c> or <c>RestoreToFeed</c>
feed_id string yes Name or ID of the feed.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_nu_get_get_upstreaming_behavior 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_nu_get_get_upstreaming_behavior --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes The name or id of the feed
package_name string yes The name of the package
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_nu_get_set_upstreaming_behavior 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_nu_get_set_upstreaming_behavior --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes The name or id of the feed
package_name string yes The name of the package
body object yes The behavior to apply to the package within the scope of the feed
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_nu_get_get_package_version 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_nu_get_get_package_version --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
show_deleted boolean no True to include deleted packages in the response.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_nu_get_update_package_version 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_nu_get_update_package_version --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes New state to apply to the referenced package.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package to update.
package_version string yes Version of the package to update.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_nu_get_delete_package_version 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_nu_get_delete_package_version --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package to delete.
package_version string yes Version of the package to delete.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_nu_get_download_package 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_nu_get_download_package --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
source_protocol_version string no Unused
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_nu_get_update_package_versions 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_nu_get_update_package_versions --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Information about the packages to update, the operation to perform, and its associated data.
feed_id string yes Name or ID of the feed.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_python_get_package_version_from_recycle_bin 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_python_get_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_python_restore_package_version_from_recycle_bin 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_python_restore_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Set the 'Deleted' state to 'false' to restore the package to its feed.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_python_delete_package_version_from_recycle_bin 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_python_delete_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_python_update_recycle_bin_package_versions 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_python_update_recycle_bin_package_versions --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Information about the packages to update, the operation to perform, and its associated data. <c>Operation</c> must be <c>PermanentDelete</c> or <c>RestoreToFeed</c>
feed_id string yes Feed which contains the packages to update.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_python_get_upstreaming_behavior 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_python_get_upstreaming_behavior --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes The name or id of the feed
package_name string yes The name of the package
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_python_set_upstreaming_behavior 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_python_set_upstreaming_behavior --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes The name or id of the feed
package_name string yes The name of the package
body object yes The behavior to apply to the package within the scope of the feed
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_python_get_package_version 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_python_get_package_version --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
show_deleted boolean no True to show information for deleted package versions.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_python_update_package_version 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_python_update_package_version --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Details to be updated.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_python_delete_package_version 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_python_delete_package_version --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_python_download_package 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_python_download_package --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
file_name string yes Name of the file in the package
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_python_update_package_versions 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_python_update_package_versions --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Information about the packages to update, the operation to perform, and its associated data.
feed_id string yes Name or ID of the feed.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_universal_get_package_version_from_recycle_bin 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_universal_get_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_universal_restore_package_version_from_recycle_bin 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_universal_restore_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Set the 'Deleted' property to 'false' to restore the package.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_universal_delete_package_version_from_recycle_bin 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_universal_delete_package_version_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_universal_update_recycle_bin_package_versions 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_universal_update_recycle_bin_package_versions --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Information about the packages to update, the operation to perform, and its associated data. <c>Operation</c> must be <c>PermanentDelete</c> or <c>RestoreToFeed</c>
feed_id string yes Feed which contains the packages to update.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_universal_get_package_version 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_universal_get_package_version --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
show_deleted boolean no True to show information for deleted versions
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_universal_update_package_version 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_universal_update_package_version --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_universal_delete_package_version 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_universal_delete_package_version --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
feed_id string yes Name or ID of the feed.
package_name string yes Name of the package.
package_version string yes Version of the package.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_artifacts_package_types_universal_update_package_versions 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_artifacts_package_types_universal_update_package_versions --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Information about the packages to update, the operation to perform, and its associated data.
feed_id string yes Name or ID of the feed.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_audit_actions_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_audit_actions_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
area_name string no Optional. Get actions scoped to area
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_audit_audit_log_query 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_audit_audit_log_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
start_time string no Start time of download window. Optional
end_time string no End time of download window. Optional
batch_size number no Max number of results to return. Optional
continuation_token string no Token used for returning next set of results from previous query. Optional
skip_aggregation boolean no Skips aggregating events and leaves them as individual entries instead. By default events are aggregated. Event types that are aggregated: AuditLog.AccessLog.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_audit_download_log_download_log 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_audit_download_log_download_log --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
format string no File format for download. Can be "json" or "csv".
start_time string no Start time of download window. Optional
end_time string no End time of download window. Optional
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_audit_streams_query_all_streams 2 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_audit_streams_query_all_streams --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_audit_streams_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_audit_streams_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Stream entry
days_to_backfill number no The number of days of previously recorded audit data that will be replayed into the stream. A value of zero will result in only new events being streamed.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_audit_streams_update_stream 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_audit_streams_update_stream --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Stream entry
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_audit_streams_query_stream_by_id 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_audit_streams_query_stream_by_id --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
stream_id number yes Id of stream entry to retrieve
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_audit_streams_update_status 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_audit_streams_update_status --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
stream_id number yes Id of stream entry to be updated
status string no Status of the stream
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
body object no Request body matching the official Azure DevOps Swagger schema.
azure-devops.azure_devops_audit_streams_delete 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_audit_streams_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
stream_id number yes Id of stream entry to delete
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_controllers_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_controllers_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
name string no query parameter `name`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_controllers_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_controllers_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
controller_id number yes path parameter `controllerId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_resource_usage_get 2 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_resource_usage_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_history_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_history_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
days_to_lookback number no query parameter `daysToLookback`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_badge_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_badge_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes The project ID or name.
definition_id number yes The ID of the definition.
branch_name string no The name of the branch.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_authorizedresources_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_authorizedresources_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
type string no query parameter `type`.
id string no query parameter `id`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_authorizedresources_authorize_project_resources 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_authorizedresources_authorize_project_resources --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_builds_list 23 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_builds_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definitions string no A comma-delimited list of definition IDs. If specified, filters to builds for these definitions.
queues string no A comma-delimited list of queue IDs. If specified, filters to builds that ran against these queues.
build_number string no If specified, filters to builds that match this build number. Append * to do a prefix search.
min_time string no If specified, filters to builds that finished/started/queued after this date based on the queryOrder specified.
max_time string no If specified, filters to builds that finished/started/queued before this date based on the queryOrder specified.
requested_for string no If specified, filters to builds requested for the specified user.
reason_filter string no If specified, filters to builds that match this reason.
status_filter string no If specified, filters to builds that match this status.
result_filter string no If specified, filters to builds that match this result.
tag_filters string no A comma-delimited list of tags. If specified, filters to builds that have the specified tags.
properties string no A comma-delimited list of properties to retrieve.
top number no The maximum number of builds to return.
continuation_token string no A continuation token, returned by a previous call to this method, that can be used to return the next set of builds.
max_builds_per_definition number no The maximum number of builds to return per definition.
deleted_filter string no Indicates whether to exclude, include, or only return deleted builds.
query_order string no The order in which builds should be returned.
branch_name string no If specified, filters to builds that built branches that built this branch.
build_ids string no A comma-delimited list that specifies the IDs of builds to retrieve.
repository_id string no If specified, filters to builds that built from this repository.
repository_type string no If specified, filters to builds that built from repositories of this type.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.8`.
azure-devops.azure_devops_build_builds_queue 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_builds_queue --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
ignore_warnings boolean no query parameter `ignoreWarnings`.
check_in_ticket string no query parameter `checkInTicket`.
source_build_id number no query parameter `sourceBuildId`.
definition_id number no Optional definition id to queue a build without a body. Ignored if there's a valid body
api_version string no Azure DevOps API version. Defaults to `7.2-preview.8`.
azure-devops.azure_devops_build_builds_update_builds 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_builds_update_builds --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The builds to update.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.8`.
azure-devops.azure_devops_build_builds_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_builds_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number yes path parameter `buildId`.
property_filters string no query parameter `propertyFilters`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.8`.
azure-devops.azure_devops_build_builds_update_build 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_builds_update_build --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The build.
project string yes Project ID or project name
build_id number yes The ID of the build.
retry boolean no query parameter `retry`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.8`.
azure-devops.azure_devops_build_builds_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_builds_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number yes The ID of the build.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.8`.
azure-devops.azure_devops_build_stage_timeline_get_build_stage_latest_timeline 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_stage_timeline_get_build_stage_latest_timeline --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number yes The ID of the build.
stage_name string yes The name of the stage to filter by.
change_id number no The change ID to filter by.
plan_id string no The ID of the plan.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_stage_timeline_get_build_stage_timeline 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_stage_timeline_get_build_stage_timeline --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number yes The ID of the build.
timeline_id string yes The ID of the timeline.
stage_name string yes The name of the stage to filter by.
change_id number no The change ID to filter by.
plan_id string no The ID of the plan.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_artifacts_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_artifacts_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number yes The ID of the build.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.5`.
azure-devops.azure_devops_build_artifacts_create 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_artifacts_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The artifact.
project string yes Project ID or project name
build_id number yes The ID of the build.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.5`.
azure-devops.azure_devops_build_attachments_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_attachments_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number yes The ID of the build.
type string yes The type of attachment.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_builds_get_build_changes 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_builds_get_build_changes --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number yes path parameter `buildId`.
continuation_token string no query parameter `continuationToken`.
top number no The maximum number of changes to return
include_source_change boolean no query parameter `includeSourceChange`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_builds_get_retention_leases_for_build 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_builds_get_retention_leases_for_build --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number yes The ID of the build.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_builds_get_build_logs 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_builds_get_build_logs --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number yes The ID of the build.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_builds_get_build_log 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_builds_get_build_log --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number yes The ID of the build.
log_id number yes The ID of the log file.
start_line number no The start line.
end_line number no The end line.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_properties_get_build_properties 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_properties_get_build_properties --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number yes The ID of the build.
filter string no A comma-delimited list of properties. If specified, filters to these specific properties.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_properties_update_build_properties 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_properties_update_build_properties --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes A json-patch document describing the properties to update.
project string yes Project ID or project name
build_id number yes The ID of the build.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_report_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_report_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number yes The ID of the build.
type string no query parameter `type`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_stages_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_stages_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
build_id number yes path parameter `buildId`.
stage_ref_name string yes path parameter `stageRefName`.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_tags_get_build_tags 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_tags_get_build_tags --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number yes The ID of the build.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_build_tags_add_build_tags 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_tags_add_build_tags --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The tags to add. Request body is composed directly from listed tags.
project string yes Project ID or project name
build_id number yes The ID of the build.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_build_tags_update_build_tags 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_tags_update_build_tags --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The tags to add/remove.
project string yes Project ID or project name
build_id number yes The ID of the build.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_build_tags_add_build_tag 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_tags_add_build_tag --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number yes The ID of the build.
tag string yes The tag to add.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
body object no Request body matching the official Azure DevOps Swagger schema.
azure-devops.azure_devops_build_tags_delete_build_tag 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_tags_delete_build_tag --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number yes The ID of the build.
tag string yes The tag to remove.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_build_timeline_get 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_timeline_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number yes path parameter `buildId`.
timeline_id string yes path parameter `timelineId`.
change_id number no query parameter `changeId`.
plan_id string no query parameter `planId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_build_builds_get_build_work_items_refs 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_builds_get_build_work_items_refs --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number yes The ID of the build.
top number no The maximum number of work items to return.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_builds_get_build_work_items_refs_from_commits 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_builds_get_build_work_items_refs_from_commits --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes A comma-delimited list of commit IDs.
project string yes Project ID or project name
build_id number yes The ID of the build.
top number no The maximum number of work items to return, or the number of commits to consider if no commit IDs are specified.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_attachments_get 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_attachments_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number yes The ID of the build.
timeline_id string yes The ID of the timeline.
record_id string yes The ID of the timeline record.
type string yes The type of the attachment.
name string yes The name of the attachment.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_builds_get_changes_between_builds 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_builds_get_changes_between_builds --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
from_build_id number no The ID of the first build.
to_build_id number no The ID of the last build.
top number no The maximum number of changes to return.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_definitions_list 19 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_definitions_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
name string no If specified, filters to definitions whose names match this pattern.
repository_id string no A repository ID. If specified, filters to definitions that use this repository.
repository_type string no If specified, filters to definitions that have a repository of this type.
query_order string no Indicates the order in which definitions should be returned.
top number no The maximum number of definitions to return.
continuation_token string no A continuation token, returned by a previous call to this method, that can be used to return the next set of definitions.
min_metrics_time string no If specified, indicates the date from which metrics should be included.
definition_ids string no A comma-delimited list that specifies the IDs of definitions to retrieve.
path string no If specified, filters to definitions under this folder.
built_after string no If specified, filters to definitions that have builds after this date.
not_built_after string no If specified, filters to definitions that do not have builds after this date.
include_all_properties boolean no Indicates whether the full definitions should be returned. By default, shallow representations of the definitions are returned.
include_latest_builds boolean no Indicates whether to return the latest and latest completed builds for this definition.
task_id_filter string no If specified, filters to definitions that use the specified task.
process_type number no If specified, filters to definitions with the given process type.
yaml_filename string no If specified, filters to YAML definitions that match the given filename. To use this filter includeAllProperties should be set to true
api_version string no Azure DevOps API version. Defaults to `7.2-preview.8`.
azure-devops.azure_devops_build_definitions_create 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_definitions_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The definition.
project string yes Project ID or project name
definition_to_clone_id number no query parameter `definitionToCloneId`.
definition_to_clone_revision number no query parameter `definitionToCloneRevision`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.8`.
azure-devops.azure_devops_build_templates_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_templates_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_build_templates_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_templates_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
template_id string yes The ID of the requested template.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_build_templates_save_template 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_templates_save_template --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The new version of the template.
project string yes Project ID or project name
template_id string yes The ID of the template.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_build_templates_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_templates_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
template_id string yes The ID of the template.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_build_tags_get_definition_tags 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_tags_get_definition_tags --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition_id number yes The ID of the definition.
revision number no The definition revision number. If not specified, uses the latest revision of the definition.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_build_tags_add_definition_tags 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_tags_add_definition_tags --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The tags to add.
project string yes Project ID or project name
definition_id number yes The ID of the definition.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_build_tags_update_definition_tags 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_tags_update_definition_tags --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The tags to add/remove.
project string yes Project ID or project name
definition_id number yes The ID of the definition.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_build_tags_add_definition_tag 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_tags_add_definition_tag --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition_id number yes The ID of the definition.
tag string yes The tag to add.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
body object no Request body matching the official Azure DevOps Swagger schema.
azure-devops.azure_devops_build_tags_delete_definition_tag 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_tags_delete_definition_tag --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition_id number yes The ID of the definition.
tag string yes The tag to remove.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_build_definitions_get 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_definitions_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition_id number yes The ID of the definition.
revision number no The revision number to retrieve. If this is not specified, the latest version will be returned.
min_metrics_time string no If specified, indicates the date from which metrics should be included.
property_filters string no A comma-delimited list of properties to include in the results.
include_latest_builds boolean no query parameter `includeLatestBuilds`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.8`.
azure-devops.azure_devops_build_definitions_update 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_definitions_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The new version of the definition. Its "Revision" property must match the existing definition for the update to be accepted.
project string yes Project ID or project name
definition_id number yes The ID of the definition.
secrets_source_definition_id number no Optional ID of the definition to use as the source for secrets.
secrets_source_definition_revision number no Optional revision of the secrets source definition.
cancel_paused_builds boolean no If true, cancels paused builds when the pipeline is being enabled from a paused or disabled state.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.8`.
azure-devops.azure_devops_build_definitions_restore_definition 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_definitions_restore_definition --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition_id number yes The identifier of the definition to restore.
deleted boolean no When false, restores a deleted definition.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.8`.
body object no Request body matching the official Azure DevOps Swagger schema.
azure-devops.azure_devops_build_definitions_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_definitions_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition_id number yes The ID of the definition.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.8`.
azure-devops.azure_devops_build_metrics_get_definition_metrics 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_metrics_get_definition_metrics --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition_id number yes The ID of the definition.
min_metrics_time string no The date from which to calculate metrics.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_properties_get_definition_properties 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_properties_get_definition_properties --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition_id number yes The ID of the definition.
filter string no A comma-delimited list of properties. If specified, filters to these specific properties.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_properties_update_definition_properties 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_properties_update_definition_properties --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes A json-patch document describing the properties to update.
project string yes Project ID or project name
definition_id number yes The ID of the definition.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_resources_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_resources_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition_id number yes path parameter `definitionId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_resources_authorize_definition_resources 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_resources_authorize_definition_resources --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
definition_id number yes path parameter `definitionId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_definitions_get_definition_revisions 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_definitions_get_definition_revisions --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition_id number yes The ID of the definition.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_build_yaml_get 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_yaml_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition_id number yes The ID of the definition.
revision number no The revision number to retrieve. If this is not specified, the latest version will be returned.
min_metrics_time string no If specified, indicates the date from which metrics should be included.
property_filters string no A comma-delimited list of properties to include in the results.
include_latest_builds boolean no query parameter `includeLatestBuilds`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_folders_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_folders_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The new version of the folder.
project string yes Project ID or project name
path string no The full path to the folder.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_folders_create 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_folders_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The folder.
project string yes Project ID or project name
path string no The full path of the folder.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_folders_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_folders_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
path string no The full path to the folder.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_folders_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_folders_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
path string yes The path to start with.
query_order string no The order in which folders should be returned.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_general_settings_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_general_settings_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_general_settings_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_general_settings_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_latest_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_latest_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition string yes definition name with optional leading folder path, or the definition id
branch_name string no optional parameter that indicates the specific branch to use. If not specified, the default branch is used.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_metrics_get_project_metrics 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_metrics_get_project_metrics --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
metric_aggregation_type string yes The aggregation type to use (hourly, daily).
min_metrics_time string no The date from which to calculate metrics.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_options_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_options_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_badge_get_build_badge_data 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_badge_get_build_badge_data --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
repo_type string yes The repository type.
repo_id string no The repository ID.
branch_name string no The branch name.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_retention_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_retention_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_retention_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_retention_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_leases_get_retention_leases_by_minimal_retention_leases 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_leases_get_retention_leases_by_minimal_retention_leases --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
leases_to_fetch string no List of JSON-serialized MinimalRetentionLeases separated by '|'
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_leases_add 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_leases_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_leases_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_leases_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
ids string no query parameter `ids`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_leases_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_leases_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
lease_id number yes path parameter `leaseId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_leases_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_leases_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The new data for the retention lease.
project string yes Project ID or project name
lease_id number yes The ID of the lease to update.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_settings_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_settings_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_settings_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_settings_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The new settings.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_status_get 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_status_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition string yes Either the definition name with optional leading folder path, or the definition id.
branch_name string no Only consider the most recent build for this branch. If not specified, the default branch is used.
stage_name string no Use this stage within the pipeline to render the status.
job_name string no Use this job within a stage of the pipeline to render the status.
configuration string no Use this job configuration to render the status
label string no Replaces the default text on the left side of the badge.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_tags_get_tags 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_tags_get_tags --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_build_tags_delete_tag 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_tags_delete_tag --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
tag string yes The tag to remove.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_build_builds_get_work_items_between_builds 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_builds_get_work_items_between_builds --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
from_build_id number no The ID of the first build.
to_build_id number no The ID of the last build.
top number no The maximum number of work items to return.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_build_source_providers_list_branches 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_source_providers_list_branches --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
provider_name string yes The name of the source provider.
service_endpoint_id string no If specified, the ID of the service endpoint to query. Can only be omitted for providers that do not use service endpoints, e.g. TFVC or TFGit.
repository string no The vendor-specific identifier or the name of the repository to get branches. Can only be omitted for providers that do not support multiple repositories.
branch_name string no If supplied, the name of the branch to check for specifically.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_source_providers_get_file_contents 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_source_providers_get_file_contents --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
provider_name string yes The name of the source provider.
service_endpoint_id string no If specified, the ID of the service endpoint to query. Can only be omitted for providers that do not use service endpoints, e.g. TFVC or TFGit.
repository string no If specified, the vendor-specific identifier or the name of the repository to get branches. Can only be omitted for providers that do not support multiple repositories.
commit_or_branch string no The identifier of the commit or branch from which a file's contents are retrieved.
path string no The path to the file to retrieve, relative to the root of the repository.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_source_providers_get_path_contents 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_source_providers_get_path_contents --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
provider_name string yes The name of the source provider.
service_endpoint_id string no If specified, the ID of the service endpoint to query. Can only be omitted for providers that do not use service endpoints, e.g. TFVC or TFGit.
repository string no If specified, the vendor-specific identifier or the name of the repository to get branches. Can only be omitted for providers that do not support multiple repositories.
commit_or_branch string no The identifier of the commit or branch from which a file's contents are retrieved.
path string no The path contents to list, relative to the root of the repository.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_source_providers_get_pull_request 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_source_providers_get_pull_request --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
provider_name string yes The name of the source provider.
pull_request_id string yes Vendor-specific id of the pull request.
repository_id string no Vendor-specific identifier or the name of the repository that contains the pull request.
service_endpoint_id string no If specified, the ID of the service endpoint to query. Can only be omitted for providers that do not use service endpoints, e.g. TFVC or TFGit.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_source_providers_list_repositories 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_source_providers_list_repositories --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
provider_name string yes The name of the source provider.
service_endpoint_id string no If specified, the ID of the service endpoint to query. Can only be omitted for providers that do not use service endpoints, e.g. TFVC or TFGit.
repository string no If specified, the vendor-specific identifier or the name of a single repository to get.
result_set string no 'top' for the repositories most relevant for the endpoint. If not set, all repositories are returned. Ignored if 'repository' is set.
page_results boolean no If set to true, this will limit the set of results and will return a continuation token to continue the query.
continuation_token string no When paging results, this is a continuation token, returned by a previous call to this method, that can be used to return the next set of repositories.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_source_providers_list_webhooks 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_source_providers_list_webhooks --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
provider_name string yes The name of the source provider.
service_endpoint_id string no If specified, the ID of the service endpoint to query. Can only be omitted for providers that do not use service endpoints, e.g. TFVC or TFGit.
repository string no If specified, the vendor-specific identifier or the name of the repository to get webhooks. Can only be omitted for providers that do not support multiple repositories.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_source_providers_restore_webhooks 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_source_providers_restore_webhooks --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The types of triggers to restore webhooks for.
project string yes Project ID or project name
provider_name string yes The name of the source provider.
service_endpoint_id string no If specified, the ID of the service endpoint to query. Can only be omitted for providers that do not use service endpoints, e.g. TFVC or TFGit.
repository string no If specified, the vendor-specific identifier or the name of the repository to get webhooks. Can only be omitted for providers that do not support multiple repositories.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_build_source_providers_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_build_source_providers_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_core_processes_list 2 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_core_processes_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_core_processes_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_core_processes_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes ID for a process.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_core_projects_list 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_core_projects_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
state_filter string no Filter on team projects in a specific team project state (default: WellFormed).
top number no query parameter `$top`.
skip number no query parameter `$skip`.
continuation_token number no Pointer that shows how many projects already been fetched.
get_default_team_image_url boolean no query parameter `getDefaultTeamImageUrl`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_core_projects_create 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_core_projects_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The project to create.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_core_projects_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_core_projects_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project_id string yes path parameter `projectId`.
include_capabilities boolean no Include capabilities (such as source control) in the team project result (default: false).
include_history boolean no Search within renamed projects (that had such name in the past).
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_core_projects_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_core_projects_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The updates for the project. The state must be set to wellFormed to restore the project.
project_id string yes The project id of the project to update.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_core_projects_delete 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_core_projects_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project_id string yes The project id of the project to delete.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_core_avatar_set_project_avatar 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_core_avatar_set_project_avatar --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The avatar blob data object to upload.
project_id string yes The ID or name of the project.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_core_avatar_remove_project_avatar 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_core_avatar_remove_project_avatar --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project_id string yes The ID or name of the project.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_core_categorized_teams_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_core_categorized_teams_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project_id string yes The name or ID (GUID) of the team project containing the teams to retrieve.
expand_identity boolean no A value indicating whether or not to expand Identity information in the result WebApiTeam object.
top number no Maximum number of teams to return.
skip number no Number of teams to skip.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_core_projects_get_project_properties 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_core_projects_get_project_properties --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project_id string yes The team project ID.
keys string no A comma-delimited string of team project property names. Wildcard characters ("?" and "*") are supported. If no key is specified, all properties will be returned.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_core_projects_set_project_properties 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_core_projects_set_project_properties --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project_id string yes The team project ID.
body object yes A JSON Patch document that represents an array of property operations. See RFC 6902 for more details on JSON Patch. The accepted operation verbs are Add and Remove, where Add is used for both creating and updating properties. The path consists of a forward slash and a property name.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_core_teams_get_teams 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_core_teams_get_teams --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project_id string yes path parameter `projectId`.
mine boolean no If true return all the teams requesting user is member, otherwise return all the teams user has read access.
top number no Maximum number of teams to return.
skip number no Number of teams to skip.
expand_identity boolean no A value indicating whether or not to expand Identity information in the result WebApiTeam object.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_core_teams_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_core_teams_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The team data used to create the team.
project_id string yes The name or ID (GUID) of the team project in which to create the team.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_core_teams_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_core_teams_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project_id string yes The name or ID (GUID) of the team project containing the team.
team_id string yes The name or ID (GUID) of the team.
expand_identity boolean no A value indicating whether or not to expand Identity information in the result WebApiTeam object.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_core_teams_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_core_teams_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project_id string yes The name or ID (GUID) of the team project containing the team to update.
team_id string yes The name of ID of the team to update.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_core_teams_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_core_teams_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project_id string yes The name or ID (GUID) of the team project containing the team to delete.
team_id string yes The name or ID of the team to delete.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_core_teams_get_team_members_with_extended_properties 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_core_teams_get_team_members_with_extended_properties --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project_id string yes The name or ID (GUID) of the team project the team belongs to.
team_id string yes The name or ID (GUID) of the team .
top number no query parameter `$top`.
skip number no query parameter `$skip`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_core_teams_get_all_teams 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_core_teams_get_all_teams --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
mine boolean no If true, then return all teams requesting user is member. Otherwise return all teams user has read access.
top number no Maximum number of teams to return.
skip number no Number of teams to skip.
expand_identity boolean no A value indicating whether or not to expand Identity information in the result WebApiTeam object.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_dashboard_widget_types_get_widget_types 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_dashboard_widget_types_get_widget_types --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
scope string no query parameter `$scope`.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_dashboard_widget_types_get_widget_metadata 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_dashboard_widget_types_get_widget_metadata --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
contribution_id string yes The ID of Contribution for the Widget
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_dashboard_dashboards_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_dashboard_dashboards_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_dashboard_dashboards_create 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_dashboard_dashboards_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The initial state of the dashboard
project string yes Project ID or project name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_dashboard_dashboards_replace_dashboards 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_dashboard_dashboards_replace_dashboards --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_dashboard_dashboards_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_dashboard_dashboards_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
dashboard_id string yes path parameter `dashboardId`.
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_dashboard_dashboards_replace_dashboard 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_dashboard_dashboards_replace_dashboard --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The Configuration of the dashboard to replace.
project string yes Project ID or project name
dashboard_id string yes ID of the dashboard to replace.
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_dashboard_dashboards_delete 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_dashboard_dashboards_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
dashboard_id string yes ID of the dashboard to delete.
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_dashboard_widgets_get_widgets 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_dashboard_widgets_get_widgets --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
dashboard_id string yes ID of the dashboard to read.
team string yes Team ID or team name
e_tag string no Dashboard Widgets Version
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_dashboard_widgets_create 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_dashboard_widgets_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes State of the widget to add
project string yes Project ID or project name
dashboard_id string yes ID of dashboard the widget will be added to.
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_dashboard_widgets_replace_widgets 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_dashboard_widgets_replace_widgets --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Revised state of widgets to store for the dashboard.
project string yes Project ID or project name
dashboard_id string yes ID of the Dashboard to modify.
team string yes Team ID or team name
e_tag string no Dashboard Widgets Version
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_dashboard_widgets_update_widgets 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_dashboard_widgets_update_widgets --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The set of widget states to update on the dashboard.
project string yes Project ID or project name
dashboard_id string yes ID of the Dashboard to modify.
team string yes Team ID or team name
e_tag string no Dashboard Widgets Version
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_dashboard_widgets_get_widget 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_dashboard_widgets_get_widget --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
dashboard_id string yes ID of the dashboard containing the widget.
widget_id string yes ID of the widget to read.
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_dashboard_widgets_replace_widget 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_dashboard_widgets_replace_widget --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes State to be written for the widget.
project string yes Project ID or project name
dashboard_id string yes ID of the dashboard containing the widget.
widget_id string yes ID of the widget to update.
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_dashboard_widgets_update_widget 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_dashboard_widgets_update_widget --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Description of the widget changes to apply. All non-null fields will be replaced.
project string yes Project ID or project name
dashboard_id string yes ID of the dashboard containing the widget.
widget_id string yes ID of the widget to update.
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_dashboard_widgets_delete 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_dashboard_widgets_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
dashboard_id string yes ID of the dashboard containing the widget.
widget_id string yes ID of the widget to update.
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_delegated_auth_registration_secret_create 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_delegated_auth_registration_secret_create --json
ParameterTypeRequiredDescription
registration_id string yes The registration id of the ADO OAuth App Registration
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
body object no Request body matching the official Azure DevOps Swagger schema.
azure-devops.azure_devops_delegated_auth_registration_secret_rotate_secret 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_delegated_auth_registration_secret_rotate_secret --json
ParameterTypeRequiredDescription
registration_id string yes The registration id of the ADO OAuth App Registration
secret_type string no The secret type to rotate, either primary or alternative
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
body object no Request body matching the official Azure DevOps Swagger schema.
azure-devops.azure_devops_distributed_task_elasticpools_list 2 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_elasticpools_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_elasticpools_create 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_elasticpools_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Elastic pool to create. Contains the properties necessary for configuring a new ElasticPool.
pool_name string no Name to use for the new TaskAgentPool
authorize_all_pipelines boolean no Setting to determine if all pipelines are authorized to use this TaskAgentPool by default.
auto_provision_project_pools boolean no Setting to automatically provision TaskAgentQueues in every project for the new pool.
project_id string no Optional: If provided, a new TaskAgentQueue will be created in the specified project.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_elasticpools_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_elasticpools_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
pool_id number yes Pool Id of the associated TaskAgentPool
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_elasticpools_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_elasticpools_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes New Elastic Pool settings data
pool_id number yes path parameter `poolId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_elasticpoollogs_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_elasticpoollogs_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
pool_id number yes Pool Id of the Elastic Pool
top number no Number of elastic pool logs to retrieve
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_nodes_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_nodes_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
pool_id number yes Pool id of the ElasticPool
state string no Optional: Filter to only retrieve ElasticNodes in the given ElasticNodeState
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_nodes_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_nodes_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
pool_id number yes path parameter `poolId`.
elastic_node_id number yes path parameter `elasticNodeId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_webhooks_receive_external_event 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_webhooks_receive_external_event --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
web_hook_id string yes The WebHook Name property of the WebHook service connection
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
body object no Request body matching the official Azure DevOps Swagger schema.
azure-devops.azure_devops_distributed_task_events_post_event 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_events_post_event --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The event data to be processed by the plan.
scope_identifier string yes The project GUID to scope the request
hub_name string yes The name of the server hub. Common examples: "build", "rm", "checks"
plan_id string yes The ID of the plan.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_oidctoken_create 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_oidctoken_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
scope_identifier string yes The project GUID to scope the request
hub_name string yes The name of the server hub. Common examples: "build", "rm", "checks"
plan_id string yes path parameter `planId`.
job_id string yes path parameter `jobId`.
service_connection_id string no query parameter `serviceConnectionId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_logs_create 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_logs_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes An object that contains information about log's path.
scope_identifier string yes The project GUID to scope the request
hub_name string yes The name of the server hub. Common examples: "build", "rm", "checks"
plan_id string yes The ID of the plan.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_logs_append_log_content 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_logs_append_log_content --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Raw payload: provide `content` as a string and optional `content_type`.
scope_identifier string yes The project GUID to scope the request
hub_name string yes The name of the server hub. Common examples: "build", "rm", "checks"
plan_id string yes The ID of the plan.
log_id number yes The ID of the log.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_records_update 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_records_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The array of timeline records to be updated.
scope_identifier string yes The project GUID to scope the request
hub_name string yes The name of the server hub. Common examples: "build", "rm", "checks"
plan_id string yes The ID of the plan.
timeline_id string yes The ID of the timeline.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_distributed_task_agentclouds_list 2 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_agentclouds_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_agentclouds_add 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_agentclouds_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_agentclouds_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_agentclouds_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
agent_cloud_id number yes path parameter `agentCloudId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_agentclouds_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_agentclouds_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
agent_cloud_id number yes path parameter `agentCloudId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_agentclouds_delete 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_agentclouds_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
agent_cloud_id number yes path parameter `agentCloudId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_requests_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_requests_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
agent_cloud_id number yes path parameter `agentCloudId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_agentcloudtypes_list 2 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_agentcloudtypes_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_pools_get_agent_pools_by_ids 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_pools_get_agent_pools_by_ids --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
pool_ids string no pool Ids to fetch
action_filter string no Filter by whether the calling user has use or manage permissions
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_pools_add 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_pools_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Details about the new agent pool
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_pools_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_pools_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
pool_id number yes An agent pool ID
properties string no Agent pool properties (comma-separated)
action_filter string no Filter by whether the calling user has use or manage permissions
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_pools_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_pools_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Updated agent pool details
pool_id number yes The agent pool to update
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_pools_delete 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_pools_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
pool_id number yes ID of the agent pool to delete
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_agents_list 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_agents_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
pool_id number yes The agent pool containing the agents
agent_name string no Filter on agent name
include_capabilities boolean no Whether to include the agents' capabilities in the response
include_assigned_request boolean no Whether to include details about the agents' current work
include_last_completed_request boolean no Whether to include details about the agents' most recent completed work
property_filters string no Filter which custom properties will be returned
demands string no Filter by demands the agents can satisfy
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_agents_add 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_agents_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Details about the agent being added
pool_id number yes The agent pool in which to add the agent
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_agents_get 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_agents_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
pool_id number yes The agent pool containing the agent
agent_id number yes The agent ID to get information about
include_capabilities boolean no Whether to include the agent's capabilities in the response
include_assigned_request boolean no Whether to include details about the agent's current work
include_last_completed_request boolean no Whether to include details about the agents' most recent completed work
property_filters string no Filter which custom properties will be returned
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_agents_replace_agent 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_agents_replace_agent --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Updated details about the replacing agent
pool_id number yes The agent pool to use
agent_id number yes The agent to replace
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_agents_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_agents_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Updated details about the agent
pool_id number yes The agent pool to use
agent_id number yes The agent to update
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_agents_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_agents_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
pool_id number yes The pool ID to remove the agent from
agent_id number yes The agent ID to remove
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_poolpermissions_has_pool_permissions 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_poolpermissions_has_pool_permissions --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
pool_id number yes Id of the pool to check
permissions number yes Permissions to check. Multiple permissions might be merged into single value using bitwise OR operator (e.g. AgentPoolPermissions.Manage | AgentPoolPermissions.View)
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_variablegroups_add 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_variablegroups_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_distributed_task_variablegroups_share_variable_group 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_variablegroups_share_variable_group --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
variable_group_id number no query parameter `variableGroupId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_distributed_task_variablegroups_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_variablegroups_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
group_id number yes Id of the variable group to update.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_distributed_task_variablegroups_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_variablegroups_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
group_id number yes Id of the variable group.
project_ids string no query parameter `projectIds`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_distributed_task_yamlschema_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_yamlschema_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
validate_task_names boolean no Whether the schema should validate that tasks are actually installed (useful for offline tools where you don't want validation).
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_deploymentgroups_list 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_deploymentgroups_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
name string no Name of the deployment group.
action_filter string no Get only deployment groups on which this action can be performed.
expand string no Include these additional details in the returned objects.
continuation_token string no Get deployment groups with names greater than this continuationToken lexicographically.
top number no Maximum number of deployment groups to return. Default is **1000**.
ids string no Comma separated list of IDs of the deployment groups.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_deploymentgroups_add 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_deploymentgroups_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Deployment group to create.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_deploymentgroups_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_deploymentgroups_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
deployment_group_id number yes ID of the deployment group.
action_filter string no Get the deployment group only if this action can be performed on it.
expand string no Include these additional details in the returned object.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_deploymentgroups_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_deploymentgroups_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Deployment group to update.
project string yes Project ID or project name
deployment_group_id number yes ID of the deployment group.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_deploymentgroups_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_deploymentgroups_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
deployment_group_id number yes ID of the deployment group to be deleted.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_targets_list 14 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_targets_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
deployment_group_id number yes ID of the deployment group.
tags string no Get only the deployment targets that contain all these comma separted list of tags.
name string no Name pattern of the deployment targets to return.
partial_name_match boolean no When set to true, treats **name** as pattern. Else treats it as absolute match. Default is **false**.
expand string no Include these additional details in the returned objects.
agent_status string no Get only deployment targets that have this status.
agent_job_result string no Get only deployment targets that have this last job result.
continuation_token string no Get deployment targets with names greater than this continuationToken lexicographically.
top number no Maximum number of deployment targets to return. Default is **1000**.
enabled boolean no Get only deployment targets that are enabled or disabled. Default is 'null' which returns all the targets.
property_filters string no query parameter `propertyFilters`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_targets_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_targets_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Deployment targets with tags to udpdate.
project string yes Project ID or project name
deployment_group_id number yes ID of the deployment group in which deployment targets are updated.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_targets_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_targets_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
deployment_group_id number yes ID of the deployment group to which deployment target belongs.
target_id number yes ID of the deployment target to return.
expand string no Include these additional details in the returned objects.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_targets_delete 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_targets_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
deployment_group_id number yes ID of the deployment group in which deployment target is deleted.
target_id number yes ID of the deployment target to delete.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_queues_get_agent_queues_for_pools 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_queues_get_agent_queues_for_pools --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
pool_ids string no A comma-separated list of pool ids to get the corresponding queues for
project string yes Project ID or project name
action_filter string no Filter by whether the calling user has use or manage permissions
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_queues_add 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_queues_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Details about the queue to create
project string yes Project ID or project name
authorize_pipelines boolean no Automatically authorize this queue when using YAML
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_queues_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_queues_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
queue_id number yes The agent queue to get information about
project string yes Project ID or project name
action_filter string no Filter by whether the calling user has use or manage permissions
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_queues_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_queues_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
queue_id number yes The agent queue to remove
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_securefiles_get_secure_files_by_names 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_securefiles_get_secure_files_by_names --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
secure_file_names string no A list of secure file Ids
include_download_tickets boolean no If includeDownloadTickets is true and the caller has permissions, a download ticket for each secure file is included in the response.
action_filter string no query parameter `actionFilter`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_securefiles_query 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_securefiles_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The main condition syntax is described [here](https://go.microsoft.com/fwlink/?linkid=842996). Use the *property('property-name')* function to access the value of the specified property of a secure file. It returns null if the property is not set. E.g. ``` and( eq( property('devices'), '2' ), in( property('provisioning profile type'), 'ad hoc', 'development' ) ) ```
project string yes Project ID or project name
name_pattern string no Name of the secure file to match. Can include wildcards to match multiple files.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_securefiles_update_secure_files 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_securefiles_update_secure_files --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes A list of secure file objects. Only three field must be populated Id, Name, and Properties. The rest of fields in the object are ignored.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_securefiles_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_securefiles_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
secure_file_id string yes The unique secure file Id
include_download_ticket boolean no If includeDownloadTicket is true and the caller has permissions, a download ticket is included in the response.
action_filter string no query parameter `actionFilter`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_securefiles_update_secure_file 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_securefiles_update_secure_file --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The secure file with updated name and/or properties
project string yes Project ID or project name
secure_file_id string yes The unique secure file Id
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_securefiles_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_securefiles_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
secure_file_id string yes The unique secure file Id
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_taskgroups_add 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_taskgroups_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Task group object to create.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_taskgroups_list 10 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_taskgroups_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
task_group_id string yes Id of the task group.
expanded boolean no 'true' to recursively expand task groups. Default is 'false'.
task_id_filter string no Guid of the taskId to filter.
deleted boolean no 'true'to include deleted task groups. Default is 'false'.
top number no Number of task groups to get.
continuation_token string no Gets the task groups after the continuation token provided.
query_order string no Gets the results in the defined order. Default is 'CreatedOnDescending'.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_taskgroups_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_taskgroups_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Task group to update.
project string yes Project ID or project name
task_group_id string yes Id of the task group to update.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_taskgroups_delete 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_taskgroups_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
task_group_id string yes Id of the task group to be deleted.
comment string no Comments to delete.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_distributed_task_variablegroups_get_variable_groups_by_id 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_variablegroups_get_variable_groups_by_id --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
group_ids string no Comma separated list of Ids of variable groups.
load_secrets boolean no Flag indicating if the secrets within variable groups should be loaded.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_distributed_task_variablegroups_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_distributed_task_variablegroups_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
group_id number yes Id of the variable group.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_environments_environments_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_environments_environments_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
name string no query parameter `name`.
continuation_token string no query parameter `continuationToken`.
top number no query parameter `$top`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_environments_environments_add 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_environments_environments_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Environment to create.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_environments_environmentaccesstoken_generate_environment_access_token 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_environments_environmentaccesstoken_generate_environment_access_token --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
environment_id number yes ID of the environment in which deployment targets are managed.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
body object no Request body matching the official Azure DevOps Swagger schema.
azure-devops.azure_devops_environments_environments_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_environments_environments_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
environment_id number yes ID of the environment.
expands string no Include these additional details in the returned objects.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_environments_environments_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_environments_environments_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Environment data to update.
project string yes Project ID or project name
environment_id number yes ID of the environment.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_environments_environments_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_environments_environments_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
environment_id number yes ID of the environment.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_environments_environmentdeploymentrecords_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_environments_environmentdeploymentrecords_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
environment_id number yes path parameter `environmentId`.
continuation_token string no query parameter `continuationToken`.
top number no query parameter `top`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_environments_kubernetes_add 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_environments_kubernetes_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
environment_id number yes path parameter `environmentId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_environments_kubernetes_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_environments_kubernetes_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
environment_id number yes path parameter `environmentId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_environments_kubernetes_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_environments_kubernetes_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
environment_id number yes path parameter `environmentId`.
resource_id number yes path parameter `resourceId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_environments_kubernetes_delete 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_environments_kubernetes_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
environment_id number yes path parameter `environmentId`.
resource_id number yes path parameter `resourceId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_environments_vmresource_list 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_environments_vmresource_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
environment_id number yes Id of the Environment
name string no Name of the Virtual Machine Resource
tags string no Tags of the Virtual Machine Resource
continuation_token string no Gets the Virtual Machine Resources after the continuation token provided.
top number no Number of Virtual Machine Resources to get. Default is 1000.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_environments_vmresource_add 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_environments_vmresource_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Properties to create Virtual Machine Resource
project string yes Project ID or project name
environment_id number yes Id of the Environment
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_environments_vmresource_replace_virtual_machine_resource 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_environments_vmresource_replace_virtual_machine_resource --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Properties to replace Virtual Machine Resource
project string yes Project ID or project name
environment_id number yes Id of the Environment
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_environments_vmresource_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_environments_vmresource_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Properties to update Virtual Machine Resource
project string yes Project ID or project name
environment_id number yes Id of the Environment
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_environments_pool_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_environments_pool_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
environment_id number yes path parameter `environmentId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_environments_vmresource_delete 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_environments_vmresource_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
environment_id number yes Id of the Environment
resource_id number yes Id of the Virtual Machine Resource
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_extension_management_installed_extensions_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_extension_management_installed_extensions_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
include_disabled_extensions boolean no If true (the default), include disabled extensions in the results.
include_errors boolean no If true, include installed extensions with errors.
asset_types string no Determines which files are returned in the files array. Provide the wildcard '*' to return all files, or a colon separated list to retrieve files with specific asset types.
include_installation_issues boolean no query parameter `includeInstallationIssues`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_extension_management_installed_extensions_update 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_extension_management_installed_extensions_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_extension_management_installed_extensions_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_extension_management_installed_extensions_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
publisher_name string yes Name of the publisher. Example: "fabrikam".
extension_name string yes Name of the extension. Example: "ops-tools".
asset_types string no Determines which files are returned in the files array. Provide the wildcard '*' to return all files, or a colon separated list to retrieve files with specific asset types.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_extension_management_installed_extensions_uninstall_extension_by_name 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_extension_management_installed_extensions_uninstall_extension_by_name --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
publisher_name string yes Name of the publisher. Example: "fabrikam".
extension_name string yes Name of the extension. Example: "ops-tools".
reason string no query parameter `reason`.
reason_code string no query parameter `reasonCode`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_extension_management_installed_extensions_install_extension_by_name 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_extension_management_installed_extensions_install_extension_by_name --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
publisher_name string yes Name of the publisher. Example: "fabrikam".
extension_name string yes Name of the extension. Example: "ops-tools".
version string yes path parameter `version`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
body object no Request body matching the official Azure DevOps Swagger schema.
azure-devops.azure_devops_favorite_favorites_get_favorites 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_favorite_favorites_get_favorites --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
artifact_type string no query parameter `artifactType`.
artifact_scope_type string no query parameter `artifactScopeType`.
artifact_scope_id string no query parameter `artifactScopeId`.
include_extended_details boolean no query parameter `includeExtendedDetails`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_favorite_favorites_create_favorite 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_favorite_favorites_create_favorite --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_favorite_favorites_get_favorite_by_id 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_favorite_favorites_get_favorite_by_id --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
favorite_id string yes path parameter `favoriteId`.
artifact_scope_type string no query parameter `artifactScopeType`.
artifact_type string no query parameter `artifactType`.
artifact_scope_id string no query parameter `artifactScopeId`.
include_extended_details boolean no query parameter `includeExtendedDetails`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_favorite_favorites_delete_favorite_by_id 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_favorite_favorites_delete_favorite_by_id --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
favorite_id string yes path parameter `favoriteId`.
artifact_type string no query parameter `artifactType`.
artifact_scope_type string no query parameter `artifactScopeType`.
artifact_scope_id string no query parameter `artifactScopeId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_repositories_get_deleted_repositories 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_repositories_get_deleted_repositories --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_refs_favorites_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_refs_favorites_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
repository_id string no The id of the repository.
identity_id string no The id of the identity whose favorites are to be retrieved. If null, the requesting identity is used.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_refs_favorites_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_refs_favorites_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The ref favorite to create.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_refs_favorites_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_refs_favorites_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
favorite_id number yes The Id of the requested ref favorite.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_refs_favorites_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_refs_favorites_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
favorite_id number yes The Id of the ref favorite to delete.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_refs_favorites_for_project_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_refs_favorites_for_project_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
identity_id string no query parameter `identityId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_policy_configurations_get 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_policy_configurations_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
repository_id string no The unique identifier of a specific repository to query policies for - when provided, returns policies that apply to this repository including inherited project-level policies.
ref_name string no The branch reference to query policies for (e.g., "refs/heads/main" for a specific branch or "~all" to get all policies affecting any branch in the repository) - determines which branch-specific policies are included in the results.
policy_type string no The type ID of a specific policy to filter by (e.g., "Minimum number of reviewers" or "File size restriction") - when specified, returns only policies of this particular type rather than all policy types.
top number no The maximum number of policy configurations to return in a single response - useful for limiting result size when dealing with projects that have many policies.
continuation_token string no A token returned in the x-ms-continuationtoken response header from a previous request when not all results were returned - use this token to retrieve the next page of results in the dataset.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_requests_get_pull_requests_by_project 20 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_requests_get_pull_requests_by_project --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
search_criteria_creator_id string no If set, search for pull requests that were created by this identity.
search_criteria_include_links boolean no Whether to include the _links field on the shallow references
search_criteria_labels array no If set, filters pull requests that have labels matching the specified label names.
search_criteria_max_time string no If specified, filters pull requests that created/closed before this date based on the queryTimeRangeType specified.
search_criteria_min_time string no If specified, filters pull requests that created/closed after this date based on the queryTimeRangeType specified.
search_criteria_query_time_range_type string no The type of time range which should be used for minTime and maxTime. Defaults to Created if unset.
search_criteria_repository_id string no If set, search for pull requests whose target branch is in this repository.
search_criteria_reviewer_id string no If set, search for pull requests that have this identity as a reviewer.
search_criteria_source_ref_name string no If set, search for pull requests from this branch.
search_criteria_source_repository_id string no If set, search for pull requests whose source branch is in this repository.
search_criteria_status string no If set, search for pull requests that are in this state. Defaults to Active if unset.
search_criteria_tags_filter_operator string no The operator used for filtering by labels. Defaults to And if unset. When And is used, pull requests must have all specified labels. When Or is used, pull requests must have at least one of the specified labels.
search_criteria_target_ref_name string no If set, search for pull requests into this branch.
search_criteria_title string no If set, filters pull requests that contain the specified text in the title.
max_comment_length number no Not used.
skip number no The number of pull requests to ignore. For example, to retrieve results 101-150, set top to 50 and skip to 100.
top number no The number of pull requests to retrieve.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_pull_requests_get_pull_request_by_id 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_requests_get_pull_request_by_id --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
pull_request_id number yes The ID of the pull request to retrieve.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_repositories_get_recycle_bin_repositories 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_repositories_get_recycle_bin_repositories --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_repositories_restore_repository_from_recycle_bin 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_repositories_restore_repository_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
repository_id string yes The ID of the repository.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_repositories_delete_repository_from_recycle_bin 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_repositories_delete_repository_from_recycle_bin --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
repository_id string yes The ID of the repository.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_repositories_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_repositories_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
include_links boolean no [optional] True to include reference links. The default value is false.
include_all_urls boolean no [optional] True to include all remote URLs. The default value is false.
include_hidden boolean no [optional] True to include hidden repositories. The default value is false.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_repositories_create 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_repositories_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Specify the repo name, team project and/or parent repository. Team project information can be omitted from gitRepositoryToCreate if the request is project-scoped (i.e., includes project Id).
project string yes Project ID or project name
source_ref string no [optional] Specify the source refs to use while creating a fork repo
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_repositories_get_repository 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_repositories_get_repository --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The name or ID of the repository.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_repositories_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_repositories_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Specify a new repo name or a new default branch of the repository
repository_id string yes The ID of the repository.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_repositories_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_repositories_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The ID of the repository.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_annotated_tags_create 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_annotated_tags_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Object containing details of tag to be created.
project string yes Project ID or project name
repository_id string yes ID or name of the repository.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_annotated_tags_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_annotated_tags_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
repository_id string yes ID or name of the repository.
object_id string yes ObjectId (Sha1Id) of tag to get.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_blobs_get_blobs_zip 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_blobs_get_blobs_zip --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Blob IDs (SHA1 hashes) to be returned in the zip file.
repository_id string yes The name or ID of the repository.
project string yes Project ID or project name
filename string no query parameter `filename`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_blobs_get_blob 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_blobs_get_blob --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The name or ID of the repository.
sha1 string yes SHA1 hash of the file. You can get the SHA1 of a file using the "Git/Items/Get Item" endpoint.
project string yes Project ID or project name
download boolean no If true, prompt for a download rather than rendering in a browser. Note: this value defaults to true if $format is zip
file_name string no Provide a fileName to use for a download.
format string no Options: json, zip, text, octetstream. If not set, defaults to the MIME type set in the Accept header.
resolve_lfs boolean no If true, try to resolve a blob to its LFS contents, if it's an LFS pointer file. Only compatible with octet-stream Accept headers or $format types
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_cherry_picks_get_cherry_pick_for_ref_name 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_cherry_picks_get_cherry_pick_for_ref_name --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
repository_id string yes ID of the repository.
ref_name string no The GitAsyncRefOperationParameters generatedRefName used for the cherry pick operation.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_cherry_picks_create 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_cherry_picks_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
repository_id string yes ID of the repository.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_cherry_picks_get_cherry_pick 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_cherry_picks_get_cherry_pick --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
cherry_pick_id number yes ID of the cherry pick.
repository_id string yes ID of the repository.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_commits_get_push_commits 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_commits_get_push_commits --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The id or friendly name of the repository. To use the friendly name, projectId must also be specified.
push_id number no The id of the push.
project string yes Project ID or project name
top number no The maximum number of commits to return ("get the top x commits").
skip number no The number of commits to skip.
include_links boolean no Set to false to avoid including REST Url links for resources. Defaults to true.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_commits_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_commits_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
commit_id string yes The id of the commit.
repository_id string yes The id or friendly name of the repository. To use the friendly name, projectId must also be specified.
project string yes Project ID or project name
change_count number no The number of changes to include in the result.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_commits_get_changes 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_commits_get_changes --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
commit_id string yes The id of the commit.
repository_id string yes The id or friendly name of the repository. To use the friendly name, projectId must also be specified.
project string yes Project ID or project name
top number no The maximum number of changes to return.
skip number no The number of changes to skip.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_statuses_list 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_statuses_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
commit_id string yes ID of the Git commit.
repository_id string yes ID of the repository.
project string yes Project ID or project name
top number no Optional. The number of statuses to retrieve. Default is 1000.
skip number no Optional. The number of statuses to ignore. Default is 0. For example, to retrieve results 101-150, set top to 50 and skip to 100.
latest_only boolean no The flag indicates whether to get only latest statuses grouped by `Context.Name` and `Context.Genre`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_statuses_create 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_statuses_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Git commit status object to create.
commit_id string yes ID of the Git commit.
repository_id string yes ID of the repository.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_commits_get_commits_batch 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_commits_get_commits_batch --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Search options
repository_id string yes The name or ID of the repository.
project string yes Project ID or project name
skip number no Number of commits to skip. The value cannot exceed 3,000,000.
top number no Maximum number of commits to return. The value cannot exceed 50,000.
include_statuses boolean no True to include additional commit status information.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_diffs_get 13 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_diffs_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The name or ID of the repository.
project string yes Project ID or project name
diff_common_commit boolean no If true, diff between common and target commits. If false, diff between base and target commits.
top number no Maximum number of changes to return. Defaults to 100.
skip number no Number of changes to skip
base_version string no Version string identifier (name of tag/branch, SHA1 of commit)
base_version_options string no Version options - Specify additional modifiers to version (e.g Previous)
base_version_type string no Version type (branch, tag, or commit). Determines how Id is interpreted
target_version string no Version string identifier (name of tag/branch, SHA1 of commit)
target_version_options string no Version options - Specify additional modifiers to version (e.g Previous)
target_version_type string no Version type (branch, tag, or commit). Determines how Id is interpreted
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_import_requests_query 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_import_requests_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
repository_id string yes The name or ID of the repository.
include_abandoned boolean no True to include abandoned import requests in the results.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_import_requests_create 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_import_requests_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The import request to create.
project string yes Project ID or project name
repository_id string yes The name or ID of the repository.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_import_requests_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_import_requests_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
repository_id string yes The name or ID of the repository.
import_request_id number yes The unique identifier for the import request.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_import_requests_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_import_requests_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The updated version of the import request. Currently, the only change allowed is setting the Status to Queued or Abandoned.
project string yes Project ID or project name
repository_id string yes The name or ID of the repository.
import_request_id number yes The unique identifier for the import request to update.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_items_list 15 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_items_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The name or ID of the repository.
project string yes Project ID or project name
scope_path string no The path scope. The default is null.
recursion_level string no The recursion level of this request. The default is 'none', no recursion.
include_content_metadata boolean no Set to true to include content metadata. Default is false.
latest_processed_change boolean no Set to true to include the latest changes. Default is false.
download boolean no Set to true to download the response as a file. Default is false.
include_links boolean no Set to true to include links to items. Default is false.
format string no If specified, this overrides the HTTP Accept request header to return either 'json' or 'zip'. If $format is specified, then api-version should also be specified as a query parameter.
version_descriptor_version string no Version string identifier (name of tag/branch, SHA1 of commit)
version_descriptor_version_options string no Version options - Specify additional modifiers to version (e.g Previous)
version_descriptor_version_type string no Version type (branch, tag, or commit). Determines how Id is interpreted
zip_for_unix boolean no Set to true to keep the file permissions for unix (and POSIX) systems like executables and symlinks
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_items_get_items_batch 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_items_get_items_batch --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request data attributes: ItemDescriptors, IncludeContentMetadata, LatestProcessedChange, IncludeLinks. ItemDescriptors: Collection of items to fetch, including path, version, and recursion level. IncludeContentMetadata: Whether to include metadata for all items LatestProcessedChange: Whether to include shallow ref to commit that last changed each item. IncludeLinks: Whether to include the _links field on the shallow references.
repository_id string yes The name or ID of the repository
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_attachments_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_attachments_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_attachments_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_attachments_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
file_name string yes The name of the attachment.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_attachments_create 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_attachments_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Raw payload: provide `content` as a string and optional `content_type`.
file_name string yes The name of the file.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_attachments_delete 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_attachments_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
file_name string yes The name of the attachment to delete.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_commits_get_pull_request_commits 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_commits_get_pull_request_commits --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes ID or name of the repository.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
top number no Maximum number of commits to return.
continuation_token string no The continuation token used for pagination.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_iterations_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_iterations_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes ID or name of the repository.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
include_commits boolean no If true, include the commits associated with each iteration in the response.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_pull_request_iterations_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_iterations_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes ID or name of the repository.
pull_request_id number yes ID of the pull request.
iteration_id number yes ID of the pull request iteration to return.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_pull_request_iteration_changes_get 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_iteration_changes_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
iteration_id number yes ID of the pull request iteration. <br /> Iteration one is the head of the source branch at the time the pull request is created and subsequent iterations are created when there are pushes to the source branch. Allowed values are between 1 and the maximum iteration on this pull request.
project string yes Project ID or project name
top number no Optional. The number of changes to retrieve. The default value is 100 and the maximum value is 2000.
skip number no Optional. The number of changes to ignore. For example, to retrieve changes 101-150, set top 50 and skip to 100.
compare_to number no ID of the pull request iteration to compare against. The default value is zero which indicates the comparison is made against the common commit between the source and target branches
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_commits_get_pull_request_iteration_commits 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_commits_get_pull_request_iteration_commits --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes ID or name of the repository.
pull_request_id number yes ID of the pull request.
iteration_id number yes ID of the iteration from which to get the commits.
project string yes Project ID or project name
top number no Maximum number of commits to return. The maximum number of commits that can be returned per batch is 500.
skip number no Number of commits to skip.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_iteration_statuses_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_iteration_statuses_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
iteration_id number yes ID of the pull request iteration.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_pull_request_iteration_statuses_create 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_iteration_statuses_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Pull request status to create.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
iteration_id number yes ID of the pull request iteration.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_pull_request_iteration_statuses_update 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_iteration_statuses_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Operations to apply to the pull request statuses in JSON Patch format.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
iteration_id number yes ID of the pull request iteration.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_pull_request_iteration_statuses_get 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_iteration_statuses_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
iteration_id number yes ID of the pull request iteration.
status_id number yes ID of the pull request status.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_pull_request_iteration_statuses_delete 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_iteration_statuses_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
iteration_id number yes ID of the pull request iteration.
status_id number yes ID of the pull request status.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_pull_request_labels_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_labels_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
project_id string no Project ID or project name.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_labels_create 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_labels_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Label to assign to the pull request.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
project_id string no Project ID or project name.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_labels_get 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_labels_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
label_id_or_name string yes The name or ID of the label requested.
project string yes Project ID or project name
project_id string no Project ID or project name.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_labels_delete 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_labels_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
label_id_or_name string yes The name or ID of the label requested.
project string yes Project ID or project name
project_id string no Project ID or project name.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_properties_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_properties_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_properties_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_properties_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Properties to add, replace or remove in JSON Patch format.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_reviewers_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_reviewers_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_reviewers_create_pull_request_reviewers 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_reviewers_create_pull_request_reviewers --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Reviewers to add to the pull request.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_reviewers_create_unmaterialized_pull_request_reviewer 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_reviewers_create_unmaterialized_pull_request_reviewer --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Reviewer to add to the pull request.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_reviewers_update_pull_request_reviewers 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_reviewers_update_pull_request_reviewers --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes IDs of the reviewers whose votes will be reset to zero
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_reviewers_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_reviewers_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
reviewer_id string yes ID of the reviewer.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_reviewers_create_pull_request_reviewer 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_reviewers_create_pull_request_reviewer --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Reviewer's vote.<br />If the reviewer's ID is included here, it must match the reviewerID parameter.<br />Reviewers can set their own vote with this method. When adding other reviewers, vote must be set to zero.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
reviewer_id string yes ID of the reviewer.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_reviewers_update_pull_request_reviewer 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_reviewers_update_pull_request_reviewer --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Reviewer data.<br />If the reviewer's ID is included here, it must match the reviewerID parameter.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
reviewer_id string yes ID of the reviewer.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_reviewers_delete 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_reviewers_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
reviewer_id string yes ID of the reviewer to remove.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_share_share_pull_request 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_share_share_pull_request --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
repository_id string yes ID of the git repository.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_statuses_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_statuses_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_pull_request_statuses_create 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_statuses_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Pull request status to create.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_pull_request_statuses_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_statuses_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Operations to apply to the pull request statuses in JSON Patch format.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_pull_request_statuses_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_statuses_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
status_id number yes ID of the pull request status.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_pull_request_statuses_delete 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_statuses_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request’s target branch.
pull_request_id number yes ID of the pull request.
status_id number yes ID of the pull request status.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_pull_request_threads_list 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_threads_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
iteration number no If specified, thread positions will be tracked using this iteration as the right side of the diff.
base_iteration number no If specified, thread positions will be tracked using this iteration as the left side of the diff.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_threads_create 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_threads_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The thread to create. Thread must contain at least one comment.
repository_id string yes Repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_threads_get 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_threads_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
thread_id number yes ID of the thread.
project string yes Project ID or project name
iteration number no If specified, thread position will be tracked using this iteration as the right side of the diff.
base_iteration number no If specified, thread position will be tracked using this iteration as the left side of the diff.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_threads_update 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_threads_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The thread content that should be updated.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
thread_id number yes ID of the thread to update.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_thread_comments_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_thread_comments_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
thread_id number yes ID of the thread.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_thread_comments_create 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_thread_comments_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The comment to create. Comments can be up to 150,000 characters.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
thread_id number yes ID of the thread that the desired comment is in.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_thread_comments_get 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_thread_comments_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
thread_id number yes ID of the thread that the desired comment is in.
comment_id number yes ID of the comment.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_thread_comments_update 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_thread_comments_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The comment content that should be updated. Comments can be up to 150,000 characters.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
thread_id number yes ID of the thread that the desired comment is in.
comment_id number yes ID of the comment to update.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_thread_comments_delete 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_thread_comments_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
thread_id number yes ID of the thread that the desired comment is in.
comment_id number yes ID of the comment.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_comment_likes_list 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_comment_likes_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
thread_id number yes The ID of the thread that contains the comment.
comment_id number yes The ID of the comment.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_comment_likes_create 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_comment_likes_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
thread_id number yes The ID of the thread that contains the comment.
comment_id number yes The ID of the comment.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
body object no Request body matching the official Azure DevOps Swagger schema.
azure-devops.azure_devops_git_pull_request_comment_likes_delete 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_comment_likes_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request.
thread_id number yes The ID of the thread that contains the comment.
comment_id number yes The ID of the comment.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_work_items_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_work_items_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes ID or name of the repository.
pull_request_id number yes ID of the pull request.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_request_query_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_request_query_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The list of queries to perform.
repository_id string yes ID of the repository.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_pull_requests_get_pull_requests 21 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_requests_get_pull_requests --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request's target branch.
project string yes Project ID or project name
search_criteria_creator_id string no If set, search for pull requests that were created by this identity.
search_criteria_include_links boolean no Whether to include the _links field on the shallow references
search_criteria_labels array no If set, filters pull requests that have labels matching the specified label names.
search_criteria_max_time string no If specified, filters pull requests that created/closed before this date based on the queryTimeRangeType specified.
search_criteria_min_time string no If specified, filters pull requests that created/closed after this date based on the queryTimeRangeType specified.
search_criteria_query_time_range_type string no The type of time range which should be used for minTime and maxTime. Defaults to Created if unset.
search_criteria_repository_id string no If set, search for pull requests whose target branch is in this repository.
search_criteria_reviewer_id string no If set, search for pull requests that have this identity as a reviewer.
search_criteria_source_ref_name string no If set, search for pull requests from this branch.
search_criteria_source_repository_id string no If set, search for pull requests whose source branch is in this repository.
search_criteria_status string no If set, search for pull requests that are in this state. Defaults to Active if unset.
search_criteria_tags_filter_operator string no The operator used for filtering by labels. Defaults to And if unset. When And is used, pull requests must have all specified labels. When Or is used, pull requests must have at least one of the specified labels.
search_criteria_target_ref_name string no If set, search for pull requests into this branch.
search_criteria_title string no If set, filters pull requests that contain the specified text in the title.
max_comment_length number no Not used.
skip number no The number of pull requests to ignore. For example, to retrieve results 101-150, set top to 50 and skip to 100.
top number no The number of pull requests to retrieve.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_pull_requests_create 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_requests_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The pull request to create.
repository_id string yes The repository ID of the pull request's target branch.
project string yes Project ID or project name
supports_iterations boolean no If true, subsequent pushes to the pull request will be individually reviewable. Set this to false for large pull requests for performance reasons if this functionality is not needed.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_pull_requests_get_pull_request 10 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_requests_get_pull_request --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes The ID of the pull request to retrieve.
project string yes Project ID or project name
max_comment_length number no Not used.
skip number no Not used.
top number no Not used.
include_commits boolean no If true, the pull request will be returned with the associated commits.
include_work_item_refs boolean no If true, the pull request will be returned with the associated work item references.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_pull_requests_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pull_requests_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The pull request content that should be updated.
repository_id string yes The repository ID of the pull request's target branch.
pull_request_id number yes ID of the pull request to update.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_pushes_list 12 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pushes_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The name or ID of the repository.
project string yes Project ID or project name
skip number no Number of pushes to skip.
top number no Number of pushes to return.
search_criteria_from_date string no Search criteria attributes: fromDate, toDate, pusherId, refName, includeRefUpdates or includeLinks. fromDate: Start date to search from. toDate: End date to search to. pusherId: Identity of the person who submitted the push. refName: Branch name to consider. includeRefUpdates: If true, include the list of refs that were updated by the push. includeLinks: Whether to include the _links field on the shallow references.
search_criteria_include_links boolean no Whether to include the _links field on the shallow references
search_criteria_include_ref_updates boolean no Search criteria attributes: fromDate, toDate, pusherId, refName, includeRefUpdates or includeLinks. fromDate: Start date to search from. toDate: End date to search to. pusherId: Identity of the person who submitted the push. refName: Branch name to consider. includeRefUpdates: If true, include the list of refs that were updated by the push. includeLinks: Whether to include the _links field on the shallow references.
search_criteria_pusher_id string no Search criteria attributes: fromDate, toDate, pusherId, refName, includeRefUpdates or includeLinks. fromDate: Start date to search from. toDate: End date to search to. pusherId: Identity of the person who submitted the push. refName: Branch name to consider. includeRefUpdates: If true, include the list of refs that were updated by the push. includeLinks: Whether to include the _links field on the shallow references.
search_criteria_ref_name string no Search criteria attributes: fromDate, toDate, pusherId, refName, includeRefUpdates or includeLinks. fromDate: Start date to search from. toDate: End date to search to. pusherId: Identity of the person who submitted the push. refName: Branch name to consider. includeRefUpdates: If true, include the list of refs that were updated by the push. includeLinks: Whether to include the _links field on the shallow references.
search_criteria_to_date string no Search criteria attributes: fromDate, toDate, pusherId, refName, includeRefUpdates or includeLinks. fromDate: Start date to search from. toDate: End date to search to. pusherId: Identity of the person who submitted the push. refName: Branch name to consider. includeRefUpdates: If true, include the list of refs that were updated by the push. includeLinks: Whether to include the _links field on the shallow references.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_git_pushes_create 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pushes_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
repository_id string yes The name or ID of the repository.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_git_pushes_get 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_pushes_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The name or ID of the repository.
push_id number yes ID of the push.
project string yes Project ID or project name
include_commits number no The number of commits to include in the result.
include_ref_updates boolean no If true, include the list of refs that were updated by the push.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_git_refs_list 14 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_refs_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The name or ID of the repository.
project string yes Project ID or project name
filter string no [optional] A filter to apply to the refs (starts with).
include_links boolean no [optional] Specifies if referenceLinks should be included in the result. default is false.
include_statuses boolean no [optional] Includes up to the first 1000 commit statuses for each ref. The default value is false.
include_my_branches boolean no [optional] Includes only branches that the user owns, the branches the user favorites, and the default branch. The default value is false. Cannot be combined with the filter parameter.
latest_statuses_only boolean no [optional] True to include only the tip commit status for each ref. This option requires `includeStatuses` to be true. The default value is false.
peel_tags boolean no [optional] Annotated tags will populate the PeeledObjectId property. default is false.
filter_contains string no [optional] A filter to apply to the refs (contains).
top number no [optional] Maximum number of refs to return. It cannot be bigger than 1000. If it is not provided but continuationToken is, top will default to 100.
continuation_token string no The continuation token used for pagination.
include_target_branches boolean no [optional] Includes target branches defined by patterns in pull_request_targets.yml.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_refs_update_refs 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_refs_update_refs --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes List of ref updates to attempt to perform
repository_id string yes The name or ID of the repository.
project string yes Project ID or project name
project_id string no ID or name of the team project. Optional if specifying an ID for repository.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_refs_update_ref 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_refs_update_ref --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The ref update action (lock/unlock) to perform
repository_id string yes The name or ID of the repository.
filter string no The name of the branch to lock/unlock
project string yes Project ID or project name
project_id string no ID or name of the team project. Optional if specifying an ID for repository.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_reverts_get_revert_for_ref_name 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_reverts_get_revert_for_ref_name --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
repository_id string yes ID of the repository.
ref_name string no The GitAsyncRefOperationParameters generatedRefName used for the revert operation.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_reverts_create 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_reverts_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
repository_id string yes ID of the repository.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_reverts_get_revert 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_reverts_get_revert --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
revert_id number yes ID of the revert operation.
repository_id string yes ID of the repository.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_stats_list 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_stats_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes The name or ID of the repository.
project string yes Project ID or project name
base_version_descriptor_version string no Version string identifier (name of tag/branch, SHA1 of commit)
base_version_descriptor_version_options string no Version options - Specify additional modifiers to version (e.g Previous)
base_version_descriptor_version_type string no Version type (branch, tag, or commit). Determines how Id is interpreted
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_git_suggestions_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_suggestions_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes ID of the git repository.
project string yes Project ID or project name
prefer_compare_branch boolean no If true, prefer the compare branch over the default branch as target branch for pull requests.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_trees_get 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_trees_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_id string yes Repository Id.
sha1 string yes SHA1 hash of the tree object.
project string yes Project ID or project name
project_id string no Project Id.
recursive boolean no Search recursively. Include trees underneath this tree. Default is false.
file_name string no Name to use if a .zip file is returned. Default is the object ID.
format string no Use "zip". Defaults to the MIME type set in the Accept header.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_merge_bases_list 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_merge_bases_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_name_or_id string yes ID or name of the local repository.
commit_id string yes First commit, usually the tip of the target branch of the potential merge.
other_commit_id string no Other commit, usually the tip of the source branch of the potential merge.
project string yes Project ID or project name
other_collection_id string no The collection ID where otherCommitId lives.
other_repository_id string no The repository ID where otherCommitId lives.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_forks_get_fork_sync_requests 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_forks_get_fork_sync_requests --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_name_or_id string yes The name or ID of the repository.
project string yes Project ID or project name
include_abandoned boolean no True to include abandoned requests.
include_links boolean no True to include links.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_forks_create_fork_sync_request 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_forks_create_fork_sync_request --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Source repository and ref mapping.
repository_name_or_id string yes The name or ID of the repository.
project string yes Project ID or project name
include_links boolean no True to include links
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_forks_get_fork_sync_request 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_forks_get_fork_sync_request --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_name_or_id string yes The name or ID of the repository.
fork_sync_operation_id number yes OperationId of the sync request.
project string yes Project ID or project name
include_links boolean no True to include links.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_forks_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_forks_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
repository_name_or_id string yes The name or ID of the repository.
collection_id string yes Team project collection ID.
project string yes Project ID or project name
include_links boolean no True to include links.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_merges_create 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_merges_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Parents commitIds and merge commit messsage.
project string yes Project ID or project name
repository_name_or_id string yes The name or ID of the repository.
include_links boolean no True to include links
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_git_merges_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_git_merges_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
repository_name_or_id string yes The name or ID of the repository.
merge_operation_id number yes OperationId of the merge request.
include_links boolean no True to include links
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_memberships_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_memberships_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
subject_descriptor string yes Fetch all direct memberships of this descriptor.
direction string no Defaults to Up.
depth number no The maximum number of edges to traverse up or down the membership tree. Currently the only supported value is '1'.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_avatars_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_avatars_get --json
ParameterTypeRequiredDescription
subject_descriptor string yes path parameter `subjectDescriptor`.
organization string yes The name of the Azure DevOps organization.
size string no query parameter `size`.
format string no query parameter `format`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_avatars_set_avatar 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_avatars_set_avatar --json
ParameterTypeRequiredDescription
body object yes Request body matching the official Azure DevOps Swagger schema.
subject_descriptor string yes path parameter `subjectDescriptor`.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_avatars_delete 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_avatars_delete --json
ParameterTypeRequiredDescription
subject_descriptor string yes path parameter `subjectDescriptor`.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_provider_info_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_provider_info_get --json
ParameterTypeRequiredDescription
user_descriptor string yes path parameter `userDescriptor`.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_descriptors_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_descriptors_get --json
ParameterTypeRequiredDescription
storage_key string yes Storage key of the subject (user, group, scope, etc.) to resolve
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_groups_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_groups_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
scope_descriptor string no Specify a non-default scope (collection, project) to search for groups.
subject_types string no A comma separated list of user subject subtypes to reduce the retrieved results, e.g. Microsoft.IdentityModel.Claims.ClaimsIdentity
continuation_token string no An opaque data blob that allows the next page of data to resume immediately after where the previous page ended. The only reliable way to know if there is more data left is the presence of a continuation token.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_groups_create 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_groups_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The subset of the full graph group used to uniquely find the graph subject in an external provider.
scope_descriptor string no A descriptor referencing the scope (collection, project) in which the group should be created. If omitted, will be created in the scope of the enclosing account or organization. Valid only for VSTS groups.
group_descriptors string no A comma separated list of descriptors referencing groups you want the graph group to join
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_groups_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_groups_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
group_descriptor string yes The descriptor of the desired graph group.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_groups_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_groups_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
group_descriptor string yes The descriptor of the group to modify.
body object yes The JSON+Patch document containing the fields to alter.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_groups_delete 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_groups_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
group_descriptor string yes The descriptor of the group to delete.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_memberships_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_memberships_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
subject_descriptor string yes A descriptor to the child subject in the relationship.
container_descriptor string yes A descriptor to the container in the relationship.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_memberships_add 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_memberships_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
subject_descriptor string yes A descriptor to a group or user that can be the child subject in the relationship.
container_descriptor string yes A descriptor to a group that can be the container in the relationship.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
body object no Request body matching the official Azure DevOps Swagger schema.
azure-devops.azure_devops_graph_memberships_remove_membership 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_memberships_remove_membership --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
subject_descriptor string yes A descriptor to a group or user that is the child subject in the relationship.
container_descriptor string yes A descriptor to a group that is the container in the relationship.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_membership_states_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_membership_states_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
subject_descriptor string yes Descriptor of the subject (user, group, scope, etc.) to check state of
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_request_access_request_access 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_request_access_request_access --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_service_principals_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_service_principals_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
continuation_token string no An opaque data blob that allows the next page of data to resume immediately after where the previous page ended. The only reliable way to know if there is more data left is the presence of a continuation token.
scope_descriptor string no Specify a non-default scope (collection, project) to search for service principals.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_service_principals_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_service_principals_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The subset of the full graph service principal used to uniquely find the graph subject in an external provider.
group_descriptors string no A comma separated list of descriptors of groups you want the graph service principal to join
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_service_principals_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_service_principals_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
service_principal_descriptor string yes The descriptor of the desired service principal.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_service_principals_delete 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_service_principals_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
service_principal_descriptor string yes The descriptor of the service principal to delete.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_storage_keys_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_storage_keys_get --json
ParameterTypeRequiredDescription
subject_descriptor string yes path parameter `subjectDescriptor`.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_subject_lookup_lookup_subjects 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_subject_lookup_lookup_subjects --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes A list of descriptors that specifies a subset of subjects to retrieve. Each descriptor uniquely identifies the subject across all instance scopes, but only at a single point in time.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_subject_query_query 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_subject_query_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The query that we'll be using to search includes the following: Query: the search term. The search will be prefix matching only. SubjectKind: "User" or "Group" can be specified, both or either ScopeDescriptor: Non-default scope can be specified, i.e. project scope descriptor
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_users_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_users_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
subject_types string no A comma separated list of user subject subtypes to reduce the retrieved results, e.g. msa’, ‘aad’, ‘svc’ (service identity), ‘imp’ (imported identity), etc.
continuation_token string no An opaque data blob that allows the next page of data to resume immediately after where the previous page ended. The only reliable way to know if there is more data left is the presence of a continuation token.
scope_descriptor string no Specify a non-default scope (collection, project) to search for users.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_users_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_users_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The subset of the full graph user used to uniquely find the graph subject in an external provider.
group_descriptors string no A comma separated list of descriptors of groups you want the graph user to join
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_users_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_users_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
user_descriptor string yes The descriptor of the desired user.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_users_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_users_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The subset of the full graph user used to uniquely find the graph subject in an external provider.
user_descriptor string yes The descriptor of the user to update
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_graph_users_delete 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_graph_users_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
user_descriptor string yes The descriptor of the user to delete.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_consumers_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_consumers_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
publisher_id string no query parameter `publisherId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_consumers_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_consumers_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
consumer_id string yes ID for a consumer.
publisher_id string no query parameter `publisherId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_consumers_list_consumer_actions 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_consumers_list_consumer_actions --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
consumer_id string yes ID for a consumer.
publisher_id string no query parameter `publisherId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_consumers_get_consumer_action 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_consumers_get_consumer_action --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
consumer_id string yes ID for a consumer.
consumer_action_id string yes ID for a consumerActionId.
publisher_id string no query parameter `publisherId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_notifications_query 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_notifications_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_publishers_list 2 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_publishers_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_publishers_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_publishers_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
publisher_id string yes ID for a publisher.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_publishers_list_event_types 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_publishers_list_event_types --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
publisher_id string yes ID for a publisher.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_publishers_get_event_type 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_publishers_get_event_type --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
publisher_id string yes ID for a publisher.
event_type_id string yes path parameter `eventTypeId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_publishers_query_input_values 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_publishers_query_input_values --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
publisher_id string yes path parameter `publisherId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_publishers_query_publishers 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_publishers_query_publishers --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_subscriptions_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_subscriptions_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
publisher_id string no ID for a subscription.
event_type string no The event type to filter on (if any).
consumer_id string no ID for a consumer.
consumer_action_id string no ID for a consumerActionId.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_subscriptions_create 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_subscriptions_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Subscription to be created.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_subscriptions_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_subscriptions_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
subscription_id string yes ID for a subscription.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_subscriptions_replace_subscription 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_subscriptions_replace_subscription --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
subscription_id string yes path parameter `subscriptionId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_subscriptions_delete 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_subscriptions_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
subscription_id string yes ID for a subscription.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_diagnostics_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_diagnostics_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
subscription_id string yes path parameter `subscriptionId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_diagnostics_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_diagnostics_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
subscription_id string yes path parameter `subscriptionId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_notifications_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_notifications_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
subscription_id string yes ID for a subscription.
max_results number no Maximum number of notifications to return. Default is **100**.
status string no Get only notifications with this status.
result string no Get only notifications with this result type.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_notifications_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_notifications_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
subscription_id string yes ID for a subscription.
notification_id number yes path parameter `notificationId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_subscriptions_create_subscriptions_query 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_subscriptions_create_subscriptions_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_hooks_notifications_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_hooks_notifications_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
use_real_data boolean no Only allow testing with real data in existing subscriptions.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_ims_identities_read_identities 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_ims_identities_read_identities --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
descriptors string no A comma separated list of identity descriptors to resolve
identity_ids string no A comma seperated list of storage keys to resolve
subject_descriptors string no A comma seperated list of subject descriptors to resolve
search_filter string no The type of search to perform. Values can be AccountName (domain\alias), DisplayName, MailAddress, General (display name, account name, or unique name), or LocalGroupName (only search Azure Devops groups).
filter_value string no The search value, as specified by the searchFilter.
query_membership string no The membership information to include with the identities. Values can be None for no membership data or Direct to include the groups that the identity is a member of and the identities that are a member of this identity (groups only)
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_member_entitlement_management_members_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_members_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
group_id string yes Id of the Group.
max_results number no Maximum number of results to retrieve.
paging_token string no Paging Token from the previous page fetched. If the 'pagingToken' is null, the results would be fetched from the beginning of the Members List.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_member_entitlement_management_members_add 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_members_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
group_id string yes Id of the Group.
member_id string yes Id of the member to add.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
body object no Request body matching the official Azure DevOps Swagger schema.
azure-devops.azure_devops_member_entitlement_management_members_remove_member_from_group 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_members_remove_member_from_group --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
group_id string yes Id of the group.
member_id string yes Id of the member to remove.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_member_entitlement_management_group_entitlements_list 2 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_group_entitlements_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_member_entitlement_management_group_entitlements_add 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_group_entitlements_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes GroupEntitlement object specifying License Rule, Extensions Rule for the group. Based on the rules the members of the group will be given licenses and extensions. The Group Entitlement can be used to add the group to another project level groups
rule_option string no RuleOption [ApplyGroupRule/TestApplyGroupRule] - specifies if the rules defined in group entitlement should be created and applied to it’s members (default option) or just be tested
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_member_entitlement_management_group_entitlements_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_group_entitlements_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
group_id string yes ID of the group.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_member_entitlement_management_group_entitlements_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_group_entitlements_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes JsonPatchDocument containing the operations to perform on the group.
group_id string yes ID of the group.
rule_option string no RuleOption [ApplyGroupRule/TestApplyGroupRule] - specifies if the rules defined in group entitlement should be updated and the changes are applied to it’s members (default option) or just be tested
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_member_entitlement_management_group_entitlements_delete 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_group_entitlements_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
group_id string yes ID of the group to delete.
rule_option string no RuleOption [ApplyGroupRule/TestApplyGroupRule] - specifies if the rules defined in group entitlement should be deleted and the changes are applied to it’s members (default option) or just be tested
remove_group_membership boolean no Optional parameter that specifies whether the group with the given ID should be removed from all other groups
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_member_entitlement_management_member_entitlements_search_member_entitlements 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_member_entitlements_search_member_entitlements --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
continuation_token string no query parameter `continuationToken`.
select string no query parameter `select`.
filter string no query parameter `$filter`.
order_by string no query parameter `$orderBy`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_add 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes ServicePrincipalEntitlement object specifying License, Extensions and Project/Team groups the service principal should be added to.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_update_service_principal_entitlements 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_update_service_principal_entitlements --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes JsonPatchDocument containing the operations to perform.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
service_principal_id string yes ID of the service principal.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_update_service_principal_entitlement 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_update_service_principal_entitlement --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes JsonPatchDocument containing the operations to perform on the service principal.
service_principal_id string yes ID of the service principal.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_delete 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_service_principal_entitlements_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
service_principal_id string yes ID of the service principal.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_member_entitlement_management_user_entitlements_search_user_entitlements 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_user_entitlements_search_user_entitlements --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
continuation_token string no Continuation token for getting the next page of data set. If null is passed, gets the first page.
select string no Comma (",") separated list of properties to select in the result entitlements. names of the properties are - 'Projects, 'Extensions' and 'Grouprules'.
filter string no Equality operators relating to searching user entitlements separated by and clauses. Valid filters include: licenseId, licenseStatus, userType, and name. licenseId: filters based on license assignment using license names. i.e. licenseId eq 'Account-Stakeholder' or licenseId eq 'Account-Express'. licenseStatus: filters based on license status. currently only supports disabled. i.e. licenseStatus eq 'Disabled'. To get disabled basic licenses, you would pass (licenseId eq 'Account-Express' and licenseStatus eq 'Disabled'). userType: filters off identity type. Supported types are member or guest i.e. userType eq 'member'. name: filters on if the user's display name or email contains given input. i.e. get all users with "test" in email or displayname is "name eq 'test'". A valid query could be: (licenseId eq 'Account-Stakeholder' or (licenseId eq 'Account-Express' and licenseStatus eq 'Disabled')) and name eq 'test' and userType eq 'guest'.
order_by string no PropertyName and Order (separated by a space ( )) to sort on (e.g. lastAccessed desc). Order defaults to ascending. valid properties to order by are dateCreated, lastAccessed, and name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.5`.
azure-devops.azure_devops_member_entitlement_management_user_entitlements_add 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_user_entitlements_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes UserEntitlement object specifying License, Extensions and Project/Team groups the user should be added to.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.5`.
azure-devops.azure_devops_member_entitlement_management_user_entitlements_update_user_entitlements 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_user_entitlements_update_user_entitlements --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes JsonPatchDocument containing the operations to perform.
do_not_send_invite_for_new_users boolean no Whether to send email invites to new users or not
api_version string no Azure DevOps API version. Defaults to `7.2-preview.5`.
azure-devops.azure_devops_member_entitlement_management_user_entitlements_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_user_entitlements_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
user_id string yes ID of the user.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.5`.
azure-devops.azure_devops_member_entitlement_management_user_entitlements_update_user_entitlement 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_user_entitlements_update_user_entitlement --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes JsonPatchDocument containing the operations to perform on the user.
user_id string yes ID of the user.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.5`.
azure-devops.azure_devops_member_entitlement_management_user_entitlements_delete 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_user_entitlements_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
user_id string yes ID of the user.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.5`.
azure-devops.azure_devops_member_entitlement_management_user_entitlement_summary_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_member_entitlement_management_user_entitlement_summary_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
select string no Comma (",") separated list of properties to select. Supported property names are {AccessLevels, Licenses, Projects, Groups}.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_notification_subscriptions_update_subscription_user_settings 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_notification_subscriptions_update_subscription_user_settings --json
ParameterTypeRequiredDescription
body object yes Request body matching the official Azure DevOps Swagger schema.
subscription_id string yes path parameter `subscriptionId`.
user_id string yes ID of the user
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_notification_diagnostic_logs_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_notification_diagnostic_logs_list --json
ParameterTypeRequiredDescription
source string yes ID specifying which type of logs to check diagnostics for.
organization string yes The name of the Azure DevOps organization.
entry_id string yes The ID of the specific log to query for.
start_time string no Start time for the time range to query in.
end_time string no End time for the time range to query in.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_notification_event_types_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_notification_event_types_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
publisher_id string no Limit to event types for this publisher
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_notification_event_types_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_notification_event_types_get --json
ParameterTypeRequiredDescription
event_type string yes The ID of the event type.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_notification_settings_get 2 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_notification_settings_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_notification_settings_update 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_notification_settings_update --json
ParameterTypeRequiredDescription
body object yes Request body matching the official Azure DevOps Swagger schema.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_notification_subscribers_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_notification_subscribers_get --json
ParameterTypeRequiredDescription
subscriber_id string yes ID of the user or group.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_notification_subscribers_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_notification_subscribers_update --json
ParameterTypeRequiredDescription
body object yes Request body matching the official Azure DevOps Swagger schema.
subscriber_id string yes ID of the user or group.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_notification_subscriptions_query 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_notification_subscriptions_query --json
ParameterTypeRequiredDescription
body object yes Request body matching the official Azure DevOps Swagger schema.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_notification_subscriptions_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_notification_subscriptions_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
target_id string no User or Group ID
ids string no List of subscription IDs
query_flags string no query parameter `queryFlags`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_notification_subscriptions_create 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_notification_subscriptions_create --json
ParameterTypeRequiredDescription
body object yes Request body matching the official Azure DevOps Swagger schema.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_notification_subscriptions_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_notification_subscriptions_get --json
ParameterTypeRequiredDescription
subscription_id string yes path parameter `subscriptionId`.
organization string yes The name of the Azure DevOps organization.
query_flags string no query parameter `queryFlags`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_notification_subscriptions_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_notification_subscriptions_update --json
ParameterTypeRequiredDescription
body object yes Request body matching the official Azure DevOps Swagger schema.
subscription_id string yes path parameter `subscriptionId`.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_notification_subscriptions_delete 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_notification_subscriptions_delete --json
ParameterTypeRequiredDescription
subscription_id string yes path parameter `subscriptionId`.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_notification_diagnostics_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_notification_diagnostics_get --json
ParameterTypeRequiredDescription
subscription_id string yes The id of the notifications subscription.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_notification_diagnostics_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_notification_diagnostics_update --json
ParameterTypeRequiredDescription
body object yes Request body matching the official Azure DevOps Swagger schema.
subscription_id string yes The id of the notifications subscription.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_notification_subscriptions_get_subscription_templates 2 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_notification_subscriptions_get_subscription_templates --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_operations_operations_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_operations_operations_get --json
ParameterTypeRequiredDescription
operation_id string yes The ID for the operation.
organization string yes The name of the Azure DevOps organization.
plugin_id string no The ID for the plugin.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_permissions_report_permissions_report_list 2 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_permissions_report_permissions_report_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_permissions_report_permissions_report_create 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_permissions_report_permissions_report_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request configuration to be included in the permissions report
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_permissions_report_permissions_report_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_permissions_report_permissions_report_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
id string yes The ID (GUID) of the permissions report
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_permissions_report_permissions_report_download_download 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_permissions_report_permissions_report_download_download --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
id string yes The ID (GUID) of the permissions report
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_pipelines_pipelines_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_pipelines_pipelines_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
order_by string no A sort expression. Defaults to "name asc"
top number no The maximum number of pipelines to return
continuation_token string no A continuation token from a previous request, to retrieve the next page of results
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_pipelines_pipelines_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_pipelines_pipelines_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Input parameters.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_pipelines_pipelines_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_pipelines_pipelines_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
pipeline_id number yes The pipeline ID
pipeline_version number no The pipeline version
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_pipelines_preview_preview 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_pipelines_preview_preview --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Optional additional parameters for this run.
project string yes Project ID or project name
pipeline_id number yes The pipeline ID.
pipeline_version number no The pipeline version.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_pipelines_runs_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_pipelines_runs_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
pipeline_id number yes The pipeline id
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_pipelines_runs_run_pipeline 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_pipelines_runs_run_pipeline --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Optional additional parameters for this run.
project string yes Project ID or project name
pipeline_id number yes The pipeline ID.
pipeline_version number no The pipeline version.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_pipelines_runs_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_pipelines_runs_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
pipeline_id number yes The pipeline id
run_id number yes The run id
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_pipelines_artifacts_get 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_pipelines_artifacts_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
pipeline_id number yes ID of the pipeline.
run_id number yes ID of the run of that pipeline.
artifact_name string no Name of the artifact.
expand string no Expand options. Default is None.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_pipelines_logs_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_pipelines_logs_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
pipeline_id number yes ID of the pipeline.
run_id number yes ID of the run of that pipeline.
expand string no Expand options. Default is None.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_pipelines_logs_get 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_pipelines_logs_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
pipeline_id number yes ID of the pipeline.
run_id number yes ID of the run of that pipeline.
log_id number yes ID of the log.
expand string no Expand options. Default is None.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_policy_configurations_list 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_policy_configurations_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
scope string no [Provided for legacy reasons] The scope on which a subset of policies is defined.
top number no Maximum number of policies to return.
continuation_token string no The continuation token used for pagination.
policy_type string no Filter returned policies to only this type
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_policy_configurations_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_policy_configurations_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The policy configuration to create.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_policy_configurations_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_policy_configurations_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
configuration_id number yes ID of the policy configuration
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_policy_configurations_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_policy_configurations_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The policy configuration to update.
project string yes Project ID or project name
configuration_id number yes ID of the existing policy configuration to be updated.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_policy_configurations_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_policy_configurations_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
configuration_id number yes ID of the policy configuration to delete.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_policy_revisions_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_policy_revisions_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
configuration_id number yes The policy configuration ID.
top number no The number of revisions to retrieve.
skip number no The number of revisions to ignore. For example, to retrieve results 101-150, set top to 50 and skip to 100.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_policy_revisions_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_policy_revisions_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
configuration_id number yes The policy configuration ID.
revision_id number yes The revision ID.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_policy_evaluations_list 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_policy_evaluations_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
artifact_id string no A string which uniquely identifies the target of a policy evaluation.
include_not_applicable boolean no Some policies might determine that they do not apply to a specific pull request. Setting this parameter to true will return evaluation records even for policies which don't apply to this pull request.
top number no The number of policy evaluation records to retrieve.
skip number no The number of policy evaluation records to ignore. For example, to retrieve results 101-150, set top to 50 and skip to 100.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_policy_evaluations_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_policy_evaluations_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
evaluation_id string yes ID of the policy evaluation to be retrieved.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_policy_evaluations_requeue_policy_evaluation 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_policy_evaluations_requeue_policy_evaluation --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
evaluation_id string yes ID of the policy evaluation to be retrieved.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
body object no Request body matching the official Azure DevOps Swagger schema.
azure-devops.azure_devops_policy_types_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_policy_types_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_policy_types_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_policy_types_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
type_id string yes The policy ID.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processadmin_processes_export_process_template 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processadmin_processes_export_process_template --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
id string yes The ID of the process
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processadmin_processes_import_process_template 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processadmin_processes_import_process_template --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Raw payload: provide `content` as a string and optional `content_type`.
ignore_warnings boolean no Ignores validation warnings. Default value is false.
replace_existing_template boolean no Replaces the existing template. Default value is true.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processadmin_processes_import_process_template_status 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processadmin_processes_import_process_template_status --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
id string yes The ID of the promote job operation
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processadmin_behaviors_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processadmin_behaviors_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_processes_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_processes_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
expand string no query parameter `$expand`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_processes_create 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_processes_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes CreateProcessModel.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_lists_list 2 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_lists_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_lists_create 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_lists_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Picklist
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_lists_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_lists_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
list_id string yes The ID of the list
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_lists_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_lists_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
list_id string yes The ID of the list
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_lists_delete 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_lists_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
list_id string yes The ID of the list
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_behaviors_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_behaviors_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process
expand string no query parameter `$expand`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_behaviors_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_behaviors_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
process_id string yes The ID of the process
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_behaviors_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_behaviors_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process
behavior_ref_name string yes The reference name of the behavior
expand string no query parameter `$expand`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_behaviors_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_behaviors_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
process_id string yes The ID of the process
behavior_ref_name string yes The reference name of the behavior
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_behaviors_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_behaviors_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process
behavior_ref_name string yes The reference name of the behavior
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_fields_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_fields_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process.
wit_ref_name string yes The reference name of the work item type.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_fields_add 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_fields_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
process_id string yes The ID of the process.
wit_ref_name string yes The reference name of the work item type.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_fields_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_fields_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process.
wit_ref_name string yes The reference name of the work item type.
field_ref_name string yes The reference name of the field.
expand string no query parameter `$expand`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_fields_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_fields_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
process_id string yes The ID of the process.
wit_ref_name string yes The reference name of the work item type.
field_ref_name string yes The reference name of the field.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_fields_remove_work_item_type_field 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_fields_remove_work_item_type_field --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process.
wit_ref_name string yes The reference name of the work item type.
field_ref_name string yes The reference name of the field.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_layout_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_layout_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process.
wit_ref_name string yes The reference name of the work item type.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_controls_create 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_controls_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The control.
process_id string yes The ID of the process.
wit_ref_name string yes The reference name of the work item type.
group_id string yes The ID of the group to add the control to.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_controls_move_control_to_group 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_controls_move_control_to_group --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The control.
process_id string yes The ID of the process.
wit_ref_name string yes The reference name of the work item type.
group_id string yes The ID of the group to move the control to.
control_id string yes The ID of the control.
remove_from_group_id string no The group ID to remove the control from.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_controls_update 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_controls_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The updated control.
process_id string yes The ID of the process.
wit_ref_name string yes The reference name of the work item type.
group_id string yes The ID of the group.
control_id string yes The ID of the control.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_controls_remove_control_from_group 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_controls_remove_control_from_group --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process.
wit_ref_name string yes The reference name of the work item type.
group_id string yes The ID of the group.
control_id string yes The ID of the control to remove.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_pages_add 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_pages_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The page.
process_id string yes The ID of the process.
wit_ref_name string yes The reference name of the work item type.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_pages_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_pages_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The page
process_id string yes The ID of the process
wit_ref_name string yes The reference name of the work item type
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_pages_remove_page 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_pages_remove_page --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process
wit_ref_name string yes The reference name of the work item type
page_id string yes The ID of the page
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_groups_add 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_groups_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The group.
process_id string yes The ID of the process.
wit_ref_name string yes The reference name of the work item type.
page_id string yes The ID of the page to add the group to.
section_id string yes The ID of the section to add the group to.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_groups_move_group_to_section 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_groups_move_group_to_section --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The updated group.
process_id string yes The ID of the process.
wit_ref_name string yes The reference name of the work item type.
page_id string yes The ID of the page the group is in.
section_id string yes The ID of the section the group is in.
group_id string yes The ID of the group.
remove_from_section_id string no ID of the section to remove the group from.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_groups_update 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_groups_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The updated group.
process_id string yes The ID of the process.
wit_ref_name string yes The reference name of the work item type.
page_id string yes The ID of the page the group is in.
section_id string yes The ID of the section the group is in.
group_id string yes The ID of the group.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_groups_remove_group 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_groups_remove_group --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process
wit_ref_name string yes The reference name of the work item type
page_id string yes The ID of the page the group is in
section_id string yes The ID of the section to the group is in
group_id string yes The ID of the group
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_system_controls_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_system_controls_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process.
wit_ref_name string yes The reference name of the work item type.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_system_controls_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_system_controls_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
process_id string yes The ID of the process.
wit_ref_name string yes The reference name of the work item type.
control_id string yes The ID of the control.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_system_controls_delete 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_system_controls_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process.
wit_ref_name string yes The reference name of the work item type.
control_id string yes The ID of the control.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_rules_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_rules_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process
wit_ref_name string yes The reference name of the work item type
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_rules_add 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_rules_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
process_id string yes The ID of the process
wit_ref_name string yes The reference name of the work item type
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_rules_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_rules_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process
wit_ref_name string yes The reference name of the work item type
rule_id string yes The ID of the rule
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_rules_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_rules_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
process_id string yes The ID of the process
wit_ref_name string yes The reference name of the work item type
rule_id string yes The ID of the rule
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_rules_delete 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_rules_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process
wit_ref_name string yes The reference name of the work item type
rule_id string yes The ID of the rule
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_states_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_states_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process
wit_ref_name string yes The reference name of the work item type
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_states_create 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_states_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
process_id string yes The ID of the process
wit_ref_name string yes The reference name of the work item type
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_states_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_states_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process
wit_ref_name string yes The reference name of the work item type
state_id string yes The ID of the state
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_states_hide_state_definition 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_states_hide_state_definition --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
process_id string yes The ID of the process
wit_ref_name string yes The reference name of the work item type
state_id string yes The ID of the state
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_states_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_states_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
process_id string yes ID of the process
wit_ref_name string yes The reference name of the work item type
state_id string yes ID of the state
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_states_delete 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_states_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes ID of the process
wit_ref_name string yes The reference name of the work item type
state_id string yes ID of the state
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_work_item_types_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_work_item_types_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process
expand string no Flag to determine what properties of work item type to return
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_work_item_types_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_work_item_types_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
process_id string yes The ID of the process on which to create work item type.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_work_item_types_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_work_item_types_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process
wit_ref_name string yes The reference name of the work item type
expand string no Flag to determine what properties of work item type to return
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_work_item_types_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_work_item_types_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
process_id string yes The ID of the process
wit_ref_name string yes The reference name of the work item type
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_work_item_types_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_work_item_types_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process.
wit_ref_name string yes The reference name of the work item type.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_work_item_types_behaviors_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_work_item_types_behaviors_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process
wit_ref_name_for_behaviors string yes Work item type reference name for the behavior
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_work_item_types_behaviors_add 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_work_item_types_behaviors_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
process_id string yes The ID of the process
wit_ref_name_for_behaviors string yes Work item type reference name for the behavior
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_work_item_types_behaviors_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_work_item_types_behaviors_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
process_id string yes The ID of the process
wit_ref_name_for_behaviors string yes Work item type reference name for the behavior
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_work_item_types_behaviors_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_work_item_types_behaviors_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process
wit_ref_name_for_behaviors string yes Work item type reference name for the behavior
behavior_ref_name string yes The reference name of the behavior
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_work_item_types_behaviors_remove_behavior_from_work_item_type 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_work_item_types_behaviors_remove_behavior_from_work_item_type --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_id string yes The ID of the process
wit_ref_name_for_behaviors string yes Work item type reference name for the behavior
behavior_ref_name string yes The reference name of the behavior
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_processes_processes_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_processes_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_type_id string yes path parameter `processTypeId`.
expand string no query parameter `$expand`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_processes_edit_process 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_processes_edit_process --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
process_type_id string yes path parameter `processTypeId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_processes_processes_delete 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_processes_processes_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
process_type_id string yes path parameter `processTypeId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_profile_profiles_get 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_profile_profiles_get --json
ParameterTypeRequiredDescription
id string yes The ID of the target user profile within the same organization, or 'me' to get the profile of the current authenticated user.
details boolean no Return public profile information such as display name, email address, country, etc. If false, the withAttributes parameter is ignored.
with_attributes boolean no If true, gets the attributes (named key-value pairs of arbitrary data) associated with the profile. The partition parameter must also have a value.
partition string no The partition (named group) of attributes to return.
core_attributes string no A comma-delimited list of core profile attributes to return. Valid values are Email, Avatar, DisplayName, and ContactWithOffers.
force_refresh boolean no Not used in this version of the API.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_release_definitions_get_release_definition_history 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_definitions_get_release_definition_history --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition_id number yes Id of the definition.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_release_definitions_get_definition_revision 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_definitions_get_definition_revision --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition_id number yes Id of the definition.
revision number yes Id of the revision.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_release_releases_get_release_environment 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_releases_get_release_environment --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
release_id number yes Id of the release.
environment_id number yes Id of the release environment.
expand string no A property that should be expanded in the environment.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.8`.
azure-devops.azure_devops_release_releases_update_release_environment 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_releases_update_release_environment --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Environment update meta data.
project string yes Project ID or project name
release_id number yes Id of the release.
environment_id number yes Id of release environment.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.8`.
azure-devops.azure_devops_release_manual_interventions_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_manual_interventions_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
release_id number yes Id of the release.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_release_manual_interventions_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_manual_interventions_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
release_id number yes Id of the release.
manual_intervention_id number yes Id of the manual intervention.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_release_manual_interventions_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_manual_interventions_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Meta data to update manual intervention.
project string yes Project ID or project name
release_id number yes Id of the release.
manual_intervention_id number yes Id of the manual intervention.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_release_approvals_list 11 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_approvals_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
assigned_to_filter string no Approvals assigned to this user.
status_filter string no Approvals with this status. Default is 'pending'.
release_ids_filter string no Approvals for release id(s) mentioned in the filter. Multiple releases can be mentioned by separating them with ',' e.g. releaseIdsFilter=1,2,3,4.
type_filter string no Approval with this type.
top number no Number of approvals to get. Default is 50.
continuation_token number no Gets the approvals after the continuation token provided.
query_order string no Gets the results in the defined order of created approvals. Default is 'descending'.
include_my_group_approvals boolean no 'true' to include my group approvals. Default is 'false'.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_release_approvals_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_approvals_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes ReleaseApproval object having status, approver and comments.
project string yes Project ID or project name
approval_id number yes Id of the approval.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_release_definitions_list 17 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_definitions_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
search_text string no Get release definitions with names containing searchText.
expand string no The properties that should be expanded in the list of Release definitions.
artifact_type string no Release definitions with given artifactType will be returned. Values can be Build, Jenkins, GitHub, Nuget, Team Build (external), ExternalTFSBuild, Git, TFVC, ExternalTfsXamlBuild.
artifact_source_id string no Release definitions with given artifactSourceId will be returned. e.g. For build it would be {projectGuid}:{BuildDefinitionId}, for Jenkins it would be {JenkinsConnectionId}:{JenkinsDefinitionId}, for TfsOnPrem it would be {TfsOnPremConnectionId}:{ProjectName}:{TfsOnPremDefinitionId}. For third-party artifacts e.g. TeamCity, BitBucket you may refer 'uniqueSourceIdentifier' inside vss-extension.json at https://github.com/Microsoft/vsts-rm-extensions/blob/master/Extensions.
top number no Number of release definitions to get.
continuation_token string no Gets the release definitions after the continuation token provided.
query_order string no Gets the results in the defined order. Default is 'IdAscending'.
path string no Gets the release definitions under the specified path.
is_exact_name_match boolean no 'true'to gets the release definitions with exact match as specified in searchText. Default is 'false'.
tag_filter string no A comma-delimited list of tags. Only release definitions with these tags will be returned.
property_filters string no A comma-delimited list of extended properties to be retrieved. If set, the returned Release Definitions will contain values for the specified property Ids (if they exist). If not set, properties will not be included. Note that this will not filter out any Release Definition from results irrespective of whether it has property set or not.
definition_id_filter string no A comma-delimited list of release definitions to retrieve.
is_deleted boolean no 'true' to get release definitions that has been deleted. Default is 'false'
search_text_contains_folder_name boolean no 'true' to get the release definitions under the folder with name as specified in searchText. Default is 'false'.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_release_definitions_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_definitions_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes release definition object to create.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_release_definitions_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_definitions_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Release definition object to update.
project string yes Project ID or project name
skip_tasks_validation boolean no Skip task validation boolean flag
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_release_definitions_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_definitions_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition_id number yes Id of the release definition.
property_filters string no A comma-delimited list of extended properties to be retrieved. If set, the returned Release Definition will contain values for the specified property Ids (if they exist). If not set, properties will not be included.
include_disabled boolean no Boolean flag to include disabled definitions.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_release_definitions_delete 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_definitions_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition_id number yes Id of the release definition.
comment string no Comment for deleting a release definition.
force_delete boolean no 'true' to automatically cancel any in-progress release deployments and proceed with release definition deletion . Default is 'false'.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_release_deployments_list 18 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_deployments_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition_id number no List the deployments for a given definition id.
definition_environment_id number no List the deployments for a given definition environment id.
created_by string no List the deployments for which deployments are created as identity specified.
min_modified_time string no List the deployments with LastModified time >= minModifiedTime.
max_modified_time string no List the deployments with LastModified time <= maxModifiedTime.
deployment_status string no List the deployments with given deployment status. Default is 'All'.
operation_status string no List the deployments with given operation status. Default is 'All'.
latest_attempts_only boolean no 'true' to include deployments with latest attempt only. Default is 'false'.
query_order string no List the deployments with given query order. Default is 'Descending'.
top number no List the deployments with given top. Default top is '50' and Max top is '100'.
continuation_token number no List the deployments with deployment id >= continuationToken.
created_for string no List the deployments for which deployments are requested as identity specified.
min_started_time string no List the deployments with StartedOn time >= minStartedTime.
max_started_time string no List the deployments with StartedOn time <= maxStartedTime.
source_branch string no List the deployments that are deployed from given branch name.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_release_folders_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_folders_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
path string yes Path of the folder.
query_order string no Gets the results in the defined order. Default is 'None'.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_release_folders_create 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_folders_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes folder.
project string yes Project ID or project name
path string yes Path of the folder.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_release_folders_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_folders_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes folder.
project string yes Project ID or project name
path string yes Path of the folder to update.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_release_folders_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_folders_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
path string yes Path of the folder to delete.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_release_gates_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_gates_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Metadata to patch the Release Gates.
project string yes Project ID or project name
gate_step_id number yes Gate step Id.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_release_releases_list 24 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_releases_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition_id number no Releases from this release definition Id.
definition_environment_id number no query parameter `definitionEnvironmentId`.
search_text string no Releases with names containing searchText.
created_by string no Releases created by this user.
status_filter string no Releases that have this status.
environment_status_filter number no query parameter `environmentStatusFilter`.
min_created_time string no Releases that were created after this time.
max_created_time string no Releases that were created before this time.
query_order string no Gets the results in the defined order of created date for releases. Default is descending.
top number no Number of releases to get. Default is 50.
continuation_token number no Gets the releases after the continuation token provided.
expand string no The property that should be expanded in the list of releases.
artifact_type_id string no Releases with given artifactTypeId will be returned. Values can be Build, Jenkins, GitHub, Nuget, Team Build (external), ExternalTFSBuild, Git, TFVC, ExternalTfsXamlBuild.
source_id string no Unique identifier of the artifact used. e.g. For build it would be {projectGuid}:{BuildDefinitionId}, for Jenkins it would be {JenkinsConnectionId}:{JenkinsDefinitionId}, for TfsOnPrem it would be {TfsOnPremConnectionId}:{ProjectName}:{TfsOnPremDefinitionId}. For third-party artifacts e.g. TeamCity, BitBucket you may refer 'uniqueSourceIdentifier' inside vss-extension.json https://github.com/Microsoft/vsts-rm-extensions/blob/master/Extensions.
artifact_version_id string no Releases with given artifactVersionId will be returned. E.g. in case of Build artifactType, it is buildId.
source_branch_filter string no Releases with given sourceBranchFilter will be returned (Not to be used with environmentStatusFilter).
is_deleted boolean no Gets the soft deleted releases, if true.
tag_filter string no A comma-delimited list of tags. Only releases with these tags will be returned.
property_filters string no A comma-delimited list of extended properties to be retrieved. If set, the returned Releases will contain values for the specified property Ids (if they exist). If not set, properties will not be included. Note that this will not filter out any Release from results irrespective of whether it has property set or not.
release_id_filter string no A comma-delimited list of releases Ids. Only releases with these Ids will be returned.
path string no Releases under this folder path will be returned
api_version string no Azure DevOps API version. Defaults to `7.2-preview.9`.
azure-devops.azure_devops_release_releases_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_releases_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Metadata to create a release.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.9`.
azure-devops.azure_devops_release_releases_get_release_revision 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_releases_get_release_revision --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
release_id number yes Id of the release.
definition_snapshot_revision number no Definition snapshot revision number.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.9`.
azure-devops.azure_devops_release_releases_update_release 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_releases_update_release --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Release object for update.
project string yes Project ID or project name
release_id number yes Id of the release to update.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.9`.
azure-devops.azure_devops_release_releases_update_release_resource 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_releases_update_release_resource --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Properties of release to update.
project string yes Project ID or project name
release_id number yes Id of the release to update.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.9`.
azure-devops.azure_devops_release_attachments_get_release_task_attachments 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_attachments_get_release_task_attachments --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
release_id number yes Id of the release.
environment_id number yes Id of the release environment.
attempt_id number yes Attempt number of deployment.
plan_id string yes Plan Id of the deploy phase.
type string yes Type of the attachment.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_release_attachments_get_release_task_attachment_content 11 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_attachments_get_release_task_attachment_content --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
release_id number yes Id of the release.
environment_id number yes Id of the release environment.
attempt_id number yes Attempt number of deployment.
plan_id string yes Plan Id of the deploy phase.
timeline_id string yes Timeline Id of the task.
record_id string yes Record Id of attachment.
type string yes Type of the attachment.
name string yes Name of the attachment.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_release_attachments_get_task_attachments 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_attachments_get_task_attachments --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
release_id number yes Id of the release.
environment_id number yes Id of the release environment.
attempt_id number yes Attempt number of deployment.
timeline_id string yes Timeline Id of the task.
type string yes Type of the attachment.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_release_attachments_get_task_attachment_content 10 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_attachments_get_task_attachment_content --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
release_id number yes Id of the release.
environment_id number yes Id of the release environment.
attempt_id number yes Attempt number of deployment.
timeline_id string yes Timeline Id of the task.
record_id string yes Record Id of attachment.
type string yes Type of the attachment.
name string yes Name of the attachment.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_release_releases_get_task_log 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_releases_get_task_log --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
release_id number yes Id of the release.
environment_id number yes Id of release environment.
release_deploy_phase_id number yes Release deploy phase Id.
task_id number yes ReleaseTask Id for the log.
start_line number no Starting line number for logs
end_line number no Ending line number for logs
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_release_releases_get_logs 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_release_releases_get_logs --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
release_id number yes Id of the release.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_resource_usage_team_project_collection_list 2 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_resource_usage_team_project_collection_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.1-preview.1`.
azure-devops.azure_devops_resource_usage_project_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_resource_usage_project_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.1-preview.1`.
azure-devops.azure_devops_search_package_search_results_fetch_package_search_results 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_search_package_search_results_fetch_package_search_results --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The Package Search Request.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_search_code_search_results_fetch_code_search_results 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_search_code_search_results_fetch_code_search_results --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The Code Search Request.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_search_repositories_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_search_repositories_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
repository string yes Repository ID or repository name.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_search_tfvc_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_search_tfvc_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_search_wiki_search_results_fetch_wiki_search_results 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_search_wiki_search_results_fetch_wiki_search_results --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The Wiki Search Request.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_search_work_item_search_results_fetch_work_item_search_results 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_search_work_item_search_results_fetch_work_item_search_results --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The Work Item Search Request.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_security_access_control_entries_set_access_control_entries 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_security_access_control_entries_set_access_control_entries --json
ParameterTypeRequiredDescription
body object yes Request body matching the official Azure DevOps Swagger schema.
security_namespace_id string yes Security namespace identifier.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_security_access_control_entries_remove_access_control_entries 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_security_access_control_entries_remove_access_control_entries --json
ParameterTypeRequiredDescription
security_namespace_id string yes Security namespace identifier.
organization string yes The name of the Azure DevOps organization.
token string no The token whose ACL should be modified.
descriptors string no String containing a list of identity descriptors separated by ',' whose entries should be removed.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_security_access_control_lists_query 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_security_access_control_lists_query --json
ParameterTypeRequiredDescription
security_namespace_id string yes Security namespace identifier.
organization string yes The name of the Azure DevOps organization.
token string no Security token
descriptors string no An optional filter string containing a list of identity descriptors separated by ',' whose ACEs should be retrieved. If this is left null, entire ACLs will be returned.
include_extended_info boolean no If true, populate the extended information properties for the access control entries contained in the returned lists.
recurse boolean no If true and this is a hierarchical namespace, return child ACLs of the specified token.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_security_access_control_lists_set_access_control_lists 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_security_access_control_lists_set_access_control_lists --json
ParameterTypeRequiredDescription
body object yes A list of ACLs to create or update.
security_namespace_id string yes Security namespace identifier.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_security_access_control_lists_remove_access_control_lists 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_security_access_control_lists_remove_access_control_lists --json
ParameterTypeRequiredDescription
security_namespace_id string yes Security namespace identifier.
organization string yes The name of the Azure DevOps organization.
tokens string no One or more comma-separated security tokens
recurse boolean no If true and this is a hierarchical namespace, also remove child ACLs of the specified tokens.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_security_permissions_has_permissions 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_security_permissions_has_permissions --json
ParameterTypeRequiredDescription
security_namespace_id string yes Security namespace identifier.
organization string yes The name of the Azure DevOps organization.
permissions number yes Permissions to evaluate.
tokens string no One or more security tokens to evaluate.
always_allow_administrators boolean no If true and if the caller is an administrator, always return true.
delimiter string no Optional security token separator. Defaults to ",".
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_security_permissions_remove_permission 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_security_permissions_remove_permission --json
ParameterTypeRequiredDescription
security_namespace_id string yes Security namespace identifier.
descriptor string no Identity descriptor of the user to remove permissions for.
organization string yes The name of the Azure DevOps organization.
permissions number yes Permissions to remove.
token string no Security token to remove permissions for.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_security_permissions_has_permissions_batch 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_security_permissions_has_permissions_batch --json
ParameterTypeRequiredDescription
body object yes The set of evaluation requests.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_security_security_namespaces_query 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_security_security_namespaces_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
security_namespace_id string yes Security namespace identifier.
local_only boolean no If true, retrieve only local security namespaces.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_security_roles_roleassignments_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_security_roles_roleassignments_list --json
ParameterTypeRequiredDescription
scope_id string yes Id of the assigned scope
resource_id string yes Id of the resource that is assigned the scope
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_security_roles_roleassignments_set_role_assignments 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_security_roles_roleassignments_set_role_assignments --json
ParameterTypeRequiredDescription
body object yes Roles to be assigned
scope_id string yes Id of the assigned scope
resource_id string yes Id of the resource on which the role is to be assigned
organization string yes The name of the Azure DevOps organization.
limit_to_caller_identity_domain boolean no query parameter `limitToCallerIdentityDomain`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_security_roles_roleassignments_remove_role_assignments 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_security_roles_roleassignments_remove_role_assignments --json
ParameterTypeRequiredDescription
body object yes Request body matching the official Azure DevOps Swagger schema.
scope_id string yes path parameter `scopeId`.
resource_id string yes path parameter `resourceId`.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_security_roles_roleassignments_set_role_assignment 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_security_roles_roleassignments_set_role_assignment --json
ParameterTypeRequiredDescription
body object yes Roles to be assigned
scope_id string yes Id of the assigned scope
resource_id string yes Id of the resource on which the role is to be assigned
identity_id string yes path parameter `identityId`.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_security_roles_roleassignments_remove_role_assignment 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_security_roles_roleassignments_remove_role_assignment --json
ParameterTypeRequiredDescription
scope_id string yes Id of the assigned scope
resource_id string yes Id of the resource on which the role is to be removed
identity_id string yes Identity on which the assignment is to be removed
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_security_roles_roledefinitions_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_security_roles_roledefinitions_list --json
ParameterTypeRequiredDescription
scope_id string yes path parameter `scopeId`.
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_service_endpoint_endpoints_create 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_service_endpoint_endpoints_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Service endpoint to create
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_service_endpoint_endpoints_update_service_endpoints 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_service_endpoint_endpoints_update_service_endpoints --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Names of the service endpoints to update.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_service_endpoint_endpoints_update_service_endpoint 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_service_endpoint_endpoints_update_service_endpoint --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Updated data for the endpoint
endpoint_id string yes Endpoint Id of the endpoint to update
operation string no operation type
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_service_endpoint_endpoints_share_service_endpoint 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_service_endpoint_endpoints_share_service_endpoint --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Project reference details of the target project
endpoint_id string yes Endpoint Id of the endpoint to share
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_service_endpoint_endpoints_delete 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_service_endpoint_endpoints_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
endpoint_id string yes Endpoint Id of endpoint to delete
project_ids string no project Ids from which endpoint needs to be deleted
deep boolean no delete the spn created by endpoint
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_service_endpoint_types_get_service_endpoint_types 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_service_endpoint_types_get_service_endpoint_types --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
type string no Type of service endpoint.
scheme string no Scheme of service endpoint.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_service_endpoint_types_get_filtered_service_endpoint_types 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_service_endpoint_types_get_filtered_service_endpoint_types --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Filter to limit returned types
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_service_endpoint_endpointproxy_query 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_service_endpoint_endpointproxy_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Describes the data source to fetch.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_service_endpoint_endpoints_get_service_endpoints_by_names 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_service_endpoint_endpoints_get_service_endpoints_by_names --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
endpoint_names string no Names of the service endpoints.
type string no Type of the service endpoints.
auth_schemes string no Authorization schemes used for service endpoints.
owner string no Owner for service endpoints.
include_failed boolean no Failed flag for service endpoints.
include_details boolean no Flag to include more details for service endpoints. This is for internal use only and the flag will be treated as false for all other requests
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_service_endpoint_endpoints_get_service_endpoints_with_refreshed_authentication 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_service_endpoint_endpoints_get_service_endpoints_with_refreshed_authentication --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Scope, Validity of Token requested.
project string yes Project ID or project name
endpoint_ids string no Ids of the service endpoints.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_service_endpoint_endpoints_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_service_endpoint_endpoints_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
endpoint_id string yes Id of the service endpoint.
action_filter string no Action filter for the service connection. It specifies the action which can be performed on the service connection.
load_confidential_data boolean no Flag to include confidential details of service endpoint. This is for internal use only.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_service_endpoint_executionhistory_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_service_endpoint_executionhistory_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
endpoint_id string yes Id of the service endpoint.
top number no Number of service endpoint execution records to get.
continuation_token number no A continuation token, returned by a previous call to this method, that can be used to return the next set of records
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_status_health_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_status_health_get --json
ParameterTypeRequiredDescription
services string no A comma-separated list of services for which to get status information for. Supported values: Artifacts, Boards, Core services, Other services, Pipelines, Repos, Test Plans.
geographies string no A comma-separated list of geographies for which to get status information for. Supported values: APAC, AU, BR, CA, EU, IN, UK, US.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_symbol_availability_check_availability 2 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_symbol_availability_check_availability --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_symbol_client_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_symbol_client_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
client_type string yes Either "EXE" for a zip file containing a Windows symbol client (a.k.a. symbol.exe) along with dependencies, or "TASK" for a VSTS task that can be run on a VSTS build agent. All the other values are invalid. The parameter is case-insensitive.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_symbol_requests_get_requests_request_name 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_symbol_requests_get_requests_request_name --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
request_name string no The symbol request name.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_symbol_requests_create_requests 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_symbol_requests_create_requests --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The symbol request to create.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_symbol_requests_update_requests_request_name 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_symbol_requests_update_requests_request_name --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The symbol request.
request_name string no The symbol request name.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_symbol_requests_delete_requests_request_name 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_symbol_requests_delete_requests_request_name --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
request_name string no The symbol request name.
synchronous boolean no If true, delete all the debug entries under this request synchronously in the current session. If false, the deletion will be postponed to a later point and be executed automatically by the system.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_symbol_requests_get_requests_request_id 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_symbol_requests_get_requests_request_id --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
request_id string yes The symbol request identifier.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_symbol_requests_create_requests_request_id_debug_entries 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_symbol_requests_create_requests_request_id_debug_entries --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes A batch that contains debug entries to create.
request_id string yes The symbol request identifier.
collection string no A valid debug entry collection name. Must be "debugentries".
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_symbol_requests_update_requests_request_id 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_symbol_requests_update_requests_request_id --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The symbol request.
request_id string yes The symbol request identifier.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_symbol_requests_delete_requests_request_id 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_symbol_requests_delete_requests_request_id --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
request_id string yes The symbol request identifier.
synchronous boolean no If true, delete all the debug entries under this request synchronously in the current session. If false, the deletion will be postponed to a later point and be executed automatically by the system.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_symbol_contents_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_symbol_contents_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
request_id string yes The symbol request identifier.
debug_entry_id string yes The debug entry identifier.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_symbol_symsrv_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_symbol_symsrv_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
debug_entry_client_key string yes A "client key" used by both ends of Microsoft's symbol protocol to identify a debug entry. The semantics of client key is governed by symsrv and is beyond the scope of this documentation.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_points_list 12 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_points_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
plan_id number yes ID of the test plan.
suite_id number yes ID of the suite that contains the points.
wit_fields string no Comma-separated list of work item field names.
configuration_id string no Get test points for specific configuration.
test_case_id string no Get test points for a specific test case, valid when configurationId is not set.
test_point_ids string no Get test points for comma-separated list of test point IDs, valid only when configurationId and testCaseId are not set.
include_point_details boolean no Include all properties for the test point.
skip number no Number of test points to skip..
top number no Number of test points to return.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_points_get_point 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_points_get_point --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
plan_id number yes ID of the test plan.
suite_id number yes ID of the suite that contains the point.
point_ids number yes ID of the test point to get.
wit_fields string no Comma-separated list of work item field names.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_points_update 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_points_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Data to update.
project string yes Project ID or project name
plan_id number yes ID of the test plan.
suite_id number yes ID of the suite that contains the points.
point_ids string yes ID of the test point to get. Use a comma-separated list of IDs to update multiple test points.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_test_suites_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_test_suites_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
plan_id number yes ID of the test plan that contains the suites.
suite_id number yes ID of the suite to get.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_test_test_suites_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_test_suites_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
plan_id number yes ID of the test plan that contains the suites.
suite_id number yes ID of the suite that contains the test case.
test_case_ids number yes ID of the test case to get.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_test_test_suites_add 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_test_suites_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
plan_id number yes ID of the test plan that contains the suite.
suite_id number yes ID of the test suite to which the test cases must be added.
test_case_ids string yes IDs of the test cases to add to the suite. Ids are specified in comma separated format.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
body object no Request body matching the official Azure DevOps Swagger schema.
azure-devops.azure_devops_test_test_suites_update 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_test_suites_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Model for updation of the properties of test case suite association.
project string yes Project ID or project name
plan_id number yes ID of the test plan that contains the suite.
suite_id number yes ID of the test suite to which the test cases must be added.
test_case_ids string yes IDs of the test cases to add to the suite. Ids are specified in comma separated format.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_test_test_suites_remove_test_cases_from_suite_url 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_test_suites_remove_test_cases_from_suite_url --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
plan_id number yes ID of the test plan that contains the suite.
suite_id number yes ID of the suite to get.
test_case_ids string yes IDs of the test cases to remove from the suite.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_test_test_history_query 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_test_history_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes TestHistoryQuery to get history
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_attachments_get_test_result_attachments 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_attachments_get_test_result_attachments --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes ID of the test run that contains the result.
test_case_result_id number yes ID of the test result.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_attachments_create_test_result_attachment 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_attachments_create_test_result_attachment --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Attachment details TestAttachmentRequestModel
project string yes Project ID or project name
run_id number yes ID of the test run that contains the result.
test_case_result_id number yes ID of the test result against which attachment has to be uploaded.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_attachments_get_test_result_attachment_zip 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_attachments_get_test_result_attachment_zip --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes ID of the test run that contains the testCaseResultId.
test_case_result_id number yes ID of the test result whose attachment has to be downloaded.
attachment_id number yes ID of the test result attachment to be downloaded.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_iterations_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_iterations_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes ID of the test run that contains the result.
test_case_result_id number yes ID of the test result that contains the iterations.
include_action_results boolean no Include result details for each action performed in the test iteration. ActionResults refer to outcome (pass/fail) of test steps that are executed as part of a running a manual test. Including the ActionResults flag gets the outcome of test steps in the actionResults section and test parameters in the parameters section for each test iteration.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_test_iterations_get 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_iterations_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes ID of the test run that contains the result.
test_case_result_id number yes ID of the test result that contains the iterations.
iteration_id number yes Id of the test results Iteration.
include_action_results boolean no Include result details for each action performed in the test iteration. ActionResults refer to outcome (pass/fail) of test steps that are executed as part of a running a manual test. Including the ActionResults flag gets the outcome of test steps in the actionResults section and test parameters in the parameters section for each test iteration.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_test_attachments_get_test_run_attachments 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_attachments_get_test_run_attachments --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes ID of the test run.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_attachments_create_test_run_attachment 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_attachments_create_test_run_attachment --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Attachment details TestAttachmentRequestModel
project string yes Project ID or project name
run_id number yes ID of the test run against which attachment has to be uploaded.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_attachments_get_test_run_attachment_zip 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_attachments_get_test_run_attachment_zip --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes ID of the test run whose attachment has to be downloaded.
attachment_id number yes ID of the test run attachment to be downloaded.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_code_coverage_get_test_run_code_coverage 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_code_coverage_get_test_run_code_coverage --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes ID of the test run for which code coverage data needs to be fetched.
flags number no Value of flags determine the level of code coverage details to be fetched. Flags are additive. Expected Values are 1 for Modules, 2 for Functions, 4 for BlockData.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_list 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes Test run ID of test results to fetch.
details_to_include string no Details to include with test results. Default is None. Other values are Iterations and WorkItems.
skip number no Number of test results to skip from beginning.
top number no Number of test results to return. Maximum is 1000 when detailsToInclude is None and 200 otherwise.
outcomes string no Comma separated list of test outcomes to filter test results.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.6`.
azure-devops.azure_devops_test_results_add 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes List of test results to add.
project string yes Project ID or project name
run_id number yes Test run ID into which test results to add.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.6`.
azure-devops.azure_devops_test_results_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes List of test results to update.
project string yes Project ID or project name
run_id number yes Test run ID whose test results to update.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.6`.
azure-devops.azure_devops_test_results_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes Test run ID of a test result to fetch.
test_case_result_id number yes Test result ID.
details_to_include string no Details to include with test results. Default is None. Other values are Iterations, WorkItems and SubResults.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.6`.
azure-devops.azure_devops_test_code_coverage_get_build_code_coverage 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_code_coverage_get_build_code_coverage --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number no ID of the build for which code coverage data needs to be fetched.
flags number no Value of flags determine the level of code coverage details to be fetched. Flags are additive. Expected Values are 1 for Modules, 2 for Functions, 4 for BlockData.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_points_get_points_by_query 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_points_get_points_by_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes TestPointsQuery to get test points.
project string yes Project ID or project name
skip number no Number of test points to skip..
top number no Number of test points to return.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_result_retention_settings_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_result_retention_settings_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_result_retention_settings_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_result_retention_settings_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Test result retention settings details to be updated
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_runs_list 11 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_runs_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_uri string no URI of the build that the runs used.
owner string no Team foundation ID of the owner of the runs.
tmi_run_id string no query parameter `tmiRunId`.
plan_id number no ID of the test plan that the runs are a part of.
include_run_details boolean no If true, include all the properties of the runs.
automated boolean no If true, only returns automated runs.
skip number no Number of test runs to skip.
top number no Number of test runs to return.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_test_runs_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_runs_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Run details RunCreateModel
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_test_runs_get_test_run_by_id 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_runs_get_test_run_by_id --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes ID of the run to get.
include_details boolean no Default value is true. It includes details like run statistics, release, build, test environment, post process state, and more.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_test_runs_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_runs_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Run details RunUpdateModel
project string yes Project ID or project name
run_id number yes ID of the run to update.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_test_runs_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_runs_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes ID of the run to delete.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_test_runs_get_test_run_statistics 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_runs_get_test_run_statistics --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes ID of the run to get.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_test_test_cases_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_test_cases_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
test_case_id number yes Id of test case to delete.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_session_list 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_session_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
team string yes Team ID or team name
period number no Period in days from now, for which test sessions are fetched.
all_sessions boolean no If false, returns test sessions for current user. Otherwise, it returns test sessions for all users
include_all_properties boolean no If true, it returns all properties of the test sessions. Otherwise, it returns the skinny version.
source string no Source of the test session.
include_only_completed_sessions boolean no If true, it returns test sessions in completed state. Otherwise, it returns test sessions for all states
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_session_create 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_session_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Test session details for creation
project string yes Project ID or project name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_session_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_session_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Test session details for update
project string yes Project ID or project name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_suites_get_suites_by_test_case_id 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_suites_get_suites_by_test_case_id --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
test_case_id number no ID of the test case for which suites need to be fetched.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_plan_clone_clone_test_plan 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_plan_clone_clone_test_plan --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Plan Clone Request Body detail TestPlanCloneRequest
project string yes Project ID or project name
deep_clone boolean no Clones all the associated test cases as well
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_plan_test_plan_clone_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_plan_clone_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
clone_operation_id number yes Operation ID returned when we queue a clone operation
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_plan_suite_test_case_get_test_case_list 13 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_suite_test_case_get_test_case_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
plan_id number yes ID of the test plan for which test cases are requested.
suite_id number yes ID of the test suite for which test cases are requested.
test_ids string no Test Case Ids to be fetched.
configuration_ids string no Fetch Test Cases which contains all the configuration Ids specified.
wit_fields string no Get the list of witFields.
continuation_token string no If the list of test cases returned is not complete, a continuation token to query next batch of test cases is included in the response header as "x-ms-continuationtoken". Omit this parameter to get the first batch of test cases.
return_identity_ref boolean no If set to true, returns all identity fields, like AssignedTo, ActivatedBy etc., as IdentityRef objects. If set to false, these fields are returned as unique names in string format. This is false by default.
expand boolean no If set to false, will get a smaller payload containing only basic details about the suite test case object
exclude_flags string no Flag to exclude various values from payload. For example to remove point assignments pass exclude = 1. To remove extra information (links, test plan , test suite) pass exclude = 2. To remove both extra information and point assignments pass exclude = 3 (1 + 2).
is_recursive boolean no query parameter `isRecursive`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_test_plan_suite_test_case_add 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_suite_test_case_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes SuiteTestCaseCreateUpdateParameters object.
project string yes Project ID or project name
plan_id number yes ID of the test plan to which test cases are to be added.
suite_id number yes ID of the test suite to which test cases are to be added.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_test_plan_suite_test_case_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_suite_test_case_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes A SuiteTestCaseCreateUpdateParameters object.
project string yes Project ID or project name
plan_id number yes ID of the test plan to which test cases are to be updated.
suite_id number yes ID of the test suite to which test cases are to be updated.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_test_plan_suite_test_case_remove_test_cases_list_from_suite 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_suite_test_case_remove_test_cases_list_from_suite --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
plan_id number yes ID of the test plan from which test cases are to be removed.
suite_id number yes ID of the test suite from which test cases are to be removed.
test_ids string no Comma separated string of Test Case Ids to be removed.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_test_plan_suite_test_case_get_test_case 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_suite_test_case_get_test_case --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
plan_id number yes ID of the test plan for which test cases are requested.
suite_id number yes ID of the test suite for which test cases are requested.
test_case_id string yes Test Case Id to be fetched.
wit_fields string no Get the list of witFields.
return_identity_ref boolean no If set to true, returns all identity fields, like AssignedTo, ActivatedBy etc., as IdentityRef objects. If set to false, these fields are returned as unique names in string format. This is false by default.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_test_plan_test_point_get_points 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_point_get_points --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
plan_id number yes ID of the test plan for which test points are requested.
suite_id number yes ID of the test suite for which test points are requested.
point_id string no ID of test point to be fetched.
return_identity_ref boolean no If set to true, returns the AssignedTo field in TestCaseReference as IdentityRef object.
include_point_details boolean no If set to false, will get a smaller payload containing only basic details about the test point object
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_plan_test_point_update 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_point_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes A TestPointUpdateParams Object.
project string yes Project ID or project name
plan_id number yes ID of the test plan for which test points are requested.
suite_id number yes ID of the test suite for which test points are requested.
include_point_details boolean no If set to false, will get a smaller payload containing only basic details about the test point object
return_identity_ref boolean no If set to true, returns the AssignedTo field in TestCaseReference as IdentityRef object.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_plan_test_suites_get_test_suites_for_plan 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_suites_get_test_suites_for_plan --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
plan_id number yes ID of the test plan for which suites are requested.
expand string no Include the children suites and testers details.
continuation_token string no If the list of suites returned is not complete, a continuation token to query next batch of suites is included in the response header as "x-ms-continuationtoken". Omit this parameter to get the first batch of test suites.
as_tree_view boolean no If the suites returned should be in a tree structure.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_suites_create 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_suites_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Parameters for suite creation
project string yes Project ID or project name
plan_id number yes ID of the test plan that contains the suites.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_suites_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_suites_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
plan_id number yes ID of the test plan that contains the suites.
suite_id number yes ID of the suite to get.
expand string no Include the children suites and testers details
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_suites_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_suites_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Parameters for suite updation
project string yes Project ID or project name
plan_id number yes ID of the test plan that contains the suites.
suite_id number yes ID of the parent suite.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_suites_delete 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_suites_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
plan_id number yes ID of the test plan that contains the suite.
suite_id number yes ID of the test suite to delete.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_suite_clone_clone_test_suite 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_suite_clone_clone_test_suite --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Suite Clone Request Body detail TestSuiteCloneRequest
project string yes Project ID or project name
deep_clone boolean no Clones all the associated test cases as well
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_plan_test_suite_clone_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_suite_clone_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
clone_operation_id number yes Operation ID returned when we queue a clone operation
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_plan_test_case_clone_clone_test_case 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_case_clone_clone_test_case --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_plan_test_case_clone_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_case_clone_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
clone_operation_id number yes Operation ID returned when we queue a clone operation
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_plan_configurations_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_configurations_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
continuation_token string no If the list of configurations returned is not complete, a continuation token to query next batch of configurations is included in the response header as "x-ms-continuationtoken". Omit this parameter to get the first batch of test configurations.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_configurations_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_configurations_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes TestConfigurationCreateUpdateParameters
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_configurations_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_configurations_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes TestConfigurationCreateUpdateParameters
project string yes Project ID or project name
test_configuartion_id number no ID of the test configuration to update.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_configurations_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_configurations_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
test_configuartion_id number no ID of the test configuration to delete.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_configurations_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_configurations_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
test_configuration_id number yes ID of the test configuration to get.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_plans_list 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_plans_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
owner string no Filter for test plan by owner ID or name
continuation_token string no If the list of plans returned is not complete, a continuation token to query next batch of plans is included in the response header as "x-ms-continuationtoken". Omit this parameter to get the first batch of test plans.
include_plan_details boolean no Get all properties of the test plan
filter_active_plans boolean no Get just the active plans
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_plans_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_plans_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes A testPlanCreateParams object.TestPlanCreateParams
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_plans_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_plans_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
plan_id number yes ID of the test plan to get.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_plans_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_plans_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes A testPlanUpdateParams object.TestPlanUpdateParams
project string yes Project ID or project name
plan_id number yes ID of the test plan to be updated.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_plans_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_plans_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
plan_id number yes ID of the test plan to be deleted.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_suite_recycle_bin_operations_get_deleted_test_suites_for_plan 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_suite_recycle_bin_operations_get_deleted_test_suites_for_plan --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
plan_id number yes ID of the test plan for which suites are requested.
expand string no Include the children suites and testers details.
continuation_token string no If the list of suites returned is not complete, a continuation token to query next batch of suites is included in the response header as "x-ms-continuationtoken". Omit this parameter to get the first batch of test suites.
as_tree_view boolean no If the suites returned should be in a tree structure.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_plan_recycle_bin_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_plan_recycle_bin_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
continuation_token string no If the list of plans returned is not complete, a continuation token to query next batch of plans is included in the response header as "x-ms-continuationtoken". Omit this parameter to get the first batch of test plans.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_plan_recycle_bin_restore_deleted_test_plan 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_plan_recycle_bin_restore_deleted_test_plan --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The model containing the restore information
project string yes Project ID or project name
plan_id number yes The ID of the test plan to restore
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_suite_recycle_bin_operations_get_deleted_test_suites_for_project 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_suite_recycle_bin_operations_get_deleted_test_suites_for_project --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
expand string no Include the children suites and testers details.
continuation_token string no If the list of suites returned is not complete, a continuation token to query next batch of suites is included in the response header as "x-ms-continuationtoken". Omit this parameter to get the first batch of test suites.
as_tree_view boolean no If the suites returned should be in a tree structure.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_suite_recycle_bin_operations_restore_deleted_test_suite 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_suite_recycle_bin_operations_restore_deleted_test_suite --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The model containing the restore information
project string yes Project ID or project name
suite_id number yes The ID of the test suite to restore
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_suite_entry_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_suite_entry_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
suite_id number yes Id of the parent suite.
suite_entry_type string no query parameter `suiteEntryType`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_suite_entry_reorder_suite_entries 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_suite_entry_reorder_suite_entries --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes List of SuiteEntry to reorder.
project string yes Project ID or project name
suite_id number yes Id of the parent test suite.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_test_cases_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_test_cases_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
test_case_id number yes Id of test case to be deleted.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_variables_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_variables_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
continuation_token string no If the list of variables returned is not complete, a continuation token to query next batch of variables is included in the response header as "x-ms-continuationtoken". Omit this parameter to get the first batch of test variables.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_variables_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_variables_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes TestVariableCreateUpdateParameters
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_variables_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_variables_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
test_variable_id number yes ID of the test variable to get.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_variables_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_variables_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes TestVariableCreateUpdateParameters
project string yes Project ID or project name
test_variable_id number yes ID of the test variable to update.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_plan_variables_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_plan_variables_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
test_variable_id number yes ID of the test variable to delete.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_codecoverage_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_codecoverage_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number no query parameter `buildId`.
delta_build_id number no query parameter `deltaBuildId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_codecoverage_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_codecoverage_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number no query parameter `buildId`.
body object no Request body matching the official Azure DevOps Swagger schema.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_filecoverage_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_filecoverage_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes File details with pull request iteration context
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_codecoverage_fetch_source_code_coverage_report 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_codecoverage_fetch_source_code_coverage_report --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number no query parameter `buildId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_status_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_status_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
definition string yes The ID or name of the definition.
branch_name string no The branch name.
label string no The String to replace the default text on the left side of the badge.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_extensionfields_query 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_extensionfields_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
scope_filter string no Scope of custom test fields which are to be returned.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_extensionfields_add 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_extensionfields_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes NewFields is an array of type CustomTestFieldDefinition.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_extensionfields_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_extensionfields_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Custom test field which has to be updated.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_extensionfields_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_extensionfields_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
test_extension_field_id number yes Custom test field id which has to be deleted.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_metrics_get 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_metrics_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
pipeline_id number no Pipeline Id. This is same as build Id.
stage_name string no Name of the stage. Maximum supported length for name is 256 character.
phase_name string no Name of the phase. Maximum supported length for name is 256 character.
job_name string no Matrixing in YAML generates copies of a job with different inputs in matrix. JobName is the name of those input. Maximum supported length for name is 256 character.
metric_names string no query parameter `metricNames`.
group_by_node boolean no Group summary for each node of the pipleine heirarchy
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_resultdetailsbybuild_get 10 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_resultdetailsbybuild_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number no query parameter `buildId`.
publish_context string no query parameter `publishContext`.
group_by string no query parameter `groupBy`.
filter string no query parameter `$filter`.
orderby string no query parameter `$orderby`.
should_include_results boolean no query parameter `shouldIncludeResults`.
query_run_summary_for_in_progress boolean no query parameter `queryRunSummaryForInProgress`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_resultdetailsbyrelease_get 11 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_resultdetailsbyrelease_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
release_id number no query parameter `releaseId`.
release_env_id number no query parameter `releaseEnvId`.
publish_context string no query parameter `publishContext`.
group_by string no query parameter `groupBy`.
filter string no query parameter `$filter`.
orderby string no query parameter `$orderby`.
should_include_results boolean no query parameter `shouldIncludeResults`.
query_run_summary_for_in_progress boolean no query parameter `queryRunSummaryForInProgress`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_resultgroupsbybuild_list 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_resultgroupsbybuild_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number no query parameter `buildId`.
publish_context string no query parameter `publishContext`.
fields string no query parameter `fields`.
continuation_token string no query parameter `continuationToken`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_resultgroupsbyrelease_list 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_resultgroupsbyrelease_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
release_id number no query parameter `releaseId`.
publish_context string no query parameter `publishContext`.
release_env_id number no query parameter `releaseEnvId`.
fields string no query parameter `fields`.
continuation_token string no query parameter `continuationToken`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_results_get_test_results_by_query 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_results_get_test_results_by_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_results_history_query 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_history_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_results_get_test_results_by_query_wiql 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_results_get_test_results_by_query_wiql --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
include_result_details boolean no query parameter `includeResultDetails`.
include_iteration_details boolean no query parameter `includeIterationDetails`.
skip number no query parameter `$skip`.
top number no query parameter `$top`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_results_result_meta_data_query 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_result_meta_data_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes TestCaseReference Ids of the test Result to be queried, comma separated list of valid ids (limit no. of ids 200).
project string yes Project ID or project name
details_to_include string no Details to include with test results metadata. Default is None. Other values are FlakyIdentifiers.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_test_results_result_meta_data_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_result_meta_data_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes TestResultMetaData update input TestResultMetaDataUpdateInput
project string yes Project ID or project name
test_case_reference_id number yes TestCaseReference Id of Test Result to be updated.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_test_results_test_history_query 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_test_history_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes TestHistoryQuery to get history
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_results_workitems_query_test_result_work_items 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_workitems_query_test_result_work_items --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
work_item_category string no can take values Microsoft.BugCategory or all(for getting all workitems)
automated_test_name string no query parameter `automatedTestName`.
test_case_id number no query parameter `testCaseId`.
max_complete_date string no query parameter `maxCompleteDate`.
days number no query parameter `days`.
work_item_count number no query parameter `$workItemCount`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_results_resultsbybuild_list 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_resultsbybuild_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number no query parameter `buildId`.
publish_context string no query parameter `publishContext`.
outcomes string no query parameter `outcomes`.
top number no query parameter `$top`.
continuation_token string no query parameter `continuationToken`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_resultsbypipeline_list 11 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_resultsbypipeline_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
pipeline_id number no Pipeline Id. This is same as build Id.
stage_name string no Name of the stage. Maximum supported length for name is 256 character.
phase_name string no Name of the phase. Maximum supported length for name is 256 character.
job_name string no Matrixing in YAML generates copies of a job with different inputs in matrix. JobName is the name of those input. Maximum supported length for name is 256 character.
outcomes string no List of outcome of results
include_all_build_runs boolean no Whether to include Test Runs from from all the build runs or not.
top number no Maximum number of results to return
continuation_token string no Header to pass the continuationToken
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_resultsbyrelease_list 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_resultsbyrelease_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
release_id number no query parameter `releaseId`.
release_envid number no query parameter `releaseEnvid`.
publish_context string no query parameter `publishContext`.
outcomes string no query parameter `outcomes`.
top number no query parameter `$top`.
continuation_token string no query parameter `continuationToken`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_resultsgroup_details_test_results_group_details 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_resultsgroup_details_test_results_group_details --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
pipeline_id number no Pipeline Id. This is same as build Id.
stage_name string no Name of the stage. Maximum supported length for name is 256 character.
phase_name string no Name of the phase. Maximum supported length for name is 256 character.
job_name string no Matrixing in YAML generates copies of a job with different inputs in matrix. JobName is the name of those input. Maximum supported length for name is 256 character.
should_include_failed_and_aborted_results boolean no If true, it will return Ids of failed and aborted results for each test group
query_group_summary_for_in_progress boolean no If true, it will calculate summary for InProgress runs as well.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_resultsummarybybuild_query 13 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_resultsummarybybuild_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number no query parameter `buildId`.
publish_context string no query parameter `publishContext`.
include_failure_details boolean no query parameter `includeFailureDetails`.
build_to_compare_branch_name string no Branch name.
build_to_compare_build_system string no Build system.
build_to_compare_definition_id number no Build Definition ID.
build_to_compare_id number no Build ID.
build_to_compare_number string no Build Number.
build_to_compare_repository_id string no Repository ID.
build_to_compare_uri string no Build URI.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_resultsummarybypipeline_query 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_resultsummarybypipeline_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
pipeline_id number no Pipeline Id. This is same as build Id.
stage_name string no Name of the stage. Maximum supported length for name is 256 character.
phase_name string no Name of the phase. Maximum supported length for name is 256 character.
job_name string no Matrixing in YAML generates copies of a job with different inputs in matrix. JobName is the name of those input. Maximum supported length for name is 256 character.
include_failure_details boolean no If true returns failure insights
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_resultsummarybyrelease_query_test_results_report_for_release 17 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_resultsummarybyrelease_query_test_results_report_for_release --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
release_id number no query parameter `releaseId`.
release_env_id number no query parameter `releaseEnvId`.
publish_context string no query parameter `publishContext`.
include_failure_details boolean no query parameter `includeFailureDetails`.
release_to_compare_attempt number no Number of Release Attempt.
release_to_compare_creation_date string no Release Creation Date(UTC).
release_to_compare_definition_id number no Release definition ID.
release_to_compare_environment_creation_date string no Environment creation Date(UTC).
release_to_compare_environment_definition_id number no Release environment definition ID.
release_to_compare_environment_definition_name string no Release environment definition name.
release_to_compare_environment_id number no Release environment ID.
release_to_compare_environment_name string no Release environment name.
release_to_compare_id number no Release ID.
release_to_compare_name string no Release name.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_resultsummarybyrelease_query_test_results_summary_for_releases 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_resultsummarybyrelease_query_test_results_summary_for_releases --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_resultsummarybyrequirement_query 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_resultsummarybyrequirement_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
work_item_ids string no query parameter `workItemIds`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_result_trend_by_build_query 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_result_trend_by_build_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_result_trend_by_release_query 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_result_trend_by_release_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_runs_list 11 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_runs_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_uri string no query parameter `buildUri`.
owner string no query parameter `owner`.
tmi_run_id string no query parameter `tmiRunId`.
plan_id number no query parameter `planId`.
include_run_details boolean no query parameter `includeRunDetails`.
automated boolean no query parameter `automated`.
skip number no query parameter `$skip`.
top number no query parameter `$top`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_runs_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_runs_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_runs_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_runs_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes path parameter `runId`.
include_details boolean no query parameter `includeDetails`.
include_tags boolean no query parameter `includeTags`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_runs_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_runs_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
run_id number yes path parameter `runId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_runs_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_runs_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes path parameter `runId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_attachments_get_test_run_attachments 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_attachments_get_test_run_attachments --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes path parameter `runId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_attachments_create_test_run_attachment 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_attachments_create_test_run_attachment --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
run_id number yes path parameter `runId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_attachments_get_test_run_attachment_zip 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_attachments_get_test_run_attachment_zip --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes path parameter `runId`.
attachment_id number yes path parameter `attachmentId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_attachments_delete_test_run_attachment 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_attachments_delete_test_run_attachment --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes path parameter `runId`.
attachment_id number yes path parameter `attachmentId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_codecoverage_get_test_run_code_coverage 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_codecoverage_get_test_run_code_coverage --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes path parameter `runId`.
flags number no query parameter `flags`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_message_logs_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_message_logs_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes ID of the run to get.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_result_document_publish_test_result_document 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_result_document_publish_test_result_document --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
run_id number yes path parameter `runId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_results_get_test_results 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_results_get_test_results --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes path parameter `runId`.
details_to_include string no query parameter `detailsToInclude`.
skip number no query parameter `$skip`.
top number no query parameter `$top`.
outcomes string no query parameter `outcomes`.
new_tests_only boolean no query parameter `$newTestsOnly`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_results_results_add 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_results_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
run_id number yes path parameter `runId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_results_results_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_results_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
run_id number yes path parameter `runId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_results_testlog_get_test_result_logs 11 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testlog_get_test_result_logs --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes Id of the test run that contains the result
result_id number yes Id of the test result
type string no type of attachments to get
directory_path string no directory path of attachments to get
file_name_prefix string no file name prefix to filter the list of attachment
fetch_meta_data boolean no Default is false, set if metadata is needed
top number no Numbe of attachments reference to return
continuation_token string no Header to pass the continuationToken
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_testlogstoreendpoint_get_test_log_store_endpoint_details_for_result_log 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testlogstoreendpoint_get_test_log_store_endpoint_details_for_result_log --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes Id of the test run that contains result
result_id number yes Id of the test result whose files need to be downloaded
type string no type of the file
file_path string no filePath for which sas uri is needed
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_testlogstoreendpoint_test_log_store_endpoint_details_for_result 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testlogstoreendpoint_test_log_store_endpoint_details_for_result --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes Id of the test run that contains the result
result_id number yes Id of the test results that contains sub result
sub_result_id number no Id of the test sub result whose file sas uri is needed
file_path string no file path inside the sub result for which sas uri is needed
type string no Type of the file for download
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
body object no Request body matching the official Azure DevOps Swagger schema.
azure-devops.azure_devops_test_results_attachments_get_test_result_attachments 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_attachments_get_test_result_attachments --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes path parameter `runId`.
test_case_result_id number yes path parameter `testCaseResultId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_attachments_create_test_result_attachment 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_attachments_create_test_result_attachment --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
run_id number yes path parameter `runId`.
test_case_result_id number yes path parameter `testCaseResultId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_attachments_get_test_result_attachment_zip 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_attachments_get_test_result_attachment_zip --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes path parameter `runId`.
test_case_result_id number yes path parameter `testCaseResultId`.
attachment_id number yes path parameter `attachmentId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_attachments_delete_test_result_attachment 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_attachments_delete_test_result_attachment --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes path parameter `runId`.
test_case_result_id number yes path parameter `testCaseResultId`.
attachment_id number yes path parameter `attachmentId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_bugs_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_bugs_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes path parameter `runId`.
test_case_result_id number yes path parameter `testCaseResultId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_workitems_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_workitems_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes path parameter `runId`.
test_case_result_id number yes path parameter `testCaseResultId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_results_results_get_test_result_by_id 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_results_get_test_result_by_id --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes path parameter `runId`.
test_result_id number yes path parameter `testResultId`.
details_to_include string no query parameter `detailsToInclude`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_results_similar_test_results_list 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_similar_test_results_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes id of test run
test_result_id number yes id of test result inside a test run
test_sub_result_id number no id of subresult inside a test result
top number no Maximum number of results to return
continuation_token string no Header to pass the continuationToken
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_runsummary_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_runsummary_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes ID of the run to get.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_statistics_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_statistics_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes ID of the run to get.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_results_tags_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_tags_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes TestTagsUpdateModel
project string yes Project ID or project name
run_id number yes RunId of the run
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_testattachments_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testattachments_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes Test RunId
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_testattachments_create_test_run_log_store_attachment 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testattachments_create_test_run_log_store_attachment --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Contains attachment info like stream, filename, comment, attachmentType
project string yes Project ID or project name
run_id number yes Test RunId
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_testattachments_delete 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testattachments_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes Test RunId
filename string no Attachment FileName
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_testlog_get_test_run_logs 10 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testlog_get_test_run_logs --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes Id of the test run
type string no type of the attachments to get
directory_path string no directory path for which attachments are needed
file_name_prefix string no file name prefix to filter the list of attachment
fetch_meta_data boolean no Default is false, set if metadata is needed
top number no Number of attachments reference to return
continuation_token string no Header to pass the continuationToken
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_testlogstoreendpoint_get_test_log_store_endpoint_details_for_run_log 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testlogstoreendpoint_get_test_log_store_endpoint_details_for_run_log --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes Id of the test run whose file has to be downloaded
type string no type of the file
file_path string no filePath for which sas uri is needed
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_testlogstoreendpoint_test_log_store_endpoint_details_for_run 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testlogstoreendpoint_test_log_store_endpoint_details_for_run --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
run_id number yes Id of the run to get endpoint details
test_log_store_operation_type string no Type of operation to perform using sas uri
file_path string no file path to create an empty file
type string no Default is GeneralAttachment, type of empty file to be created
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
body object no Request body matching the official Azure DevOps Swagger schema.
azure-devops.azure_devops_test_results_settings_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_settings_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
settings_type string no query parameter `settingsType`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_test_results_settings_update 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_settings_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_test_results_tags_get_test_tags_for_build 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_tags_get_test_tags_for_build --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number no Build ID
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_tagsummary_get_test_tag_summary_for_build 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_tagsummary_get_test_tag_summary_for_build --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number no Build ID
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_testai_complete_git_hub_auth 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testai_complete_git_hub_auth --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
code string no The authorization code returned by GitHub after user consent
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_testfailuretype_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testfailuretype_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_testfailuretype_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testfailuretype_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_testfailuretype_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testfailuretype_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
failure_type_id number yes path parameter `failureTypeId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_testlog_get_test_logs_for_build 10 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testlog_get_test_logs_for_build --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number no Id of the build to get
type string no type of the attachment to get
directory_path string no directory path for which attachments are needed
file_name_prefix string no file name prefix to filter the list of attachment
fetch_meta_data boolean no Default is false, set if metadata is needed
top number no Number of test attachments reference to return
continuation_token string no Header to pass the continuationToken
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_testlogstoreendpoint_get_test_log_store_endpoint_details_for_build_log 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testlogstoreendpoint_get_test_log_store_endpoint_details_for_build_log --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build number no Id of the build to get
type string no type of the file
file_path string no filePath for which sas uri is needed
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_testlogstoreendpoint_test_log_store_endpoint_details_for_build 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testlogstoreendpoint_test_log_store_endpoint_details_for_build --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
build_id number no Id of the build to get
test_log_store_operation_type string no Type of operation to perform using sas uri
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
body object no Request body matching the official Azure DevOps Swagger schema.
azure-devops.azure_devops_test_results_workitems_add 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_workitems_add --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_results_workitems_delete 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_workitems_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
test_name string no query parameter `testName`.
work_item_id number no query parameter `workItemId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_test_results_testsettings_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testsettings_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
test_settings_id number no query parameter `testSettingsId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_testsettings_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testsettings_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_testsettings_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testsettings_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
test_settings_id number no query parameter `testSettingsId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_test_results_testattachments_create_build_attachment_in_log_store 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_test_results_testattachments_create_build_attachment_in_log_store --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Contains attachment info like stream, filename, comment, attachmentType
project string yes Project ID or project name
build_id number yes BuildId
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_tfvc_changesets_get_changeset_changes 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_tfvc_changesets_get_changeset_changes --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
id number yes ID of the changeset. Default: null
skip number no Number of results to skip. Default: null
top number no The maximum number of results to return. Default: null
continuation_token string no Return the next page of results. Default: null
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_tfvc_changesets_get_changeset_work_items 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_tfvc_changesets_get_changeset_work_items --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
id number yes ID of the changeset.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_tfvc_changesets_get_batched_changesets 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_tfvc_changesets_get_batched_changesets --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes List of changeset IDs.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_tfvc_labels_get_label_items 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_tfvc_labels_get_label_items --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
label_id string yes Unique identifier of label
top number no Max number of items to return
skip number no Number of items to skip
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_tfvc_shelvesets_get 10 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_tfvc_shelvesets_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
shelveset_id string no Shelveset's unique ID
request_data_include_details boolean no Whether to include policyOverride and notes Only applies when requesting a single deep shelveset
request_data_include_links boolean no Whether to include the _links field on the shallow references. Does not apply when requesting a single deep shelveset object. Links will always be included in the deep shelveset.
request_data_include_work_items boolean no Whether to include workItems
request_data_max_change_count number no Max number of changes to include
request_data_max_comment_length number no Max length of comment
request_data_name string no Shelveset name
request_data_owner string no Owner's ID. Could be a name or a guid.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_tfvc_shelvesets_get_shelveset_changes 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_tfvc_shelvesets_get_shelveset_changes --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
shelveset_id string no Shelveset's unique ID
top number no Max number of changes to return
skip number no Number of changes to skip
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_tfvc_shelvesets_get_shelveset_work_items 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_tfvc_shelvesets_get_shelveset_work_items --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
shelveset_id string no Shelveset's unique ID
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_tfvc_branches_get_branch_refs 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_tfvc_branches_get_branch_refs --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
scope_path string no Full path to the branch. Default: $/ Examples: $/, $/MyProject, $/MyProject/SomeFolder.
project string yes Project ID or project name
include_deleted boolean no Return deleted branches. Default: False
include_links boolean no Return links. Default: False
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_tfvc_changesets_get_changesets 16 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_tfvc_changesets_get_changesets --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
max_comment_length number no Include details about associated work items in the response. Default: null
skip number no Number of results to skip. Default: null
top number no The maximum number of results to return. Default: null
orderby string no Results are sorted by ID in descending order by default. Use id asc to sort by ID in ascending order.
search_criteria_author string no Alias or display name of user who made the changes.
search_criteria_follow_renames boolean no Whether or not to follow renames for the given item being queried.
search_criteria_from_date string no If provided, only include changesets created after this date (string).
search_criteria_from_id number no If provided, only include changesets after this changesetID.
search_criteria_include_links boolean no Whether to include the _links field on the shallow references.
search_criteria_item_path string no Path of item to search under.
search_criteria_mappings array no Following criteria available (.itemPath, .version, .versionType, .versionOption, .author, .fromId, .toId, .fromDate, .toDate) Default: null
search_criteria_to_date string no If provided, only include changesets created before this date (string).
search_criteria_to_id number no If provided, a version descriptor for the latest change list to include.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_tfvc_changesets_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_tfvc_changesets_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_tfvc_changesets_get 21 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_tfvc_changesets_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
id number yes Changeset Id to retrieve.
project string yes Project ID or project name
max_change_count number no Number of changes to return (maximum 100 changes) Default: 0
include_details boolean no Include policy details and check-in notes in the response. Default: false
include_work_items boolean no Include workitems. Default: false
max_comment_length number no Include details about associated work items in the response. Default: null
include_source_rename boolean no Include renames. Default: false
skip number no Number of results to skip. Default: null
top number no The maximum number of results to return. Default: null
orderby string no Results are sorted by ID in descending order by default. Use id asc to sort by ID in ascending order.
search_criteria_author string no Alias or display name of user who made the changes.
search_criteria_follow_renames boolean no Whether or not to follow renames for the given item being queried.
search_criteria_from_date string no If provided, only include changesets created after this date (string).
search_criteria_from_id number no If provided, only include changesets after this changesetID.
search_criteria_include_links boolean no Whether to include the _links field on the shallow references.
search_criteria_item_path string no Path of item to search under.
search_criteria_mappings array no Following criteria available (.itemPath, .version, .versionType, .versionOption, .author, .fromId, .toId, .fromDate, .toDate) Default: null
search_criteria_to_date string no If provided, only include changesets created before this date (string).
search_criteria_to_id number no If provided, a version descriptor for the latest change list to include.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_tfvc_items_get_items_batch 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_tfvc_items_get_items_batch --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_tfvc_items_list 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_tfvc_items_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
scope_path string no Version control path of a folder to return multiple items.
recursion_level string no None (just the item), or OneLevel (contents of a folder).
include_links boolean no True to include links.
version_descriptor_version string no Version object.
version_descriptor_version_option string no query parameter `versionDescriptor.versionOption`.
version_descriptor_version_type string no query parameter `versionDescriptor.versionType`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_tfvc_labels_list 11 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_tfvc_labels_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
request_data_include_links boolean no Whether to include the _links field on the shallow references
request_data_item_label_filter string no labelScope, name, owner, and itemLabelFilter
request_data_label_scope string no labelScope, name, owner, and itemLabelFilter
request_data_max_item_count number no labelScope, name, owner, and itemLabelFilter
request_data_name string no labelScope, name, owner, and itemLabelFilter
request_data_owner string no labelScope, name, owner, and itemLabelFilter
top number no Max number of labels to return, defaults to 100 when undefined
skip number no Number of labels to skip
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_tfvc_labels_get 10 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_tfvc_labels_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
label_id string yes Unique identifier of label
project string yes Project ID or project name
request_data_include_links boolean no Whether to include the _links field on the shallow references
request_data_item_label_filter string no maxItemCount
request_data_label_scope string no maxItemCount
request_data_max_item_count number no maxItemCount
request_data_name string no maxItemCount
request_data_owner string no maxItemCount
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_token_admin_personal_access_tokens_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_token_admin_personal_access_tokens_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
subject_descriptor string yes The descriptor of the target user.
page_size number no The maximum number of results to return on each page.
continuation_token string no An opaque data blob that allows the next page of data to resume immediately after where the previous page ended. The only reliable way to know if there is more data left is the presence of a continuation token.
is_public boolean no Set to false for PAT tokens and true for SSH tokens.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_token_admin_revocation_rules_create 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_token_admin_revocation_rules_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The revocation rule to create. The rule must specify a space-separated list of scopes, after which preexisting OAuth authorizations that match that any of the scopes will be rejected. For a list of all OAuth scopes supported by VSTS, see: https://docs.microsoft.com/en-us/vsts/integrate/get-started/authentication/oauth?view=vsts#scopes The rule may also specify the time before which to revoke tokens.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_token_admin_revocations_revoke_authorizations 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_token_admin_revocations_revoke_authorizations --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The list of objects containing the authorization IDs of the OAuth authorizations, such as session tokens retrieved by listed a users PATs, that should be revoked.
is_public boolean no Set to false for PAT tokens and true for SSH tokens.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_tokens_pats_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_tokens_pats_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
authorization_id string no The authorizationId identifying a single, unique personal access token (PAT)
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_tokens_pats_create 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_tokens_pats_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_tokens_pats_update 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_tokens_pats_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_tokens_pats_revoke 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_tokens_pats_revoke --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
authorization_id string no The authorizationId identifying a single, unique personal access token (PAT)
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wiki_wikis_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wiki_wikis_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wiki_wikis_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wiki_wikis_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Parameters for the wiki creation.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wiki_wikis_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wiki_wikis_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
wiki_identifier string yes Wiki ID or wiki name.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wiki_wikis_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wiki_wikis_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Update parameters.
wiki_identifier string yes Wiki ID or wiki name.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wiki_wikis_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wiki_wikis_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
wiki_identifier string yes Wiki ID or wiki name.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wiki_attachments_create 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wiki_attachments_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Raw payload: provide `content` as a string and optional `content_type`.
project string yes Project ID or project name
wiki_identifier string yes Wiki ID or wiki name.
name string no Wiki attachment name.
version_descriptor_version string no Version string identifier (name of tag/branch, SHA1 of commit)
version_descriptor_version_options string no Version options - Specify additional modifiers to version (e.g Previous)
version_descriptor_version_type string no Version type (branch, tag, or commit). Determines how Id is interpreted
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wiki_page_moves_create 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wiki_page_moves_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Page more operation parameters.
project string yes Project ID or project name
wiki_identifier string yes Wiki ID or wiki name.
comment string no Comment that is to be associated with this page move.
version_descriptor_version string no Version string identifier (name of tag/branch, SHA1 of commit)
version_descriptor_version_options string no Version options - Specify additional modifiers to version (e.g Previous)
version_descriptor_version_type string no Version type (branch, tag, or commit). Determines how Id is interpreted
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wiki_pages_get_page 10 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wiki_pages_get_page --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
wiki_identifier string yes Wiki ID or wiki name.
path string no Wiki page path.
recursion_level string no Recursion level for subpages retrieval. Defaults to `None` (Optional).
version_descriptor_version string no Version string identifier (name of tag/branch, SHA1 of commit)
version_descriptor_version_options string no Version options - Specify additional modifiers to version (e.g Previous)
version_descriptor_version_type string no Version type (branch, tag, or commit). Determines how Id is interpreted
include_content boolean no True to include the content of the page in the response for Json content type. Defaults to false (Optional)
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wiki_pages_create_or_update 11 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wiki_pages_create_or_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Wiki create or update operation parameters.
project string yes Project ID or project name
wiki_identifier string yes Wiki ID or wiki name.
path string no Wiki page path.
version string no Version of the page on which the change is to be made. Mandatory for `Edit` scenario. To be populated in the If-Match header of the request.
comment string no Comment to be associated with the page operation.
version_descriptor_version string no Version string identifier (name of tag/branch, SHA1 of commit)
version_descriptor_version_options string no Version options - Specify additional modifiers to version (e.g Previous)
version_descriptor_version_type string no Version type (branch, tag, or commit). Determines how Id is interpreted
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wiki_pages_delete_page 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wiki_pages_delete_page --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
wiki_identifier string yes Wiki ID or wiki name.
path string no Wiki page path.
comment string no Comment to be associated with this page delete.
version_descriptor_version string no Version string identifier (name of tag/branch, SHA1 of commit)
version_descriptor_version_options string no Version options - Specify additional modifiers to version (e.g Previous)
version_descriptor_version_type string no Version type (branch, tag, or commit). Determines how Id is interpreted
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wiki_pages_get_page_by_id 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wiki_pages_get_page_by_id --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
wiki_identifier string yes Wiki ID or wiki name..
id number yes Wiki page ID.
recursion_level string no Recursion level for subpages retrieval. Defaults to `None` (Optional).
include_content boolean no True to include the content of the page in the response for Json content type. Defaults to false (Optional)
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wiki_pages_update 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wiki_pages_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Wiki update operation parameters.
project string yes Project ID or project name
wiki_identifier string yes Wiki ID or wiki name.
id number yes Wiki page ID.
version string no Version of the page on which the change is to be made. Mandatory for `Edit` scenario. To be populated in the If-Match header of the request.
comment string no Comment to be associated with the page operation.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wiki_pages_delete_page_by_id 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wiki_pages_delete_page_by_id --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
wiki_identifier string yes Wiki ID or wiki name.
id number yes Wiki page ID.
comment string no Comment to be associated with this page delete.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wiki_page_stats_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wiki_page_stats_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
wiki_identifier string yes Wiki ID or wiki name.
page_id number yes Wiki page ID.
page_views_for_days number no last N days from the current day for which page views is to be returned. It's inclusive of current day.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wiki_pages_batch_get 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wiki_pages_batch_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Wiki batch page request.
project string yes Project ID or project name
wiki_identifier string yes Wiki ID or wiki name.
version_descriptor_version string no Version string identifier (name of tag/branch, SHA1 of commit)
version_descriptor_version_options string no Version options - Specify additional modifiers to version (e.g Previous)
version_descriptor_version_type string no Version type (branch, tag, or commit). Determines how Id is interpreted
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_work_item_icons_list 2 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_item_icons_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_work_item_icons_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_item_icons_get --json
ParameterTypeRequiredDescription
icon string yes The name of the icon
organization string yes The name of the Azure DevOps organization.
color string no The 6-digit hex color for the icon
v number no The version of the icon (used only for cache invalidation)
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_work_item_relation_types_list 2 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_item_relation_types_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_work_item_relation_types_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_item_relation_types_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
relation string yes The relation name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_work_item_transitions_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_item_transitions_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
ids string no list of work item ids
action string no possible actions. Currently only supports checkin
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_account_my_work_recent_activity_list 2 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_account_my_work_recent_activity_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_github_connections_get_github_connections 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_github_connections_get_github_connections --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_github_connections_get_github_connection_repositories 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_github_connections_get_github_connection_repositories --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
connection_id string yes path parameter `connectionId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_github_connections_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_github_connections_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
connection_id string yes path parameter `connectionId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_artifact_uri_query_query 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_artifact_uri_query_query --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Defines a list of artifact URI for querying work items.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_attachments_create 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_attachments_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Raw payload: provide `content` as a string and optional `content_type`.
project string yes Project ID or project name
file_name string no The name of the file
upload_type string no Attachment upload type: Simple or Chunked
area_path string no Target project Area Path
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_wit_attachments_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_attachments_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
id string yes Attachment ID
project string yes Project ID or project name
file_name string no Name of the file
download boolean no If set to <c>true</c> always download attachment
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_wit_attachments_upload_chunk 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_attachments_upload_chunk --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Raw payload: provide `content` as a string and optional `content_type`.
id string yes The id of the attachment
content_range_header string no starting and ending byte positions for chunked file upload, format is "Content-Range": "bytes 0-10000/50000"
project string yes Project ID or project name
file_name string no query parameter `fileName`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_wit_attachments_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_attachments_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
id string yes Attachment ID
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_wit_classification_nodes_get_root_nodes 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_classification_nodes_get_root_nodes --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
depth number no Depth of children to fetch.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_classification_nodes_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_classification_nodes_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
structure_group string yes Structure group of the classification node, area or iteration.
path string yes Path of the classification node.
depth number no Depth of children to fetch.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_classification_nodes_create_or_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_classification_nodes_create_or_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Node to create or update.
project string yes Project ID or project name
structure_group string yes Structure group of the classification node, area or iteration.
path string yes Path of the classification node.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_classification_nodes_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_classification_nodes_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Node to create or update.
project string yes Project ID or project name
structure_group string yes Structure group of the classification node, area or iteration.
path string yes Path of the classification node.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_classification_nodes_delete 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_classification_nodes_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
structure_group string yes Structure group of the classification node, area or iteration.
path string yes Path of the classification node.
reclassify_id number no Id of the target classification node for reclassification.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_fields_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_fields_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
expand string no Use ExtensionFields to include extension fields, otherwise exclude them. Unless the feature flag for this parameter is enabled, extension fields are always included.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_wit_fields_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_fields_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes New field definition
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_wit_fields_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_fields_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
field_name_or_ref_name string yes Field simple name or reference name
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_wit_fields_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_fields_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Payload contains desired value of the field's properties
field_name_or_ref_name string yes Name/reference name of the field to be updated
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_wit_fields_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_fields_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
field_name_or_ref_name string yes Field simple name or reference name
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_wit_project_process_migration_migrate_projects_process 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_project_process_migration_migrate_projects_process --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_queries_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_queries_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
expand string no Include the query string (wiql), clauses, query result columns, and sort options in the results.
depth number no In the folder of queries, return child queries and folders to this depth.
include_deleted boolean no Include deleted queries and folders
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_queries_get 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_queries_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
query string yes ID or path of the query.
expand string no Include the query string (wiql), clauses, query result columns, and sort options in the results.
depth number no In the folder of queries, return child queries and folders to this depth.
include_deleted boolean no Include deleted queries and folders
use_iso_date_format boolean no DateTime query clauses will be formatted using a ISO 8601 compliant format
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_queries_create 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_queries_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The query to create.
project string yes Project ID or project name
query string yes The parent id or path under which the query is to be created.
validate_wiql_only boolean no If you only want to validate your WIQL query without actually creating one, set it to true. Default is false.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_queries_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_queries_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The query to update.
project string yes Project ID or project name
query string yes The ID or path for the query to update.
undelete_descendants boolean no Undelete the children of this folder. It is important to note that this will not bring back the permission changes that were previously applied to the descendants.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_queries_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_queries_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
query string yes ID or path of the query or folder to delete.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_queries_get_queries_batch 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_queries_get_queries_batch --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_recyclebin_get_deleted_work_item_shallow_references 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_recyclebin_get_deleted_work_item_shallow_references --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_recyclebin_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_recyclebin_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
id number yes ID of the work item to be returned
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_recyclebin_restore_work_item 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_recyclebin_restore_work_item --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Paylod with instructions to update the IsDeleted flag to false
id number yes ID of the work item to be restored
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_recyclebin_destroy_work_item 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_recyclebin_destroy_work_item --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
id number yes ID of the work item to be destroyed permanently
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_work_item_revisions_discussions_read_reporting_discussions 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_item_revisions_discussions_read_reporting_discussions --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
continuation_token string no query parameter `continuationToken`.
max_page_size number no query parameter `$maxPageSize`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_reporting_work_item_revisions_read_reporting_revisions_get 14 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_reporting_work_item_revisions_read_reporting_revisions_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
fields string no A list of fields to return in work item revisions. Omit this parameter to get all reportable fields.
types string no A list of types to filter the results to specific work item types. Omit this parameter to get work item revisions of all work item types.
continuation_token string no Specifies the watermark to start the batch from. Omit this parameter to get the first batch of revisions.
start_date_time string no Date/time to use as a starting point for revisions, all revisions will occur after this date/time. Cannot be used in conjunction with 'watermark' parameter.
include_identity_ref boolean no Return an identity reference instead of a string value for identity fields.
include_deleted boolean no Specify if the deleted item should be returned.
include_tag_ref boolean no Specify if the tag objects should be returned for System.Tags field.
include_latest_only boolean no Return only the latest revisions of work items, skipping all historical revisions
expand string no Return all the fields in work item revisions, including long text fields which are not returned by default
include_discussion_changes_only boolean no Return only the those revisions of work items, where only history field was changed
max_page_size number no The maximum number of results to return in this batch
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_reporting_work_item_revisions_read_reporting_revisions_post 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_reporting_work_item_revisions_read_reporting_revisions_post --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes An object that contains request settings: field filter, type filter, identity format
project string yes Project ID or project name
continuation_token string no Specifies the watermark to start the batch from. Omit this parameter to get the first batch of revisions.
start_date_time string no Date/time to use as a starting point for revisions, all revisions will occur after this date/time. Cannot be used in conjunction with 'watermark' parameter.
expand string no query parameter `$expand`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_send_mail_send_mail 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_send_mail_send_mail --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_tags_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_tags_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_tags_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_tags_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
tag_id_or_name string yes Tag ID or tag name.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_tags_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_tags_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
tag_id_or_name string yes Tag ID or tag name.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_tags_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_tags_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
tag_id_or_name string yes Tag ID or tag name.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_temp_queries_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_temp_queries_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The temporary query to create
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_revisions_list 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_revisions_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
id number yes path parameter `id`.
project string yes Project ID or project name
top number no query parameter `$top`.
skip number no query parameter `$skip`.
expand string no query parameter `$expand`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_wit_revisions_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_revisions_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
id number yes path parameter `id`.
revision_number number yes path parameter `revisionNumber`.
project string yes Project ID or project name
expand string no query parameter `$expand`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_wit_updates_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_updates_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
id number yes path parameter `id`.
project string yes Project ID or project name
top number no query parameter `$top`.
skip number no query parameter `$skip`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_wit_updates_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_updates_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
id number yes path parameter `id`.
update_number number yes path parameter `updateNumber`.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_wit_comments_get_comments_batch 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_comments_get_comments_batch --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
work_item_id number yes Id of a work item to get comments for.
ids string no Comma-separated list of comment ids to return.
include_deleted boolean no Specify if the deleted comments should be retrieved.
expand string no Specifies the additional data retrieval options for work item comments.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_wit_comments_add_comment 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_comments_add_comment --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Comment create request.
project string yes Project ID or project name
work_item_id number yes Id of a work item.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_wit_comments_get_comment 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_comments_get_comment --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
work_item_id number yes Id of a work item to get the comment.
comment_id number yes Id of the comment to return.
include_deleted boolean no Specify if the deleted comment should be retrieved.
expand string no Specifies the additional data retrieval options for work item comments.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_wit_comments_update_comment 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_comments_update_comment --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Comment update request.
project string yes Project ID or project name
work_item_id number yes Id of a work item.
comment_id number yes path parameter `commentId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_wit_comments_delete 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_comments_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
work_item_id number yes Id of a work item.
comment_id number yes path parameter `commentId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.4`.
azure-devops.azure_devops_wit_comments_reactions_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_comments_reactions_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
work_item_id number yes WorkItem ID
comment_id number yes Comment ID
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_comments_reactions_create 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_comments_reactions_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
work_item_id number yes WorkItem ID
comment_id number yes Comment ID
reaction_type string yes Type of the reaction
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
body object no Request body matching the official Azure DevOps Swagger schema.
azure-devops.azure_devops_wit_comments_reactions_delete 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_comments_reactions_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
work_item_id number yes WorkItem ID
comment_id number yes Comment ID
reaction_type string yes Type of the reaction
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_comment_reactions_engaged_users_list 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_comment_reactions_engaged_users_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
work_item_id number yes WorkItem ID.
comment_id number yes Comment ID.
reaction_type string yes Type of the reaction.
top number no query parameter `$top`.
skip number no query parameter `$skip`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_comments_versions_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_comments_versions_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
work_item_id number yes path parameter `workItemId`.
comment_id number yes path parameter `commentId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_comments_versions_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_comments_versions_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
work_item_id number yes path parameter `workItemId`.
comment_id number yes path parameter `commentId`.
version number yes path parameter `version`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_work_items_list 8 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_items_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
ids string no The comma-separated list of requested work item ids. (Maximum 200 ids allowed).
project string yes Project ID or project name
fields string no Comma-separated list of requested fields
as_of string no AsOf UTC date time string
expand string no The expand parameters for work item attributes. Possible options are { None, Relations, Fields, Links, All }.
error_policy string no The flag to control error policy in a bulk get work items request. Possible options are {Fail, Omit}.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_wit_work_items_get_work_item_template 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_items_get_work_item_template --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
type string yes The work item type name
fields string no Comma-separated list of requested fields
as_of string no AsOf UTC date time string
expand string no The expand parameters for work item attributes. Possible options are { None, Relations, Fields, Links, All }.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_wit_work_items_create 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_items_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The JSON Patch document representing the work item
project string yes Project ID or project name
type string yes The work item type of the work item to create
validate_only boolean no Indicate if you only want to validate the changes without saving the work item
bypass_rules boolean no Do not enforce the work item type rules on this update
suppress_notifications boolean no Do not fire any notifications for this change
expand string no The expand parameters for work item attributes. Possible options are { None, Relations, Fields, Links, All }.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_wit_work_items_get_work_item 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_items_get_work_item --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
id number yes The work item id
project string yes Project ID or project name
fields string no Comma-separated list of requested fields
as_of string no AsOf UTC date time string
expand string no The expand parameters for work item attributes. Possible options are { None, Relations, Fields, Links, All }.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_wit_work_items_update 9 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_items_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The JSON Patch document representing the update
id number yes The id of the work item to update
project string yes Project ID or project name
validate_only boolean no Indicate if you only want to validate the changes without saving the work item
bypass_rules boolean no Do not enforce the work item type rules on this update
suppress_notifications boolean no Do not fire any notifications for this change
expand string no The expand parameters for work item attributes. Possible options are { None, Relations, Fields, Links, All }.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_wit_work_items_delete 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_items_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
id number yes ID of the work item to be deleted
project string yes Project ID or project name
destroy boolean no Optional parameter, if set to true, the work item is deleted permanently. Please note: the destroy action is PERMANENT and cannot be undone.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_wit_work_items_get_work_items_batch 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_items_get_work_items_batch --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_work_items_delete_work_items 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_items_delete_work_items --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_work_item_type_categories_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_item_type_categories_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_work_item_type_categories_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_item_type_categories_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
category string yes The category name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_work_item_types_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_item_types_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_work_item_types_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_item_types_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
type string yes Work item type name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_work_item_types_field_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_item_types_field_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
type string yes Work item type.
expand string no Expand level for the API response. Properties: to include allowedvalues, default value, isRequired etc. as a part of response; None: to skip these properties.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_wit_work_item_types_field_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_item_types_field_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
type string yes Work item type.
field string yes path parameter `field`.
expand string no Expand level for the API response. Properties: to include allowedvalues, default value, isRequired etc. as a part of response; None: to skip these properties.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_wit_work_item_type_states_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_work_item_type_states_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
type string yes The state name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_templates_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_templates_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
team string yes Team ID or team name
workitemtypename string no Optional, When specified returns templates for given Work item type.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_templates_create 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_templates_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Template contents
project string yes Project ID or project name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_templates_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_templates_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
team string yes Team ID or team name
template_id string yes Template Id
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_templates_replace_template 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_templates_replace_template --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Template contents to replace with
project string yes Project ID or project name
team string yes Team ID or team name
template_id string yes Template id
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_templates_delete 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_templates_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
team string yes Team ID or team name
template_id string yes Template id
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_wit_wiql_query_by_wiql 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_wiql_query_by_wiql --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes The query containing the WIQL.
project string yes Project ID or project name
team string yes Team ID or team name
time_precision boolean no Whether or not to use time precision.
top number no The max number of results to return.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_wit_wiql_query_by_id 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_wit_wiql_query_by_id --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
id string yes The query ID.
project string yes Project ID or project name
team string yes Team ID or team name
time_precision boolean no Whether or not to use time precision.
top number no The max number of results to return.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_work_boardcolumns_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_boardcolumns_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_boardrows_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_boardrows_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_iterationcapacities_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_iterationcapacities_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
iteration_id string yes ID of the iteration
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_plans_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_plans_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_plans_create 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_plans_create --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Plan definition
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_plans_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_plans_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
id string yes Identifier of the plan
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_plans_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_plans_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Plan definition to be updated
project string yes Project ID or project name
id string yes Identifier of the plan
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_plans_delete 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_plans_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
id string yes Identifier of the plan
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_deliverytimeline_get 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_deliverytimeline_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
id string yes Identifier for delivery view
revision number no Revision of the plan for which you want data. If the current plan is a different revision you will get an ViewRevisionMismatchException exception. If you do not supply a revision you will get data for the latest revision.
start_date string no The start date of timeline
end_date string no The end date of timeline
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_predefined_queries_list 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_predefined_queries_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_predefined_queries_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_predefined_queries_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
id string yes Id of the query to run
top number no The maximum number of items to return
include_completed boolean no Whether or not to retrieve the 'completed' work items (work items in the 'completed' meta state)
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_processconfiguration_get 3 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_processconfiguration_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_backlogconfiguration_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_backlogconfiguration_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_backlogs_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_backlogs_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_backlogs_get_backlog_level_work_items 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_backlogs_get_backlog_level_work_items --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
team string yes Team ID or team name
backlog_id string yes path parameter `backlogId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_backlogs_get_backlog 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_backlogs_get_backlog --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
team string yes Team ID or team name
id string yes The id of the backlog level
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_boards_list 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_boards_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_boardparents_list 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_boardparents_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
child_backlog_context_category_ref_name string no query parameter `childBacklogContextCategoryRefName`.
workitem_ids string no query parameter `workitemIds`.
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_boardusersettings_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_boardusersettings_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
board string yes Board ID or Name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_boardusersettings_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_boardusersettings_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
board string yes path parameter `board`.
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_cardrulesettings_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_cardrulesettings_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
board string yes path parameter `board`.
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_work_cardrulesettings_update_board_card_rule_settings 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_cardrulesettings_update_board_card_rule_settings --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
board string yes path parameter `board`.
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_work_cardsettings_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_cardsettings_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
board string yes path parameter `board`.
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_work_cardsettings_update_board_card_settings 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_cardsettings_update_board_card_settings --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
board string yes path parameter `board`.
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_work_chartimages_get_board_chart_image 10 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_chartimages_get_board_chart_image --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
team string yes Team ID or team name
board string yes Identifier for board, either board's backlog level name (e.g. "Issues") or Id.
name string yes The chart name. e.g. CumulativeFlow.
width number no The width of the chart in pixels. Must be greater than 0.
height number no The height of the chart in pixels. Must be greater than 0.
show_details boolean no Whether or not the chart should include detailed information (e.g. axis labels, titles, trend lines, etc.).
title string no The title of the chart. Can only be dislayed if ShowLabels is true.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_charts_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_charts_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
board string yes Identifier for board, either board's backlog level name (Eg:"Stories") or Id
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_charts_get 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_charts_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
board string yes Identifier for board, either board's backlog level name (Eg:"Stories") or Id
name string yes The chart name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_charts_update 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_charts_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
board string yes Identifier for board, either board's backlog level name (Eg:"Stories") or Id
name string yes The chart name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_columns_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_columns_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
board string yes Name or ID of the specific board
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_columns_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_columns_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes List of board columns to update
project string yes Project ID or project name
board string yes Name or ID of the specific board
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_rows_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_rows_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
board string yes Name or ID of the specific board
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_rows_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_rows_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes List of board rows to update
project string yes Project ID or project name
board string yes Name or ID of the specific board
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_boards_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_boards_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
id string yes identifier for board, either board's backlog level name (Eg:"Stories") or Id
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_boards_set_board_options 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_boards_set_board_options --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes options to updated
project string yes Project ID or project name
id string yes identifier for board, either category plural name (Eg:"Stories") or guid
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_chartimages_get_iterations_chart_image 10 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_chartimages_get_iterations_chart_image --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
team string yes Team ID or team name
name string yes The chart name. e.g. Velocity.
iterations_number number no Number of iterations the chart is for.
width number no The width of the chart in pixels. Must be greater than 0.
height number no The height of the chart in pixels. Must be greater than 0.
show_details boolean no Whether or not the chart should include detailed information (e.g. axis labels, titles, trend lines, etc.)
title string no The title of the chart. Can only be dislayed if ShowLabels is true.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_chartimages_get_iteration_chart_image 10 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_chartimages_get_iteration_chart_image --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
team string yes Team ID or team name
iteration_id string yes ID of the iteration.
name string yes The chart name. e.g. Burndown.
width number no The width of the chart in pixels. Must be greater than 0.
height number no The height of the chart in pixels. Must be greater than 0.
show_details boolean no Whether or not the chart should include detailed information (e.g. axis labels, titles, trend lines, etc.)
title string no The title of the chart. Can only be dislayed if ShowLabels is true.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_workitemsorder_reorder_iteration_work_items 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_workitemsorder_reorder_iteration_work_items --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
team string yes Team ID or team name
iteration_id string yes The id of the iteration
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_cardrulesettings_update_taskboard_card_rule_settings 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_cardrulesettings_update_taskboard_card_rule_settings --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_work_cardsettings_update_taskboard_card_settings 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_cardsettings_update_taskboard_card_settings --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.2`.
azure-devops.azure_devops_work_taskboard_columns_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_taskboard_columns_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_taskboard_columns_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_taskboard_columns_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_taskboard_work_items_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_taskboard_work_items_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
team string yes Team ID or team name
iteration_id string yes path parameter `iterationId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_taskboard_work_items_update 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_taskboard_work_items_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
team string yes Team ID or team name
iteration_id string yes path parameter `iterationId`.
work_item_id number yes path parameter `workItemId`.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_teamsettings_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_teamsettings_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_teamsettings_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_teamsettings_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes TeamSettings changes
project string yes Project ID or project name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_iterations_list 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_iterations_list --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
team string yes Team ID or team name
timeframe string no A filter for which iterations are returned based on relative time. Only Current is supported currently.
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_iterations_post_team_iteration 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_iterations_post_team_iteration --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Iteration to add
project string yes Project ID or project name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_iterations_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_iterations_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
id string yes ID of the iteration
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_iterations_delete 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_iterations_delete --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
id string yes ID of the iteration
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_capacities_get_capacities_with_identity_ref_and_totals 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_capacities_get_capacities_with_identity_ref_and_totals --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
iteration_id string yes ID of the iteration
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_work_capacities_replace_capacities_with_identity_ref 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_capacities_replace_capacities_with_identity_ref --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Team capacity to replace
project string yes Project ID or project name
iteration_id string yes ID of the iteration
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_work_capacities_get_capacity_with_identity_ref 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_capacities_get_capacity_with_identity_ref --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
iteration_id string yes ID of the iteration
team_member_id string yes ID of the team member
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_work_capacities_update 7 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_capacities_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Updated capacity
project string yes Project ID or project name
iteration_id string yes ID of the iteration
team_member_id string yes ID of the team member
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.3`.
azure-devops.azure_devops_work_teamdaysoff_get 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_teamdaysoff_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
iteration_id string yes ID of the iteration
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_teamdaysoff_update 6 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_teamdaysoff_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Team's days off patch containing a list of start and end dates
project string yes Project ID or project name
iteration_id string yes ID of the iteration
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_iterations_get_iteration_work_items 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_iterations_get_iteration_work_items --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
iteration_id string yes ID of the iteration
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_teamfieldvalues_get 4 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_teamfieldvalues_get --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
project string yes Project ID or project name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_teamfieldvalues_update 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_teamfieldvalues_update --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.
azure-devops.azure_devops_work_workitemsorder_reorder_backlog_work_items 5 parameters
Schema command
kosmo integrations:schema azure-devops.azure_devops_work_workitemsorder_reorder_backlog_work_items --json
ParameterTypeRequiredDescription
organization string yes The name of the Azure DevOps organization.
body object yes Request body matching the official Azure DevOps Swagger schema.
project string yes Project ID or project name
team string yes Team ID or team name
api_version string no Azure DevOps API version. Defaults to `7.2-preview.1`.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.