HATEOAS-first backend framework.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

24 satır
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. }