Create.bru 340 B

123456789101112131415161718192021222324252627
  1. meta {
  2. name: Create
  3. type: http
  4. seq: 1
  5. }
  6. post {
  7. url: http://localhost:8000/workout
  8. body: json
  9. auth: none
  10. }
  11. body:json {
  12. {
  13. "name": "Some workout",
  14. "exercises": [
  15. {
  16. "name": "First",
  17. "type": "weights"
  18. },
  19. {
  20. "name": "Second exercise",
  21. "type": "weights"
  22. }
  23. ]
  24. }
  25. }