HATEOAS-first backend framework.
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.

23 lines
241 B

  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. }