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.

24 lines
309 B

  1. meta {
  2. name: Emplace Resource
  3. type: http
  4. seq: 6
  5. }
  6. put {
  7. url: http://localhost:3000/api/users/2
  8. body: json
  9. auth: none
  10. }
  11. body:json {
  12. {
  13. "firstName": "John",
  14. "middleName": "Smith",
  15. "lastName": "Doe",
  16. "birthday": "1986-04-20",
  17. "bio": "This is my profile!",
  18. "id": 2
  19. }
  20. }