Initial commit with basic CRUD functionality:

* GET all properties
* GET one property by id
* CREATE one property
* DELETE one property by id
This commit is contained in:
2025-08-25 14:29:17 +02:00
parent 7be4c611b3
commit 32e41f710b
2 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
meta {
name: Delete one by ID
type: http
seq: 4
}
delete {
url: {{BASE_URL}}/api/{{API_VERSION}}/properties/e64d5e53-cd45-45fb-9237-46078077bf22
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
}