list_accounts
Retrieve and filter accounts within a domain on the CloudStack MCP Server by account type or state to manage user roles and access effectively.
Instructions
List accounts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accounttype | No | Account type (0=User, 1=Admin, 2=DomainAdmin) | |
domainid | No | Domain ID to filter accounts | |
state | No | Account state |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"accounttype": {
"description": "Account type (0=User, 1=Admin, 2=DomainAdmin)",
"type": "number"
},
"domainid": {
"description": "Domain ID to filter accounts",
"type": "string"
},
"state": {
"description": "Account state",
"type": "string"
}
},
"type": "object"
}