list_accounts
Retrieve all accounts within a specified Octopus Deploy space, with optional filtering by name, account type, or other parameters to manage access credentials.
Instructions
List accounts in a space
This tool lists all accounts in a given space. The space name is required. You can optionally filter by various parameters like name, account type, etc.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| accountType | No | ||
| ids | No | ||
| partialName | No | ||
| skip | No | ||
| spaceName | Yes | ||
| take | No |
Input Schema (JSON Schema)
{
"properties": {
"accountType": {
"enum": [
"None",
"UsernamePassword",
"Token",
"SshKeyPair",
"AzureSubscription",
"AzureServicePrincipal",
"AzureManagementCertificate",
"AzureOidc",
"AmazonWebServicesAccount",
"AmazonWebServicesOidcAccount",
"GoogleCloudAccount",
"GenericOidcAccount"
],
"type": "string"
},
"ids": {
"items": {
"type": "string"
},
"type": "array"
},
"partialName": {
"type": "string"
},
"skip": {
"type": "number"
},
"spaceName": {
"type": "string"
},
"take": {
"type": "number"
}
},
"required": [
"spaceName"
],
"type": "object"
}