# Show

Show the detail of the particular application user of the application.

# HTTP Request:

GET https://api.serveravatar.com/organizations/{organization}/servers/{server}/system-users/{system_user}

# Curl Request Example:

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

# Response:

# Application User Show

  • 200 (Ok)
{
    "systemUser": {
        "id": 66,
        "server_id": 15,
        "username": "0CGgPDK1NxUkTFMc",
        "password": "itj9WUV4tE2WW0jh",
        "public_key": null,
        "group": "system_users",
        "created_at": "2023-02-28 23:14:17",
        "updated_at": "2023-02-28 23:14:17",
        "deleted_at": null,
        "ssh_access": false
    }
}

# Application User Not Found

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

# 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:57:58 PM