Query parameters
- 
    
  The page number in a paginated set of results 
- 
    
  The limit of results to be returned per page 
- 
    
  The status of the report Values are PendingReview,Declined, orAccepted.
- 
    
  The reason of the report Values are Misinformation,InappropriateContent,HateSpeechOrDiscrimination,HarassmentOrOffensive,Spam, orOther.
- 
    
  Reports where creation date is before a specific date (Unix timestamp format) 
- 
    
  Reports where creation date is after a specific date (Unix timestamp format) 
        GET
    /v1/reportedResources/{reportedResourceId}/reports
  
  curl \
 --request GET 'https://openapi.meltingspot.io/v1/reportedResources/{reportedResourceId}/reports'
        Response examples (200)
  
  {
  "items": [
    {
      "id": "string",
      "spotId": "string",
      "userId": "string",
      "email": "string",
      "title": "string",
      "lang": "en",
      "role": "Member",
      "customRoleId": "string",
      "status": "Accepted",
      "firstname": "string",
      "lastname": "string",
      "warnings": 42.0,
      "embedBaseUrls": {
        "default": "string",
        "additionalProperty1": "string",
        "additionalProperty2": "string"
      },
      "updatedAt": 42,
      "lastActivityAt": 42
    }
  ],
  "total": 42
}