Retrieve information for a specific account.
Successful Operation
Access token is missing or invalid
You do not have permission to perform this action.
Entity not found
Too many requests
$apiKey = 'your_automox_api_key' $headers = @{ "Authorization" = "Bearer $apiKey" "Content-Type" = "application/json" } $url = "https://console.automox.com/api/accounts/{accountId}" $response = (Invoke-WebRequest -Method Get -Uri $url -Headers $headers).Content
{- "id": "a18afd39-1182-4a78-8cd9-b410b9de2ea0",
- "name": "Test GZM",
- "type": "normal",
- "created_at": "2021-10-20T04:03:25+0000",
- "updated_at": "2021-10-20T04:03:25+0000"
}