Implemented bulk import of persons
All checks were successful
Build, Push and Deploy / build-and-deploy (push) Successful in 1m43s

This commit is contained in:
Murat Özkorkmaz
2025-11-04 13:40:33 +01:00
parent d85406f0c7
commit 62c13ff0b1
9 changed files with 497 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
meta {
name: Auth Bruno
type: http
seq: 2
seq: 1
}
post {

View File

@@ -0,0 +1,39 @@
meta {
name: Upload Organizations
type: http
seq: 3
}
post {
url: {{API_BASE_URL}}/api/{{API_VERSION}}/data-import/organizations
body: multipartForm
auth: bearer
}
auth:bearer {
token: {{BEARER_TOKEN}}
}
body:json {
{
"name": "Bungalow",
"street": "Hebbelstraße",
"houseNumber": "30",
"zipCode": "55127",
"city": "Mainz",
"country": "DE",
"notes": "Lorem ipsum"
}
}
body:multipart-form {
file: @file(/Users/muratoezkorkmaz/projects/misc/skamp/init_data/organizations-17911945-23.xlsx)
}
body:file {
file: @file(/Users/murat/Pictures/IMG_0229.jpeg) @contentType(image/jpeg)
}
settings {
encodeUrl: true
}

View File

@@ -1,7 +1,7 @@
meta {
name: Upload files
name: Upload Persons
type: http
seq: 1
seq: 2
}
post {