-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreporting-api-v1.yaml
663 lines (637 loc) · 19.3 KB
/
reporting-api-v1.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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
openapi: 3.0.3
info:
title: Aam Digital - Reporting API
description: |-
API to manage reports that provide data calculated based on any entities of the Aam Digital system
and offer notifications when data of such reports changes.
version: 1.0.0
servers:
- url: https://{customerId}.aam-digital.net/api/v1/reporting
description: Developer Instance for testing
variables:
customerId:
default: dev
description: Customer ID assigned by the service provider
tags:
- name: reporting
description: Access reports and their results and trigger one-time report calculations.
- name: notifications
description: Subscribe to continuous notification events whenever a report's result data changes due to users changing records in the Aam Digital application.
paths:
/report:
get:
security:
- development:
- reporting_read
tags:
- reporting
summary: Return list of available Reports
responses:
200:
description: List of all available Reports the requester has access permissions to, empty array if no reports are available
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Report'
401:
description: If no valid access token
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/report/{reportId}:
get:
security:
- development:
- reporting_read
tags:
- reporting
summary: Return report metadata by ID
parameters:
- in: path
name: reportId
schema:
type: string
required: true
responses:
200:
description: Get details of a report, including details of the data structure (schema) this specific report's data has
content:
application/json:
schema:
$ref: '#/components/schemas/Report'
404:
description: If the Report does not exist
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
401:
description: If the access token does not grant permission to this Report
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/report-calculation/report/{reportId}:
get:
security:
- development:
- reporting_read
tags:
- reporting
summary: Return all report calculations for a report
parameters:
- in: path
name: reportId
schema:
type: string
required: true
responses:
200:
description: List of metadata of all calculations triggered by any user (pending and completed)
content:
application/json:
schema:
$ref: '#/components/schemas/ReportCalculation'
401:
description: If the access token does not grant permission to this Report
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
404:
description: If report does not exist
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
post:
security:
- development:
- reporting_write
tags:
- reporting
summary: Trigger a new report calculation run.
description: Trigger a new report calculation run. Check status of the asynchronous calculation via the /report-calculation endpoint
As an alternative to triggering a single report calculation, you can subscribe to receive
a notification event (which includes an automatically created calculationId) whenever the report's
results change (see /webhook/{webhookId}/subscribe/report).
parameters:
- in: path
name: reportId
schema:
type: string
required: true
- in: query
name: from
description: start date for report period
required: false
schema:
type: string
format: date
- in: query
name: to
description: end date for report period
required: false
schema:
type: string
format: date
responses:
200:
description: Return calculation identifier, to be used to check status and result data
content:
application/json:
schema:
type: object
properties:
id:
type: string
format: uuid
401:
description: If the access token does not grant permission to this Report
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/report-calculation/{calculationId}:
get:
security:
- development:
- reporting_read
tags:
- reporting
summary: Return metadata for a report calculation
parameters:
- in: path
name: calculationId
schema:
type: string
required: true
responses:
200:
description: Status and details of the given report calculation run
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ReportCalculation'
401:
description: If the access token does not grant permission to this Report
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
404:
description: If the calculation identifier does not exist
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/report-calculation/{calculationId}/data:
get:
security:
- development:
- reporting_read
tags:
- reporting
summary: Fetch actual report data for a specific calculation
parameters:
- in: path
name: calculationId
schema:
type: string
required: true
responses:
200:
description: The actual data that has been calculated by the calculation run.
content:
application/json:
schema:
$ref: '#/components/schemas/ReportMetadata'
application/xml:
schema:
$ref: '#/components/schemas/ReportMetadata'
404:
description: report data is not available yet (when either the calculation id is not valid or the calculation is still running)
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
401:
description: If the access token does not grant permission to this Report
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/report-calculation/{calculationId}/data-stream:
get:
security:
- development:
- reporting_read
tags:
- reporting
summary: Fetch just the report data for a specific calculation as stream
parameters:
- in: path
name: calculationId
schema:
type: string
required: true
responses:
200:
description: The actual data that has been calculated by the calculation run.
content:
application/octet-stream:
schema:
$ref: '#/components/schemas/ReportData'
404:
description: report data is not available yet (when either the calculation id is not valid or the calculation is still running)
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
401:
description: If the access token does not grant permission to this Report
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
# notification
/webhook:
get:
security:
- development:
- reporting_read
tags:
- notifications
summary: Return list of existing Webhooks for your authorized client
responses:
200:
description: List of all available Webhooks the requester has created, empty array if no Webhooks are available for the client authorized in the given access token
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Webhook'
401:
description: If no valid access token
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
403:
description: No permissions to access the resource
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
post:
security:
- development:
- reporting_write
tags:
- notifications
summary: Subscribe to events for a specific Report
description: Register a webhook to be called for one or more notification subscriptions. To receive events, make calls to your webhookId's /subscribe endpoint.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/WebhookConfiguration'
responses:
200:
description: Webhook registered successfully, you can now register subscriptions
content:
application/json:
schema:
type: object
properties:
id:
type: string
format: uuid
401:
description: If no valid access token
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/webhook/{webhookId}:
get:
security:
- development:
- reporting_read
tags:
- notifications
summary: Return a specific Webhook
parameters:
- in: path
name: webhookId
schema:
type: string
required: true
responses:
200:
description: Get details of a webhook, including details of subscribed events and configuration
content:
application/json:
schema:
$ref: '#/components/schemas/Webhook'
401:
description: If no valid access token
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
403:
description: No permissions to access the resource
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
404:
description: Resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/webhook/{webhookId}/subscribe/report/{reportId}:
post:
security:
- development:
- reporting_write
tags:
- notifications
summary: Subscribe to events for a specific Report
description: If you subscribe to a reportId, Aam Digital will continuously monitor the changes users
make in the application and check if they affect the results calculated by that report.
Whenever this is the case, a new report-calculation is automatically triggered for you and once
the calculation is completed you receive an event containing that calculationId. You can use
this to immediately fetch to available report data from the /report-calculation/{calculationId}/data
endpoint. Upon subscribing to a report, you will always receive an initial event with a
calculationId through which you can access the current state of the report's data.
externalDocs:
url: https://github.com/Aam-Digital/query-backend/blob/main/README.md#subscribe-to-continuous-changes-of-a-report
parameters:
- in: path
name: webhookId
schema:
type: string
required: true
- in: path
name: reportId
schema:
type: string
required: true
responses:
200:
description: Report added to webhook subscription
401:
description: If no valid access token
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
403:
description: No permissions to access the resource
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
404:
description: Resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
delete:
security:
- development:
- reporting_write
tags:
- notifications
summary: Remove event subscription for a specific Report
parameters:
- in: path
name: webhookId
schema:
type: string
required: true
- in: path
name: eventName
schema:
type: string
required: true
responses:
200:
description: Report deleted from webhook subscription
401:
description: If no valid access token
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
403:
description: No permissions to access the resource
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
components:
schemas:
# report
Report:
type: object
properties:
id:
type: string
format: uuid
name:
type: string
example: report_all_course_members
ReportCalculation:
type: object
properties:
id:
type: string
format: uuid
report:
type: object
properties:
id:
type: string
format: uuid
status:
type: string
description: Current status of the run
enum:
- PENDING
- RUNNING
- FINISHED_SUCCESS
- FINISHED_ERROR
startDate:
type: string
description: The Date, the calculation starts processing the query
example: date
endDate:
type: string
description: The Date, the calculation finished processing and the data is available
example: date
nullable: true
args:
type: object
description: Input arguments will be injected into the sql query
properties:
from:
type: string
description: optional start date for the time period of the data included in the report
format: date
nullable: true
to:
type: string
description: optional end date filtering data included in the report. If no date is given here, all data (possibly filtered by the "from" date) is included. The field considered for date filtering are defined in each report's query specifically.
format: date
nullable: true
data:
type: object
properties:
contentType:
type: string
example: application/octet-stream
hash:
type: string
example: md5-pWo9Wj3ZZ27RqJUoh8C6VA==
length:
type: number
example: 368
ReportMetadata:
type: object
properties:
id:
type: string
example: ReportCalculation:56f22a52-5863-4d24-9da6-239a34ea83ba_data.json
report:
type: object
properties:
id:
type: string
example: ReportConfig:example
calculation:
type: object
properties:
id:
type: string
example: ReportCalculation:56f22a52-5863-4d24-9da6-239a34ea83ba
data:
$ref: '#/components/schemas/ReportData'
# notification
Webhook:
type: object
properties:
id:
type: string
format: uuid
name:
type: string
example: wh_aam_digital_reporting
reportSubscriptions:
description: The reports for which the webhook will receive a notification event whenever their results change due to users managing data in the Aam Digital system.
type: array
items:
type: string
example: [ "report_id_1", "report_id_2", "report_id_3" ]
ReportData:
type: array
example: |-
[
{
"foo": 1
},
{
"bar": 2
},
{
"doo": [
{
"doo foo": 0
},
{
"doo bar": 4
}
]
},
{
"dua": 0
}
]
WebhookConfiguration:
type: object
properties:
method:
type: string
enum:
- GET
- POST
targetUrl:
type: string
authenticationType:
type: string
enum:
- API_KEY
authentication:
type: object
oneOf:
- $ref: '#/components/schemas/ApiKeyAuthConfig'
ApiKeyAuthConfig:
type: object
properties:
key:
type: string
headerName:
type: string
Event:
type: object
description: Representation of the payload we will send to the webhook
properties:
id:
type: string
format: uuid
eventName:
type: string
enum:
- NEW_REPORT_DATA_AVAILABLE
reportId:
type: string
calculationId:
type: string
created_at:
type: string
format: date
# global
Error:
type: object
properties:
errorCode:
type: string
items:
enum:
- NOT_FOUND
- UNAUTHORIZED
- FORBIDDEN
- INTERNAL_SERVER_ERROR
errorMessage:
type: string
securitySchemes:
development:
type: oauth2
description: This API uses OAuth2 with the Client Credentials Flow
flows:
clientCredentials:
tokenUrl: https://keycloak.aam-digital.net/realms/TolaData/protocol/openid-connect/token
scopes:
reporting_read: Read Report and ReportCalculation
reporting_write: Trigger new ReportCalculation and configure webhook notifications