Create.bru 310 B

1234567891011121314151617181920
  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. "email": "lee@leemorgan.dev",
  14. "password_hash": "leerobertmorgan",
  15. "password_salt": "leerobertmorgan",
  16. "encryption_salt": "Some encryption salt string"
  17. }
  18. }