# Summary

Get the short data summary of the server.

# HTTP Request:

GET https://api.serveravatar.com/organizations/{organization}/servers/{server}/summary

# Curl Request example:

curl --request GET \
  --url "https://api.serveravatar.com/organizations/{organization}/servers/{server}/summary" \
  --header 'content-type: application/json' \
  --header 'Authorization: <YOUR API TOKEN>'

# Response:

# Server Summary

  • 200 (Ok)
{
  "summary": {
    "system_users": 0,
    "applications": 0,
    "databases": 0,
    "cronjobs": 0
  }
}

# Organization Not Found

  • 404 (Not found)
{
  "message": "Organization not found."
}

# Server Not Found

  • 404 (Not Found)
{
    "message": "Server not found!"
}

# Server Error

  • 500 (Internal Server Error)
{
    "message": "Something went really wrong!"
}
Last Updated: 3/1/2023, 1:59:47 PM