Changes http requests for bruno

This commit is contained in:
Dennis Schoepf 2024-05-31 19:55:00 +02:00
parent d7a61290fa
commit 89d4cac2c8

View file

@ -0,0 +1,22 @@
meta {
name: Create user
type: http
seq: 1
}
post {
url: {{base_url}}/api/v1/users
body: json
auth: none
}
headers {
x-api-key: {{api_key}}
}
body:json {
{
"firstName": "Dennis",
"email": "me@dnsc.io"
}
}