advsec_get_alert_details
Retrieve detailed information for a specific Advanced Security alert in Azure DevOps by specifying project, repository, and alert ID using PAT authentication.
Instructions
Get detailed information about a specific Advanced Security alert.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
alertId | Yes | The ID of the alert to retrieve details for. | |
project | Yes | The name or ID of the Azure DevOps project. | |
ref | No | Git reference (branch) to filter the alert. | |
repository | Yes | The name or ID of the repository containing the alert. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"alertId": {
"description": "The ID of the alert to retrieve details for.",
"type": "number"
},
"project": {
"description": "The name or ID of the Azure DevOps project.",
"type": "string"
},
"ref": {
"description": "Git reference (branch) to filter the alert.",
"type": "string"
},
"repository": {
"description": "The name or ID of the repository containing the alert.",
"type": "string"
}
},
"required": [
"project",
"repository",
"alertId"
],
"type": "object"
}