File tree 3 files changed +155
-3
lines changed
3 files changed +155
-3
lines changed Original file line number Diff line number Diff line change 1556
1556
}
1557
1557
}
1558
1558
},
1559
+ "/reports/render/csvs" : {
1560
+ "get" : {
1561
+ "description" : " Available to all users and with a valid license." ,
1562
+ "produces" : [
1563
+ " application/zip"
1564
+ ],
1565
+ "tags" : [
1566
+ " reports" ,
1567
+ " enterprise"
1568
+ ],
1569
+ "summary" : " Download a CSV report." ,
1570
+ "operationId" : " renderReportCSVs" ,
1571
+ "parameters" : [
1572
+ {
1573
+ "type" : " string" ,
1574
+ "name" : " dashboards" ,
1575
+ "in" : " query"
1576
+ },
1577
+ {
1578
+ "type" : " string" ,
1579
+ "name" : " title" ,
1580
+ "in" : " query"
1581
+ }
1582
+ ],
1583
+ "responses" : {
1584
+ "200" : {
1585
+ "$ref" : " #/responses/contentResponse"
1586
+ },
1587
+ "204" : {
1588
+ "$ref" : " #/responses/noContentResponse"
1589
+ },
1590
+ "400" : {
1591
+ "$ref" : " #/responses/badRequestError"
1592
+ },
1593
+ "401" : {
1594
+ "$ref" : " #/responses/unauthorisedError"
1595
+ },
1596
+ "500" : {
1597
+ "$ref" : " #/responses/internalServerError"
1598
+ }
1599
+ }
1600
+ }
1601
+ },
1559
1602
"/reports/render/pdfs" : {
1560
1603
"get" : {
1561
1604
"description" : " Available to all users and with a valid license." ,
1571
1614
"parameters" : [
1572
1615
{
1573
1616
"type" : " string" ,
1574
- "name" : " dashboardID " ,
1617
+ "name" : " dashboards " ,
1575
1618
"in" : " query"
1576
1619
},
1577
1620
{
9303
9346
}
9304
9347
}
9305
9348
},
9349
+ "noContentResponse" : {
9350
+ "description" : " " ,
9351
+ "schema" : {
9352
+ "type" : " object"
9353
+ }
9354
+ },
9306
9355
"notFoundError" : {
9307
9356
"description" : " NotFoundError is returned when the requested resource was not found." ,
9308
9357
"schema" : {
Original file line number Diff line number Diff line change 7800
7800
}
7801
7801
}
7802
7802
},
7803
+ "/reports/render/csvs": {
7804
+ "get": {
7805
+ "description": "Available to all users and with a valid license.",
7806
+ "produces": [
7807
+ "application/zip"
7808
+ ],
7809
+ "tags": [
7810
+ "reports",
7811
+ "enterprise"
7812
+ ],
7813
+ "summary": "Download a CSV report.",
7814
+ "operationId": "renderReportCSVs",
7815
+ "parameters": [
7816
+ {
7817
+ "type": "string",
7818
+ "name": "dashboards",
7819
+ "in": "query"
7820
+ },
7821
+ {
7822
+ "type": "string",
7823
+ "name": "title",
7824
+ "in": "query"
7825
+ }
7826
+ ],
7827
+ "responses": {
7828
+ "200": {
7829
+ "$ref": "#/responses/contentResponse"
7830
+ },
7831
+ "204": {
7832
+ "$ref": "#/responses/noContentResponse"
7833
+ },
7834
+ "400": {
7835
+ "$ref": "#/responses/badRequestError"
7836
+ },
7837
+ "401": {
7838
+ "$ref": "#/responses/unauthorisedError"
7839
+ },
7840
+ "500": {
7841
+ "$ref": "#/responses/internalServerError"
7842
+ }
7843
+ }
7844
+ }
7845
+ },
7803
7846
"/reports/render/pdfs": {
7804
7847
"get": {
7805
7848
"description": "Available to all users and with a valid license.",
7815
7858
"parameters": [
7816
7859
{
7817
7860
"type": "string",
7818
- "name": "dashboardID ",
7861
+ "name": "dashboards ",
7819
7862
"in": "query"
7820
7863
},
7821
7864
{
23343
23386
}
23344
23387
}
23345
23388
},
23389
+ "noContentResponse": {
23390
+ "description": "(empty)",
23391
+ "schema": {
23392
+ "type": "object"
23393
+ }
23394
+ },
23346
23395
"notFoundError": {
23347
23396
"description": "NotFoundError is returned when the requested resource was not found.",
23348
23397
"schema": {
Original file line number Diff line number Diff line change 1555
1555
},
1556
1556
"description": "(empty)"
1557
1557
},
1558
+ "noContentResponse": {
1559
+ "content": {
1560
+ "application/json": {
1561
+ "schema": {
1562
+ "type": "object"
1563
+ }
1564
+ }
1565
+ },
1566
+ "description": "(empty)"
1567
+ },
1558
1568
"notFoundError": {
1559
1569
"content": {
1560
1570
"application/json": {
@@ -21031,14 +21041,58 @@
21031
21041
]
21032
21042
}
21033
21043
},
21044
+ "/reports/render/csvs": {
21045
+ "get": {
21046
+ "description": "Available to all users and with a valid license.",
21047
+ "operationId": "renderReportCSVs",
21048
+ "parameters": [
21049
+ {
21050
+ "in": "query",
21051
+ "name": "dashboards",
21052
+ "schema": {
21053
+ "type": "string"
21054
+ }
21055
+ },
21056
+ {
21057
+ "in": "query",
21058
+ "name": "title",
21059
+ "schema": {
21060
+ "type": "string"
21061
+ }
21062
+ }
21063
+ ],
21064
+ "responses": {
21065
+ "200": {
21066
+ "$ref": "#/components/responses/contentResponse"
21067
+ },
21068
+ "204": {
21069
+ "$ref": "#/components/responses/noContentResponse"
21070
+ },
21071
+ "400": {
21072
+ "$ref": "#/components/responses/badRequestError"
21073
+ },
21074
+ "401": {
21075
+ "$ref": "#/components/responses/unauthorisedError"
21076
+ },
21077
+ "500": {
21078
+ "$ref": "#/components/responses/internalServerError"
21079
+ }
21080
+ },
21081
+ "summary": "Download a CSV report.",
21082
+ "tags": [
21083
+ "reports",
21084
+ "enterprise"
21085
+ ]
21086
+ }
21087
+ },
21034
21088
"/reports/render/pdfs": {
21035
21089
"get": {
21036
21090
"description": "Available to all users and with a valid license.",
21037
21091
"operationId": "renderReportPDFs",
21038
21092
"parameters": [
21039
21093
{
21040
21094
"in": "query",
21041
- "name": "dashboardID ",
21095
+ "name": "dashboards ",
21042
21096
"schema": {
21043
21097
"type": "string"
21044
21098
}
You can’t perform that action at this time.
0 commit comments