get_tenant_by_id
Retrieve detailed information about a specific Octopus Deploy tenant using its unique identifier to manage customer-specific deployments, configurations, and logical groupings.
Instructions
Get details for a specific tenant by its ID. Tenants represent customers or clients in Octopus Deploy, allowing you to manage deployments and configurations specific to each tenant. Tenants can be grouped into tenant tags for easier management and deployment targeting. Tenants can also represent geographical locations, organizational units, or any other logical grouping.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
spaceName | Yes | The space name | |
tenantId | Yes | The ID of the tenant to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"spaceName": {
"description": "The space name",
"type": "string"
},
"tenantId": {
"description": "The ID of the tenant to retrieve",
"type": "string"
}
},
"required": [
"spaceName",
"tenantId"
],
"type": "object"
}