Organization details

Returns a detailed list of all organizations for the authenticated user. See Using Global API Keys for more information on permission and scope requirements.

SecuritybearerAuth
Request
query Parameters
page
integer
Default: 0

The page of results you wish to be returned with page numbers starting at 0. See About Automox API - Pagination

limit
integer [ 1 .. 500 ]
Default: 500

A limit on the number of results to be returned, between 1 and 500, with a default of 500. Use with page parameter. See About Automox API - Pagination

Responses
200

Successful Operation

4XX

Invalid Request

default

Invalid Request

get/orgs
Request samples
$apiKey = 'your_automox_api_key'
$headers = @{
    "Authorization" = "Bearer $apiKey"
    "Content-Type" = "application/json"
}
$url = "https://console.automox.com/api/orgs"
$response = (Invoke-WebRequest -Method Get -Uri $url -Headers $headers).Content
Response samples
application/json
[
  • {
    • "id": 0,
    • "name": "string",
    • "create_time": "2019-08-24T14:15:22Z",
    • "access_key": "string",
    • "trial_end_time": "2019-08-24T14:15:22Z",
    • "tier": "trial",
    • "parent_id": 0,
    • "device_limit": 0,
    • "device_count": 0,
    • "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
    • "soft_device_limit": 0,
    • "metadata": {
      • "patchServersDone": true
      }
    }
]