GET
/
server
/
join-requests
/
{userId}
Get a specific join request
curl --request GET \
  --url https://api.melonly.xyz/api/v1/server/join-requests/{userId} \
  --header 'Authorization: <api-key>'
{
  "createdAt": 1625097600,
  "joinCode": "ABC123",
  "serverId": "server456",
  "userId": "user123"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

userId
string
required

User ID

Response

200
application/json

successfully retrieved join request details

The response is of type object.