get_deployment_process
Retrieve deployment process details by ID to inspect project deployment workflows, steps, and actions for troubleshooting and analysis.
Instructions
Get deployment process by ID
This tool retrieves a deployment process by its ID. Each project has a deployment process attached, and releases/deployments can also have frozen processes attached.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branchName | No | Optional branch name to get the deployment process for a specific branch (if using version controlled projects). Try `main` or `master` if unsure. | |
includeDetails | No | Include detailed properties for steps and actions. Defaults to false. | |
processId | No | The ID of the deployment process to retrieve. If not provided, the deployment process for the project will be retrieved. | |
projectId | No | The ID of the project to retrieve the deployment process for. If processId is not provided, this parameter is required. | |
spaceName | Yes |
Input Schema (JSON Schema)
{
"properties": {
"branchName": {
"description": "Optional branch name to get the deployment process for a specific branch (if using version controlled projects). Try `main` or `master` if unsure.",
"type": "string"
},
"includeDetails": {
"default": false,
"description": "Include detailed properties for steps and actions. Defaults to false.",
"type": "boolean"
},
"processId": {
"description": "The ID of the deployment process to retrieve. If not provided, the deployment process for the project will be retrieved.",
"type": "string"
},
"projectId": {
"description": "The ID of the project to retrieve the deployment process for. If processId is not provided, this parameter is required.",
"type": "string"
},
"spaceName": {
"type": "string"
}
},
"required": [
"spaceName"
],
"type": "object"
}