Create.bru 312 B

1234567891011121314151617181920212223242526
  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. "exercises": [
  14. {
  15. "name": "First",
  16. "type": "weights"
  17. },
  18. {
  19. "name": "Second exercise",
  20. "type": "weights"
  21. }
  22. ]
  23. }
  24. }