Skip to main content
POST
/
entity
/
moderation
/
suggested-flags
/
save
Reporting isers and other entity types
curl --request POST \
  --url https://api.example.com/entity/moderation/suggested-flags/save \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "languageID": 1,
  "entityID": 1,
  "entityCode": null,
  "entityTypeID": 1,
  "entityHistoryReasonTypeID": 1,
  "flagTypeIDs": null,
  "otherFlagNote": null
}
'
{
  "success": true,
  "data": "<unknown>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
languageID
integer<int32>
default:1
entityID
integer<int32> | null
default:1
entityCode
string<uuid> | null
entityTypeID
integer<int32>
default:1
entityHistoryReasonTypeID
integer<int32> | null
default:1
flagTypeIDs
integer<int32>[] | null
otherFlagNote
string | null

Response

Success

success
boolean
data
unknown