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.

19 righe
203 B

  1. meta {
  2. name: Create Post
  3. type: http
  4. seq: 2
  5. }
  6. post {
  7. url: http://localhost:6969/api/posts
  8. body: json
  9. auth: none
  10. }
  11. body:json {
  12. {
  13. "title": "New Post",
  14. "content": "Hello there"
  15. }
  16. }