Query parameters
- 
    
  The page number in a paginated set of results 
- 
    
  The limit of results to be returned per page 
- 
    
  The status of the reported resource 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
  
  curl \
 --request GET 'https://openapi.meltingspot.io/v1/reportedResources'
        Response examples (200)
  
  {
  "items": [
    {
      "id": "string",
      "ownerId": "string",
      "ownerType": "ThreadMessage",
      "status": "PendingReview",
      "author": {
        "firstName": "string",
        "lastName": "string",
        "profilePicture": "string",
        "spotMemberId": "string"
      },
      "lastReportId": "string",
      "createdAt": 42
    }
  ],
  "total": 42
}