get_project_process_id
Retrieve the process ID for a specific project in Azure DevOps. Use to identify project processes, verify process details, or support process-related operations. Input the project ID or name to get formatted process information.
Instructions
Gets the process ID associated with a project.
Use this tool when you need to:
- Find out which process a project is using
- Get the process ID for use in other process-related operations
- Verify process information for a project
Args:
project: Project ID or project name
Returns:
Formatted information about the process including name and ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project": {
"title": "Project",
"type": "string"
}
},
"required": [
"project"
],
"title": "get_project_process_idArguments",
"type": "object"
}