Files
skamp/bruno/propify/Properties/Create new.bru
Murat Özkorkmaz 5eb6b6e738 Some improvements:
* Switches to PostgreSQL
* Added Minio storage
* Added attachments to properties
* Introduced DTOs for improved security
2025-09-03 15:40:26 +02:00

32 lines
414 B
Plaintext

meta {
name: Create new
type: http
seq: 3
}
post {
url: {{API_BASE_URL}}/api/{{API_VERSION}}/properties
body: json
auth: bearer
}
auth:bearer {
token: {{BEARER_TOKEN}}
}
body:json {
{
"name": "Bungalow",
"street": "Hebbelstraße",
"houseNumber": "30",
"zipCode": "55127",
"city": "Mainz",
"country": "DE",
"notes": "Lorem ipsum"
}
}
settings {
encodeUrl: true
}