From 32e41f710b7e9fabb1c6abfa1002c4b6a9ca698f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Murat=20=C3=96zkorkmaz?= Date: Mon, 25 Aug 2025 14:29:17 +0200 Subject: [PATCH] Initial commit with basic CRUD functionality: * GET all properties * GET one property by id * CREATE one property * DELETE one property by id --- bruno/propify/Properties/Delete one by ID.bru | 27 +++++++++++++++++++ bruno/propify/Properties/Get one by ID.bru | 15 +++++++++++ 2 files changed, 42 insertions(+) create mode 100644 bruno/propify/Properties/Delete one by ID.bru create mode 100644 bruno/propify/Properties/Get one by ID.bru diff --git a/bruno/propify/Properties/Delete one by ID.bru b/bruno/propify/Properties/Delete one by ID.bru new file mode 100644 index 0000000..d71ff16 --- /dev/null +++ b/bruno/propify/Properties/Delete one by ID.bru @@ -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 +} diff --git a/bruno/propify/Properties/Get one by ID.bru b/bruno/propify/Properties/Get one by ID.bru new file mode 100644 index 0000000..018a2a9 --- /dev/null +++ b/bruno/propify/Properties/Get one by ID.bru @@ -0,0 +1,15 @@ +meta { + name: Get one by ID + type: http + seq: 2 +} + +get { + url: {{BASE_URL}}/api/{{API_VERSION}}/properties/b6ab79d8-f7eb-4fb7-acde-e3310cb0166c + body: none + auth: inherit +} + +settings { + encodeUrl: true +}