Create.bru 336 B

123456789101112131415161718192021
  1. meta {
  2. name: Create
  3. type: http
  4. seq: 1
  5. }
  6. post {
  7. url: http://localhost:8000/api/user
  8. body: json
  9. auth: none
  10. }
  11. body:json {
  12. {
  13. "name": "Lee Morgan",
  14. "email": "lee@leemorgan.dev",
  15. "password_hash": "leerobertmorgan",
  16. "password_salt": "leerobertmorgan",
  17. "encryption_salt": "Some encryption salt string"
  18. }
  19. }