Files
skamp/bruno/propify/Properties/Delete one by ID.bru
Murat Özkorkmaz 9735f1f398 Initial commit with basic CRUD functionality:
* GET all properties
* GET one property by id
* CREATE one property
* DELETE one property by id
2025-08-28 12:57:36 +02:00

32 lines
466 B
Plaintext

meta {
name: Delete one by ID
type: http
seq: 4
}
delete {
url: API_BASE_URL}}/api/{{API_VERSION}}/properties/e64d5e53-cd45-45fb-9237-46078077bf22
body: json
auth: bearer
}
auth:bearer {
token: {{BEARER_TOKEN}}
}
body:json {
{
"name": "Mustername 1",
"street": "Musterstraße",
"houseNumber": "1",
"zipCode": "55123",
"city": "Musterstadt",
"country": "de",
"notes": "Lorem ipsum"
}
}
settings {
encodeUrl: true
}