* GET all properties * GET one property by id * CREATE one property * DELETE one property by id
32 lines
423 B
Plaintext
32 lines
423 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": "Mustername 1",
|
|
"street": "Musterstraße",
|
|
"houseNumber": "1",
|
|
"zipCode": "55123",
|
|
"city": "Musterstadt",
|
|
"country": "de",
|
|
"notes": "Lorem ipsum"
|
|
}
|
|
}
|
|
|
|
settings {
|
|
encodeUrl: true
|
|
}
|