get_release_by_id
Retrieve detailed information about a specific Octopus Deploy release using its unique identifier and space name to access deployment data and configuration details.
Instructions
Get details for a specific release by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
releaseId | Yes | The ID of the release to retrieve | |
spaceName | Yes | The space name |
Input Schema (JSON Schema)
{
"properties": {
"releaseId": {
"description": "The ID of the release to retrieve",
"type": "string"
},
"spaceName": {
"description": "The space name",
"type": "string"
}
},
"required": [
"spaceName",
"releaseId"
],
"type": "object"
}