GET
/
reports
/
submissions
Fetches reports submissions
curl --request GET \
  --url https://api.reporta.ng/api/v1/external/reports/submissions \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "message": "<string>",
  "data": {
    "data": [
      {
        "id": "<string>",
        "companyId": "<string>",
        "userId": "<string>",
        "listingStatus": "<string>",
        "exitedListAt": "<string>",
        "exitListReason": "<string>",
        "fraudType": "<string>",
        "fraudReason": "<string>",
        "showUploaderInfo": true,
        "attachments": [
          "<string>"
        ],
        "status": "published",
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z",
        "reportingCompany": {
          "businessName": "<string>",
          "id": "<string>"
        },
        "identifiers": [
          {
            "label": "<string>",
            "value": "<string>"
          }
        ]
      }
    ],
    "meta": {
      "total": 123,
      "page": 123,
      "limit": 123
    }
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

page
integer
default:1

The page of results to fetch (default is 1).

limit
integer
default:10

The number of results per page (default is 10).

Response

200
application/json

Successfully fetched reports

The response is of type object.