HATEOAS-first backend framework.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

26 righe
360 B

  1. meta {
  2. name: Modify Post (Delta)
  3. type: http
  4. seq: 6
  5. }
  6. patch {
  7. url: http://localhost:6969/api/posts/9ba60691-0cd3-4e8a-9f44-e92b19fcacbc
  8. body: json
  9. auth: none
  10. }
  11. headers {
  12. Content-Type: application/json-patch+json
  13. }
  14. body:json {
  15. [
  16. {
  17. "op": "replace",
  18. "path": "content",
  19. "value": "I changed the value via delta."
  20. }
  21. ]
  22. }