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-28 12:57:36 +02:00
parent 32e41f710b
commit 9735f1f398
14 changed files with 241 additions and 18 deletions

View File

@@ -5,9 +5,13 @@ meta {
}
post {
url: {{BASE_URL}}/api/{{API_VERSION}}/properties
url: {{API_BASE_URL}}/api/{{API_VERSION}}/properties
body: json
auth: inherit
auth: bearer
}
auth:bearer {
token: {{BEARER_TOKEN}}
}
body:json {

View File

@@ -5,9 +5,13 @@ meta {
}
delete {
url: {{BASE_URL}}/api/{{API_VERSION}}/properties/e64d5e53-cd45-45fb-9237-46078077bf22
url: API_BASE_URL}}/api/{{API_VERSION}}/properties/e64d5e53-cd45-45fb-9237-46078077bf22
body: json
auth: inherit
auth: bearer
}
auth:bearer {
token: {{BEARER_TOKEN}}
}
body:json {

View File

@@ -5,9 +5,13 @@ meta {
}
get {
url: {{BASE_URL}}/api/{{API_VERSION}}/properties
url: {{API_BASE_URL}}/api/{{API_VERSION}}/properties
body: none
auth: inherit
auth: bearer
}
auth:bearer {
token: {{BEARER_TOKEN}}
}
settings {

View File

@@ -5,9 +5,13 @@ meta {
}
get {
url: {{BASE_URL}}/api/{{API_VERSION}}/properties/b6ab79d8-f7eb-4fb7-acde-e3310cb0166c
url: {{API_BASE_URL}}/api/{{API_VERSION}}/properties/5dba067e-d7fd-4d79-a08a-ec379834938a
body: none
auth: inherit
auth: bearer
}
auth:bearer {
token: {{BEARER_TOKEN}}
}
settings {