-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is an automated pull request to update from branch publish/master Co-authored-by: europace <[email protected]>
- Loading branch information
1 parent
d7911cf
commit a48ac53
Showing
3 changed files
with
141 additions
and
109 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ info: | |
name: Europace AG | ||
url: http://developer.europace.de | ||
email: [email protected] | ||
version: 1.5.1; bfcf94b3f1cd3c65b2b42cedeccbf9bb5b06044a | ||
version: 1.5.2; c2d42ae98c9625787421e64c9c9c84cb69a9f408 | ||
externalDocs: | ||
url: https://developer.europace.de/api/baufismart-kundenangaben-api | ||
servers: | ||
|
@@ -45,6 +45,14 @@ paths: | |
schema: | ||
type: string | ||
responses: | ||
"503": | ||
$ref: '#/components/responses/ServiceNotAvailable' | ||
"404": | ||
$ref: '#/components/responses/NotFound' | ||
"401": | ||
$ref: '#/components/responses/Unauthorized' | ||
"429": | ||
$ref: '#/components/responses/TooManyRequests' | ||
"200": | ||
description: Kundenangaben für einen bestehenden Vorgang | ||
headers: | ||
|
@@ -55,14 +63,6 @@ paths: | |
application/json;version=1.0: | ||
schema: | ||
$ref: '#/components/schemas/Kundenangaben' | ||
"503": | ||
$ref: '#/components/responses/ServiceNotAvailable' | ||
"404": | ||
$ref: '#/components/responses/NotFound' | ||
"401": | ||
$ref: '#/components/responses/Unauthorized' | ||
"429": | ||
$ref: '#/components/responses/TooManyRequests' | ||
"403": | ||
$ref: '#/components/responses/Forbidden' | ||
"409": | ||
|
@@ -101,16 +101,16 @@ paths: | |
$ref: '#/components/schemas/UpdateKundenangabenRequest' | ||
required: true | ||
responses: | ||
"503": | ||
$ref: '#/components/responses/ServiceNotAvailable' | ||
"404": | ||
$ref: '#/components/responses/NotFound' | ||
"204": | ||
description: Kundenangaben in einem bestehenden Vorgang überschrieben | ||
headers: | ||
X-TraceId: | ||
$ref: '#/components/headers/tracingIdHeader' | ||
style: simple | ||
"503": | ||
$ref: '#/components/responses/ServiceNotAvailable' | ||
"404": | ||
$ref: '#/components/responses/NotFound' | ||
"422": | ||
$ref: '#/components/responses/UnprocessableEntity' | ||
"401": | ||
|
@@ -152,6 +152,16 @@ paths: | |
$ref: '#/components/schemas/ImportKundenangabenRequest' | ||
required: true | ||
responses: | ||
"201": | ||
description: Kundenangaben in neuen Vorgang importiert | ||
headers: | ||
X-TraceId: | ||
$ref: '#/components/headers/tracingIdHeader' | ||
style: simple | ||
content: | ||
application/json;version=1.0: | ||
schema: | ||
$ref: '#/components/schemas/KundenangabenImportResponse' | ||
"503": | ||
$ref: '#/components/responses/ServiceNotAvailable' | ||
"422": | ||
|
@@ -164,16 +174,6 @@ paths: | |
$ref: '#/components/responses/Forbidden' | ||
"409": | ||
$ref: '#/components/responses/Conflict' | ||
"201": | ||
description: Kundenangaben in neuen Vorgang importiert | ||
headers: | ||
X-TraceId: | ||
$ref: '#/components/headers/tracingIdHeader' | ||
style: simple | ||
content: | ||
application/json;version=1.0: | ||
schema: | ||
$ref: '#/components/schemas/KundenangabenImportResponse' | ||
"400": | ||
$ref: '#/components/responses/BadRequest' | ||
security: | ||
|
@@ -3856,6 +3856,8 @@ components: | |
- $ref: '#/components/schemas/Darlehensgeber' | ||
- type: object | ||
properties: | ||
name: | ||
type: string | ||
produktanbieter: | ||
type: string | ||
enum: | ||
|
Oops, something went wrong.