api de gestion de ticket, basé sur php-crud-api. Le but est de décorrélé les outils de gestion des données, afin
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

075_list_tag_usage.log 489B

123456789101112131415161718192021222324
  1. ===
  2. GET /records/tag_usage
  3. ===
  4. 200
  5. Content-Type: application/json; charset=utf-8
  6. Content-Length: 85
  7. {"records":[{"id":1,"name":"funny","count":2},{"id":2,"name":"important","count":2}]}
  8. ===
  9. GET /records/tag_usage/1
  10. ===
  11. 200
  12. Content-Type: application/json; charset=utf-8
  13. Content-Length: 33
  14. {"id":1,"name":"funny","count":2}
  15. ===
  16. DELETE /records/tag_usage/1
  17. ===
  18. 405
  19. Content-Type: application/json; charset=utf-8
  20. Content-Length: 58
  21. {"code":1015,"message":"Operation 'delete' not supported"}