GET
/
server
/
applications
/
user
/
{userId}
/
responses
Get user application responses
curl --request GET \
  --url https://api.melonly.xyz/api/v1/server/applications/user/{userId}/responses \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "answers": {},
      "applicationId": "<string>",
      "comments": {},
      "createdAt": 123,
      "finalizedAt": 123,
      "finalizedBy": "<string>",
      "flagged": {},
      "id": "<string>",
      "reason": "<string>",
      "reviewedAt": 123,
      "reviewedBy": "<string>",
      "robloxId": "<string>",
      "stagingStatus": 123,
      "status": 123,
      "userId": "<string>"
    }
  ],
  "page": 1,
  "pageSize": 10,
  "total": 100,
  "totalPages": 10
}

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 paginated user application responses

The response is of type object.