Adds test request to create user

This commit is contained in:
Dennis Schoepf 2024-04-28 20:05:11 +02:00
parent 4a4268626e
commit 832b91a9b5

View file

@ -4,12 +4,19 @@ meta {
seq: 1
}
get {
post {
url: {{base_url}}/api/v1/users
body: none
body: json
auth: none
}
headers {
x-api-key: {{api_key}}
}
body:json {
{
"firstName": "Dennis",
"email": "me@dnsc.io"
}
}