Get report policy options

GET /user-reports

Get all the possible policy options that a user can select when making a user report.

Responses

  • 200 application/json

    OK

    Hide response attribute Show response attribute object
    • policies array[object] Required
      Hide policies attributes Show policies attributes object
GET /user-reports
curl \
 -X GET https://api.lassomoderation.com/api/v1/user-reports \
 -H "Authorization: Bearer lasso.a35afd...a6ea"
Response examples (200)
{
  "policies": [
    {
      "id": "rude_gestures",
      "name": "Rude Gestures"
    },
    {
      "id": "other",
      "name": "Other"
    }
  ]
}