Template
1
0
Files
boilerplate/api/.bruno/account/Create.bru

26 lines
267 B
Plaintext

meta {
name: Create
type: http
seq: 1
}
post {
url: {{url}}/accounts
body: json
auth: inherit
}
body:json {
{
"name": {
"given": "John",
"family": "Doe"
},
"email": "john.doe@fixture.none"
}
}
settings {
encodeUrl: true
}