curl --request POST \
--url https://api.example.com/entity/moderation/suggested-flags/filter \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entityID": 1,
"entityTypeID": 1,
"fromDate": null,
"toDate": null,
"page": 1,
"pageSize": 10
}
'{
"success": true,
"data": "<unknown>"
}Returns the suggested flags data.
curl --request POST \
--url https://api.example.com/entity/moderation/suggested-flags/filter \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entityID": 1,
"entityTypeID": 1,
"fromDate": null,
"toDate": null,
"page": 1,
"pageSize": 10
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.