-
Notifications
You must be signed in to change notification settings - Fork 24
/
api_cgn.yaml
278 lines (273 loc) · 9.75 KB
/
api_cgn.yaml
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
swagger: "2.0"
info:
version: 1.0.0
title: Carta Giovani Nazionale API
host: localhost
basePath: /api/v1/cgn
schemes:
- https
security:
- Bearer: []
paths:
"/status":
get:
operationId: getCgnStatus
summary: Get the CGN status details
description: |
Get the CGN status details
by the provided fiscal code
responses:
"200":
description: CGN status details.
schema:
$ref: "#/definitions/Card"
"401":
description: Bearer token null or expired.
"403":
description: Forbidden.
"404":
description: No CGN found.
"500":
description: Service unavailable.
schema:
$ref: "#/definitions/ProblemJson"
"/activation":
post:
operationId: startCgnActivation
summary: Start a CGN activation procedure
description: |
Start a new CGN activation procedure
for the logged user calculating if the user is
eligible to get a CGN.
responses:
"201":
description: Request created.
schema:
$ref: "#/definitions/InstanceId"
headers:
Location:
type: string
description: |-
Location (URL) of created request resource.
A GET request to this URL returns the request status and details.
"202":
description: Processing request.
schema:
$ref: "#/definitions/InstanceId"
"401":
description: Bearer token null or expired.
"403":
description: |
Cannot activate a new CGN because the user is ineligible to get the CGN.
"409":
description: |
Cannot activate the user's cgn because another updateCgn request was found
for this user or it is already active.
"500":
description: Service unavailable.
schema:
$ref: "#/definitions/ProblemJson"
get:
operationId: getCgnActivation
summary: |
Get CGN activation process status
description: |
Get informations about a CGN activation process
responses:
"200":
description: Cgn activation details.
schema:
$ref: "#/definitions/CgnActivationDetail"
"401":
description: Bearer token null or expired.
"403":
description: Forbidden.
"404":
description: No CGN activation process found.
"500":
description: Service unavailable.
schema:
$ref: "#/definitions/ProblemJson"
"/eyca/activation":
post:
operationId: startEycaActivation
summary: Start an EYCA activation procedure
description: |
Start a new EYCA activation procedure
for the logged user calculating if the user is
eligible to enable EYCA on his CGN card.
responses:
"201":
description: Request created.
schema:
$ref: "#/definitions/InstanceId"
headers:
Location:
type: string
description: |-
Location (URL) of created request resource.
A GET request to this URL returns the request status and details.
"202":
description: Processing request.
schema:
$ref: "#/definitions/InstanceId"
"401":
description: Bearer token null or expired.
"403":
description: |
Cannot activate EYCA Card because the user is ineligible to enable EYCA.
"409":
description: |
Cannot activate EYCA Card because another EYCA Card activation request was found
for this user or it is already active.
"500":
description: Service unavailable.
schema:
$ref: "#/definitions/ProblemJson"
get:
operationId: getEycaActivation
summary: |
Get EYCA activation process' status
description: |
Get informations about an EYCA activation process
responses:
"200":
description: Eyca Card activation details.
schema:
$ref: "#/definitions/EycaActivationDetail"
"401":
description: Wrong or missing function key.
"403":
description: Forbidden.
"404":
description: No EYCA Card activation process found.
"500":
description: Service unavailable.
schema:
$ref: "#/definitions/ProblemJson"
"/eyca/status":
get:
operationId: getEycaStatus
summary: Get the Eyca Card status details
description: |
Get the Eyca Card status details
responses:
"200":
description: Eyca Card status details.
schema:
$ref: "#/definitions/EycaCard"
"401":
description: Bearer token null or expired.
"403":
description: Forbidden.
"404":
description: No Eyca Card found.
"409":
description: Conflict.
"500":
description: Service unavailable.
schema:
$ref: "#/definitions/ProblemJson"
"/delete":
post:
operationId: startCgnUnsubscription
summary: Start a CGN unsubscription procedure
description: |
Start a new CGN unsubscription procedure
for the logged user
responses:
"201":
description: Request created.
schema:
$ref: "#/definitions/InstanceId"
headers:
Location:
type: string
description: |
Location (URL) of created request resource
This location actually points to a not existing api, but semantically 201
means that the request has been taken in charge
"202":
description: Processing request.
schema:
$ref: "#/definitions/InstanceId"
"401":
description: Bearer token null or expired.
"403":
description: |
Cannot unsubscribe because the user is ineligible to get the CGN
"409":
description: |
Cannot unsubscribe the user's cgn because another updateCgn request was found
for this user
"500":
description: Service unavailable.
schema:
$ref: "#/definitions/ProblemJson"
"/otp":
post:
operationId: generateOtp
summary: |
Generate a new Otp related to a CGN
description: |
Generate a new Otp used to discount an online purchase
through a valid CGN
responses:
"200":
description: Otp generated.
schema:
$ref: "#/definitions/Otp"
"401":
description: Bearer token null or expired.
"403":
description: Forbidden.
"500":
description: Service unavailable.
schema:
$ref: "#/definitions/ProblemJson"
definitions:
Timestamp:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-commons/v21.0.1/openapi/definitions.yaml#/Timestamp"
FiscalCode:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-commons/v21.0.1/openapi/definitions.yaml#/FiscalCode"
ProblemJson:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-commons/v21.0.1/openapi/definitions.yaml#/ProblemJson"
InstanceId:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-cgn/v2.0.0/openapi/index.yaml#/definitions/InstanceId"
CommonCard:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-cgn/v2.0.0/openapi/index.yaml#/definitions/CommonCard"
CardPending:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-cgn/v2.0.0/openapi/index.yaml#/definitions/CardPending"
CardPendingDelete:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-cgn/v2.0.0/openapi/index.yaml#/definitions/CardPendingDelete"
CardActivated:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-cgn/v2.0.0/openapi/index.yaml#/definitions/CardActivated"
CardRevoked:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-cgn/v2.0.0/openapi/index.yaml#/definitions/CardRevoked"
CardExpired:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-cgn/v2.0.0/openapi/index.yaml#/definitions/CardExpired"
Card:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-cgn/v2.0.0/openapi/index.yaml#/definitions/Card"
CgnActivationDetail:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-cgn/v2.0.0/openapi/index.yaml#/definitions/CgnActivationDetail"
EycaActivationDetail:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-cgn/v2.0.0/openapi/index.yaml#/definitions/EycaActivationDetail"
EycaCard:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-cgn/v2.0.0/openapi/index.yaml#/definitions/EycaCard"
EycaCardActivated:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-cgn/v2.0.0/openapi/index.yaml#/definitions/EycaCardActivated"
EycaCardExpired:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-cgn/v2.0.0/openapi/index.yaml#/definitions/EycaCardExpired"
EycaCardRevoked:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-cgn/v2.0.0/openapi/index.yaml#/definitions/EycaCardRevoked"
CcdbNumber:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-cgn/v2.0.0/openapi/index.yaml#/definitions/CcdbNumber"
Otp:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-cgn/v2.0.0/openapi/index.yaml#/definitions/Otp"
OtpCode:
$ref: "https://raw.githubusercontent.com/pagopa/io-functions-cgn/v2.0.0/openapi/index.yaml#/definitions/OtpCode"
securityDefinitions:
Bearer:
type: apiKey
name: Authorization
in: header