get_certificate
Retrieve detailed certificate information by ID from Octopus Deploy to inspect certificate properties and verify configuration settings.
Instructions
Get details for a specific certificate by its ID
This tool retrieves detailed information about a specific certificate using its ID. The space name and certificate ID are both required.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
certificateId | Yes | The ID of the certificate to retrieve | |
spaceName | Yes |
Input Schema (JSON Schema)
{
"properties": {
"certificateId": {
"description": "The ID of the certificate to retrieve",
"type": "string"
},
"spaceName": {
"type": "string"
}
},
"required": [
"spaceName",
"certificateId"
],
"type": "object"
}