get_account
Retrieve detailed account information by providing the space name and account ID to access specific account data within Octopus Deploy instances.
Instructions
Get details for a specific account by its ID
This tool retrieves detailed information about a specific account using its ID. The space name and account ID are both required.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountId | Yes | The ID of the account to retrieve | |
spaceName | Yes |
Input Schema (JSON Schema)
{
"properties": {
"accountId": {
"description": "The ID of the account to retrieve",
"type": "string"
},
"spaceName": {
"type": "string"
}
},
"required": [
"spaceName",
"accountId"
],
"type": "object"
}