GET
/
organizations
curl --request GET \
  --url https://managexrapi.com/organizations \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "id": "A1ZICsr6XwX5fv4E16QM",
    "name": "High school Musical",
    "activeDevices": 30,
    "deviceLicenses": 50
  },
  {
    "id": "EwmhggZ9zYIqMVVMz2s7",
    "name": "Sky High",
    "activeDevices": 50,
    "deviceLicenses": 100
  }
]

Authorizations

Authorization
string
header
required

API key based authentication where <encoded-value> is the Base64 encoding of API_KEY_ID:API_KEY_SECRET

  • Username: The API Key ID.
  • Password: The API Key Secret.

Response

200 - application/json
A list of organization summary objects.

The response is of type object[].