Files
skamp/bruno/propify/Properties/Create new.bru
Murat Özkorkmaz 7be4c611b3 Initial commit with basic CRUD functionality:
* GET all properties
* GET one property by id
* CREATE one property
* DELETE one property by id
2025-08-25 14:06:29 +02:00

28 lines
377 B
Plaintext

meta {
name: Create new
type: http
seq: 3
}
post {
url: {{BASE_URL}}/api/{{API_VERSION}}/properties
body: json
auth: inherit
}
body:json {
{
"name": "Mustername 1",
"street": "Musterstraße",
"houseNumber": "1",
"zipCode": "55123",
"city": "Musterstadt",
"country": "de",
"notes": "Lorem ipsum"
}
}
settings {
encodeUrl: true
}