get_process_details
Retrieve detailed information about a specific process in Azure DevOps, including its properties, configuration, and defined work item types. Use this tool to verify if a process is the default for your organization.
Instructions
Gets detailed information about a specific process.
Use this tool when you need to:
- View process properties and configuration
- Get a list of work item types defined in a process
- Check if a process is the default for the organization
Args:
process_id: The ID of the process
Returns:
Detailed information about the process including properties and
available work item types
Input Schema
Name | Required | Description | Default |
---|---|---|---|
process_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"process_id": {
"title": "Process Id",
"type": "string"
}
},
"required": [
"process_id"
],
"title": "get_process_detailsArguments",
"type": "object"
}