Create.bru 249 B

12345678910111213141516171819
  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": "something",
  15. "password_salt": "Something else"
  16. }
  17. }