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.

27 righe
340 B

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