GET
/
server
/
applications
/
{applicationId}
/
responses
Get application responses
curl --request GET \
  --url https://api.melonly.xyz/api/v1/server/applications/{applicationId}/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

applicationId
string
required

Application ID

Query Parameters

page
integer
default:1

Page number

Required range: x >= 1
limit
integer
default:10

Items per page

Required range: 1 <= x <= 100

Response

200
application/json

successfully retrieved paginated application responses

The response is of type object.