HATEOAS-first backend framework.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

19 líneas
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. }