Retrieve information for a specific account.

Retrieve information for a specific account.

SecuritybearerAuth
Request
path Parameters
accountId
required
string <uuid>

Account ID for the specified account

Responses
200

Successful Operation

401

Access token is missing or invalid

403

You do not have permission to perform this action.

404

Entity not found

429

Too many requests

get/accounts/{accountId}
Request samples
$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
Response samples
application/json
{
  • "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"
}