GET
/
server
/
logs
/
{logId}
Get a specific log
curl --request GET \
  --url https://api.melonly.xyz/api/v1/server/logs/{logId} \
  --header 'Authorization: <api-key>'
{
  "completedBy": "<string>",
  "createdAt": 123,
  "createdBy": "<string>",
  "description": "<string>",
  "editedBy": [
    {}
  ],
  "expired": true,
  "expiredAt": 123,
  "expiredBy": "<string>",
  "hidden": true,
  "hiddenBy": "<string>",
  "id": "<string>",
  "proof": [
    {}
  ],
  "robloxId": "<string>",
  "serverId": "<string>",
  "tempBan": true,
  "text": "<string>",
  "type": 123,
  "typeId": "<string>",
  "unbanAt": 123,
  "username": "<string>"
}

Authorizations

Authorization
string
header
required

Type "Bearer" followed by a space and the API token.

Path Parameters

logId
string
required

Log ID

Response

200
application/json

Successfully retrieved log details

The response is of type object.