| 123456789101112131415161718192021 |
- meta {
- name: Create
- type: http
- seq: 1
- }
- post {
- url: http://localhost:8000/api/user
- body: json
- auth: none
- }
- body:json {
- {
- "name": "Lee Morgan",
- "email": "lee@leemorgan.dev",
- "password_hash": "leerobertmorgan",
- "password_salt": "leerobertmorgan",
- "encryption_salt": "Some encryption salt string"
- }
- }
|