GET
/
server
/
loas
/
{loaId}
Get a specific LOA
curl --request GET \
  --url https://api.melonly.xyz/api/v1/server/loas/{loaId} \
  --header 'Authorization: <api-key>'
{
  "cancelledAt": 123,
  "createdAt": 123,
  "denyReason": "<string>",
  "endAt": 123,
  "endedAt": 123,
  "endedBy": "<string>",
  "expiredAt": 123,
  "extensionRequests": [
    {}
  ],
  "id": "<string>",
  "memberId": "<string>",
  "reason": "<string>",
  "reasonHistory": [
    {}
  ],
  "reviewedAt": 123,
  "reviewedBy": "<string>",
  "serverId": "<string>",
  "startAt": 123,
  "startType": 123,
  "startedAt": 123,
  "status": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

loaId
string
required

LOA ID

Response

200
application/json

Successfully retrieved LOA details

The response is of type object.