查询敏感词接口[单条]

  • 接口说明: 查询敏感词[单条]
  • 接口地址: /api/stop-words/{id}
  • 请求方式: GET

请求参数

请求示例

返回说明

敏感词标识释义
{IGNORE} 忽略、不处理
{MOD} 审核
{BANNED} 禁用、禁止使用
{REPLACE} 替换

  • 成功,http 状态码: 200
  • 失败,http 状态码: 404

返回结果

关联数据模型字段释义请参见相应文档

参数名称类型出现要求描述
dataobject基础数据
typestring数据类型
idint数据 id
attributesobject数据属性
attributes.ugcstring针对用户内容的处理方式
attributes.usernamestring针对用户名的处理方式
attributes.findstring敏感词或敏感词查找正则
attributes.replacementstring待替换的内容
attributes.created_atdatetime创建时间
attributes.updated_atdatetime修改时间
relationshipsobject关联关系
includedobject关联数据

返回示例

  1. {
  2. "data": {
  3. "type": "stop-words",
  4. "id": "31",
  5. "attributes": {
  6. "ugc": "{MOD}",
  7. "username": "{REPLACE}",
  8. "find": "reciprocal invoice",
  9. "replacement": "sky blue implement",
  10. "created_at": "2019-10-24T15:16:33+08:00",
  11. "updated_at": "2019-11-07T14:30:44+08:00"
  12. },
  13. "relationships": {
  14. "user": {
  15. "data": {
  16. "type": "users",
  17. "id": "1"
  18. }
  19. }
  20. }
  21. },
  22. "included": [
  23. {
  24. "type": "users",
  25. "id": "1",
  26. "attributes": {
  27. "username": "username",
  28. "nickname": null,
  29. "mobile": "",
  30. "unionId": "",
  31. "lastLoginIp": "127.0.0.1",
  32. "createdAt": "2019-10-11T00:00:00+08:00",
  33. "updatedAt": "2019-11-11T14:51:34+08:00"
  34. }
  35. }
  36. ]
  37. }