List Puzzle 获取Puzzle列表

POST /v1/platform/puzzle/list

  • =》
{ 
  "token": "xxx", //必填
  "lang": "en", //必填
  "id": 0, //默认为0
  "category": "xxx", //默认为空
  "sub": "xxx", //默认为空
  "status": 0, //0表示所有,其它数值可以单个使用(支持按位或操作查询)
  "offset": 0, //分页或更多使用,为空时,默认为0
  "limit": 10  //每次拉取条数,为空时,默认为10,最大100
}
  • 《=
{
  "success": "OK",
  "data": {
    "total": 8,
    "list": [{
      "id": 1008,
      "history_id": 1001,
      "category": "Food",
      "sub": "Cake",
      "title": "This is just a title.",
      "alias": "This is just a alias.",
      "slug": "this-is-just-a-title",
      "bg_color": "#FF0000",
      "img": "https://xxx.com/xxx.jpg",
      "img_via": "UnSplash",
      "img_url": "https://xxx.com/xxx.jpg",
      "tags": "aaa,bbb",
      "descr": "This is just a descr",
      "descr_alias": "This is just a descr alias",
      "remark": "xxx",
      "status": 0,
      "updated_at": 1710907382,
      "lang": "ar"
    }]
  }
}