Get report policy options
Get all the possible policy options that a user can select when making a user report.
GET /user-reports
curl \
-X GET https://api.lassomoderation.com/api/v1/user-reports \
-H "Authorization: Bearer lasso.a35afd...a6ea"
Response examples (200)
{
"success": true,
"policies": [
{
"id": "rude_gestures",
"name": "Rude Gestures",
"description": "Images containing rude gestures",
"translations": {
"name": {
"en": "Rude Gestures",
"nl": "Onbeschofte gebaren"
},
"description": {
"en": "Images containing rude gestures",
"nl": "Afbeeldingen met onbeschofte gebaren"
}
}
},
{
"id": "other",
"name": "Other"
}
]
}