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
parameters:
- $ref: '../../../parameters/submissionId.yml'
get:
operationId: get-submission-events
summary: Event Log auslesen
description: >
Über diesen Endpunkt kann der [Event Log](https://docs.fitko.de/fit-connect/details/event-log) einer Einreichung
abgerufen werden, um den Status der Einreichung zu überprüfen.
tags:
- Einreichungsempfang
- Einreichungsübermittlung
security:
- OAuth20:
- 'subscribe:destination:<id>'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '../../../schemas/event-log.yml'
examples:
Beispiel:
$ref: '../../../examples/event-log.yml'
'400':
description: Bad Request
content:
application/problem+json:
schema:
$ref: ../../../schemas/error.yml
'401':
description: Unauthorized
content:
application/problem+json:
schema:
$ref: ../../../schemas/error.yml
'403':
description: Forbidden
content:
application/problem+json:
schema:
$ref: ../../../schemas/error.yml
'404':
description: Submission not found
content:
application/problem+json:
schema:
$ref: ../../../schemas/error.yml
post:
operationId: send-submission-event
summary: Event senden
description: >
Als empfangendes System ist es notwendig die Einreichung entweder zu akzeptieren oder abzulehnen und dadurch die Zustellung abzuschließen.
Hierfür muss ein entsprechendes Event, die Einreichung betreffend an den Zustelldienst gesendet werden.
Dieses Event kann nach der Validierung der Rahmenstruktur der Einreichung durchgeführt werden, wie
[hier](https://docs.fitko.de/fit-connect/getting-started/receiving/process-and-acknowledge) beschrieben ist.
tags:
- Einreichungsempfang
security:
- OAuth20:
- 'subscribe:destination:<id>'
requestBody:
required: true
content:
application/octet-stream:
schema:
$ref: '../../../schemas/security-event-token.yml'
examples:
Beispiel:
$ref: '../../../examples/security-event-token.yml'
responses:
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
description: OK
content:
application/json:
schema:
$ref: '../../../schemas/empty-body.yml'
examples:
Beispiel:
$ref: '../../../examples/empty-body.yml'
'400':
description: Bad Request
content:
application/problem+json:
schema:
$ref: ../../../schemas/error.yml
'401':
description: Unauthorized
content:
application/problem+json:
schema:
$ref: ../../../schemas/error.yml
'403':
description: Forbidden
content:
application/problem+json:
schema:
$ref: ../../../schemas/error.yml
'404':
description: Submission not found
content:
application/problem+json:
schema:
$ref: ../../../schemas/error.yml