chore: Adds user creation route.
This commit is contained in:
parent
c7b71e754f
commit
1237a31f8b
29 changed files with 630 additions and 63 deletions
20
routes/Hermes API/Users/Create.bru
Normal file
20
routes/Hermes API/Users/Create.bru
Normal file
|
@ -0,0 +1,20 @@
|
|||
meta {
|
||||
name: Create
|
||||
type: http
|
||||
seq: 1
|
||||
}
|
||||
|
||||
post {
|
||||
url: http://127.0.0.1:8000/api/v1/users/create
|
||||
body: json
|
||||
auth: inherit
|
||||
}
|
||||
|
||||
body:json {
|
||||
{
|
||||
"name": "Test User",
|
||||
"email": "test@example.com",
|
||||
"username": "testuser",
|
||||
"password": "hunter123"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue