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.

078_edit_event_with_nullable_bigint.log 785B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ===
  2. GET /records/events/1
  3. ===
  4. 200
  5. Content-Type: application/json; charset=utf-8
  6. Content-Length: 70
  7. {"id":1,"name":"Launch","datetime":"2016-01-01 13:01:01","visitors":0}
  8. ===
  9. PUT /records/events/1
  10. {"datetime":null,"visitors":null}
  11. ===
  12. 200
  13. Content-Type: application/json; charset=utf-8
  14. Content-Length: 1
  15. 1
  16. ===
  17. GET /records/events/1
  18. ===
  19. 200
  20. Content-Type: application/json; charset=utf-8
  21. Content-Length: 56
  22. {"id":1,"name":"Launch","datetime":null,"visitors":null}
  23. ===
  24. PUT /records/events/1
  25. {"datetime":"2016-01-01 13:01:01","visitors":0}
  26. ===
  27. 200
  28. Content-Type: application/json; charset=utf-8
  29. Content-Length: 1
  30. 1
  31. ===
  32. GET /records/events/1
  33. ===
  34. 200
  35. Content-Type: application/json; charset=utf-8
  36. Content-Length: 70
  37. {"id":1,"name":"Launch","datetime":"2016-01-01 13:01:01","visitors":0}