Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
parameters:
- $ref: '../../parameters/caseId.yaml'
patch:
operationId: patch-case
summary: Vorgang partiell aktualisieren
description: Über diesen Endpunkt kann ein Vorgang partiell aktualisiert werden.
tags:
- Vorgangsverwaltung
security:
- OAuth2:
- 'subscribe:destination:<id>'
- 'manage:destination:<id>'
- 'send:region:DE<region-id>+send:service:<service-uri>'
- 'send:region:DE<region-id>'
requestBody:
required: true
content:
application/json:
schema:
$ref: '../../schemas/case/patch-case.yaml'
examples:
Vorgang offen halten:
$ref: '../../examples/case/patch-case-active.yaml'
Vorgang schließen:
$ref: '../../examples/case/patch-case-closed.yaml'
responses:
'202':
description: Accepted
content:
application/json:
schema:
$ref: '../../schemas/case/case.yaml'
examples:
Offener Vorgang:
$ref: '../../examples/case/case-active.yaml'
Geschlossener Vorgang:
$ref: '../../examples/case/case-closed.yaml'
'400':
description: Bad Request
content:
application/problem+json:
schema:
$ref: ../../schemas/error.yaml
'401':
description: Unauthorized
content:
application/problem+json:
schema:
$ref: ../../schemas/error.yaml
'403':
description: Forbidden
content:
application/problem+json:
schema:
$ref: ../../schemas/error.yaml
'404':
description: Not Found
content:
application/problem+json:
schema:
$ref: ../../schemas/error.yaml
get:
summary: Vorgang abrufen
operationId: get-case
description: >
Mit diesem Endpunkt kann ein Vorgang abgerufen werden.
tags:
- Vorgangsverwaltung
security:
- OAuth2:
- 'subscribe:destination:<id>'
- 'manage:destination:<id>'
- 'send:region:DE<region-id>+send:service:<service-uri>'
- 'send:region:DE<region-id>'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '../../schemas/case/case.yaml'
examples:
Offener Vorgang:
$ref: '../../examples/case/case-active.yaml'
Geschlossener Vorgang:
$ref: '../../examples/case/case-closed.yaml'
'400':
description: Bad Request
content:
application/problem+json:
schema:
$ref: ../../schemas/error.yaml
'401':
description: Unauthorized
content:
application/problem+json:
schema:
$ref: ../../schemas/error.yaml
'403':
description: Forbidden
content:
application/problem+json:
schema:
$ref: ../../schemas/error.yaml
'404':
description: Case not found
content:
application/problem+json:
schema:
$ref: ../../schemas/error.yaml