HATEOAS-first backend framework.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Patch Resource.bru 241 B

12345678910111213141516171819202122
  1. meta {
  2. name: Patch Resource
  3. type: http
  4. seq: 7
  5. }
  6. patch {
  7. url: http://localhost:3000/api/users/1
  8. body: json
  9. auth: none
  10. }
  11. headers {
  12. Content-Type: application/json
  13. }
  14. body:json {
  15. {
  16. "bio": "This is my updated bio!"
  17. }
  18. }