-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger4.0.json
628 lines (628 loc) · 19.2 KB
/
swagger4.0.json
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
{
"swagger" : "2.0",
"info" : {
"title" : "API Reference",
"version" : "4.0"
},
"host" : "onpremise-demo.boldbi.com",
"basePath" : "/bi/api/site/site1/",
"schemes" : [ ],
"consumes" : [ "application/json" ],
"produces" : [ "application/json" ],
"tags" : [ {
"name" : "Authentication"
}, {
"name" : "Dashboard Views"
} ],
"securityDefinitions" : {
"Bearer" : {
"type" : "apiKey",
"name" : "Authorization",
"in" : "header"
}
},
"security" : [ {
"Bearer" : [ ]
} ],
"paths" : {
"/token" : {
"post" : {
"tags" : [ "Authentication" ],
"summary" : "Authenticate User",
"operationId" : "Authentication",
"consumes" : [ "application/x-www-form-urlencoded" ],
"parameters" : [ {
"type" : "string",
"name" : "grant_type",
"in" : "formData",
"required" : true,
"x-nullable" : false,
"description" : "The type of credentials authorizing the request for an access token. (Use \"password\")"
}, {
"type" : "string",
"name" : "username",
"in" : "formData",
"required" : true,
"x-nullable" : false,
"description" : "Email address of the user. (Use [email protected] for this demo API)"
}, {
"type" : "string",
"name" : "password",
"in" : "formData",
"required" : true,
"x-nullable" : false,
"description" : "Password of the user. (Use Demo759! for this demo API)"
} ],
"responses" : {
"200" : {
"description" : "User Logged In Successfully",
"schema" : {
"$ref" : "#/definitions/Response"
},
"x-nullable" : true
},
"400" : {
"description" : "Email address is empty"
},
"401" : {
"description" : "Invalid email or password"
},
"404" : {
"description" : "User detail not found"
},
"405" : {
"description" : "Request type was not POST"
}
}
}
},
"/v4.0/dashboards/views" : {
"post" : {
"tags" : [ "Dashboard Views" ],
"summary" : "Add Dashboard View",
"description" : "Users who have access to the dashboard can save a view to the server by providing proper view details in the request body.",
"operationId" : "ItemViews_AddItemView",
"parameters" : [ {
"name" : "apiItemViewsAdd",
"in" : "body",
"required" : true,
"description" : "Details about the dashboard filter to save the view.",
"schema" : {
"$ref" : "#/definitions/ApiItemViewsAdd"
},
"x-nullable" : true
} ],
"responses" : {
"200" : {
"x-nullable" : false,
"description" : "View has been added successfully",
"schema" : {
"$ref" : "#/definitions/ApiResponse"
}
},
"400" : {
"description" : "The content of the request body is missing or incomplete"
},
"401" : {
"description" : "Access denied"
},
"405" : {
"description" : "Request type was not POST"
},
"406" : {
"description" : "The content of the request body is invalid"
},
"409" : {
"description" : "View name already exists"
},
"417" : {
"description" : "Failed to add view"
}
}
},
"put" : {
"tags" : [ "Dashboard Views" ],
"summary" : "Edit Dashboard View",
"description" : "Users who have created a view can edit the view by providing proper view details in the request body.",
"operationId" : "ItemViews_UpdateItemView",
"parameters" : [ {
"name" : "apiItemViewsUpdate",
"in" : "body",
"required" : true,
"description" : "Details about the dashboard filter to edit the view.",
"schema" : {
"$ref" : "#/definitions/ApiItemViewsUpdate"
},
"x-nullable" : true
} ],
"responses" : {
"200" : {
"x-nullable" : false,
"description" : "View has been updated successfully",
"schema" : {
"$ref" : "#/definitions/ApiResponse"
}
},
"400" : {
"description" : "The content of the request body is missing or incomplete"
},
"401" : {
"description" : "Access denied"
},
"405" : {
"description" : "Request type was not PUT"
},
"406" : {
"description" : "The content of the request body is invalid"
},
"409" : {
"description" : "View name already exists"
},
"417" : {
"description" : "Failed to edit view"
}
}
}
},
"/v4.0/dashboards/views/{id}" : {
"delete" : {
"tags" : [ "Dashboard Views" ],
"summary" : "Delete Dashboard View",
"description" : "Users who have created a view can delete that view on the server by providing a view ID in the parameter.",
"operationId" : "ItemViews_ItemViewDelete",
"parameters" : [ {
"type" : "string",
"name" : "id",
"in" : "path",
"required" : true,
"description" : "View ID",
"format" : "guid",
"x-nullable" : false
} ],
"responses" : {
"200" : {
"x-nullable" : false,
"description" : "View has been deleted successfully",
"schema" : {
"$ref" : "#/definitions/ApiResponse"
}
},
"400" : {
"description" : "View ID invalid"
},
"401" : {
"description" : "Access denied"
},
"405" : {
"description" : "Request type was not DELETE"
},
"417" : {
"description" : "Failed to delete view"
}
}
},
"get" : {
"tags" : [ "Dashboard Views" ],
"summary" : "Get Dashboard View Detail",
"description" : "Server retrieves the view details for the view ID provided in the ID parameter for the current user.",
"operationId" : "ItemViews_ItemViewByViewId",
"parameters" : [ {
"type" : "string",
"name" : "id",
"in" : "path",
"required" : true,
"description" : "View ID",
"format" : "guid",
"x-nullable" : false
} ],
"responses" : {
"200" : {
"x-nullable" : false,
"description" : "View has been retrieved successfully",
"schema" : {
"$ref" : "#/definitions/ApiItemViewResponse"
}
},
"400" : {
"description" : "View ID invalid"
},
"401" : {
"description" : "Access denied"
},
"404" : {
"description" : "View detail not found"
},
"405" : {
"description" : "Request type was not GET"
},
"417" : {
"description" : "Failed to get view"
}
}
}
},
"/v4.0/dashboards/{id}/views" : {
"get" : {
"tags" : [ "Dashboard Views" ],
"summary" : "Get Dashboard Views",
"description" : "The server retrieves the views for the dashboard ID provided in the ID parameter for the current user.",
"operationId" : "ItemViews_ItemViewsByItemId",
"parameters" : [ {
"type" : "string",
"name" : "id",
"in" : "path",
"required" : true,
"description" : "Dashboard ID",
"format" : "guid",
"x-nullable" : false
} ],
"responses" : {
"200" : {
"x-nullable" : false,
"description" : "Views has been retrieved successfully",
"schema" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/ApiItemViewResponse"
}
}
},
"204" : {
"description" : "View list was empty"
},
"400" : {
"description" : "Dashboard ID invalid"
},
"401" : {
"description" : "Access denied"
},
"405" : {
"description" : "Request type was not GET"
},
"417" : {
"description" : "Failed to get views"
}
}
}
},
"/v4.0/dashboard/{itemId}/copy" : {
"post" : {
"tags" : [ "Dashboards" ],
"summary" : "Copy Dashboard",
"description" : "Users who have access to the dashboard, can copy the dashboard by providing respective dashboard details in the request body.",
"operationId" : "Dashboards_CopyDashboard",
"parameters" : [ {
"type" : "string",
"name" : "itemId",
"in" : "path",
"required" : true,
"description" : "ItemId of the dashboard will be copied.",
"format" : "guid",
"x-nullable" : false
}, {
"name" : "apiCopyDashboard",
"in" : "body",
"required" : true,
"description" : "Details of the dashboard passed will be copied.",
"schema" : {
"$ref" : "#/definitions/ApiCopyDashboardRequestV4"
},
"x-nullable" : true
} ],
"responses" : {
"200" : {
"x-nullable" : false,
"description" : "Dashbord has been copied successfully",
"schema" : {
"$ref" : "#/definitions/ApiCopyItemResponse"
}
},
"400" : {
"description" : "The content of the request body is missing or incomplete"
},
"401" : {
"description" : "Access denied"
},
"403" : {
"description" : "Do not have permission to set dashboard will be copied as public"
},
"404" : {
"description" : "Item detail not found"
},
"405" : {
"description" : "Request type was not POST"
},
"406" : {
"description" : "The content of the request body is invalid"
},
"409" : {
"description" : "Dashboard will be copied name already exist"
},
"417" : {
"description" : "Failed to copy the dashboard"
}
}
}
},
"/v4.0/datasource/{itemId}/copy" : {
"post" : {
"tags" : [ "DataSource" ],
"summary" : "Copy Data source",
"description" : "Users who have access to the data source, can copy the data source by providing respective data source details in the request body.",
"operationId" : "DataSource_CopyDataSource",
"parameters" : [ {
"type" : "string",
"name" : "itemId",
"in" : "path",
"required" : true,
"description" : "ItemId of the data source will be copied.",
"format" : "guid",
"x-nullable" : false
}, {
"name" : "apiCopyDatasource",
"in" : "body",
"required" : true,
"description" : "Details of the data source passed will be copied.",
"schema" : {
"$ref" : "#/definitions/ApiCopyDataSourceRequestV4"
},
"x-nullable" : true
} ],
"responses" : {
"200" : {
"x-nullable" : false,
"description" : "Data source has been copied successfully",
"schema" : {
"$ref" : "#/definitions/ApiCopyItemResponse"
}
},
"400" : {
"description" : "The content of the request body is missing or incomplete"
},
"401" : {
"description" : "Access denied"
},
"404" : {
"description" : "Item detail not found"
},
"405" : {
"description" : "Request type was not POST"
},
"406" : {
"description" : "The content of the request body is invalid"
},
"409" : {
"description" : "Data source will be copied name already exist"
},
"417" : {
"description" : "Failed to copy the data source"
}
}
}
}
},
"definitions" : {
"Response" : {
"type" : "object",
"x-typeName" : "Response",
"additionalProperties" : false,
"properties" : {
"access_token" : {
"type" : "string",
"description" : "Authentication token of the user."
},
"token_type" : {
"type" : "string",
"description" : "Type of token assigned by the authorization server."
},
"expires_in" : {
"type" : "string",
"description" : "The lifetime in seconds of the access token."
},
"Email" : {
"type" : "string",
"description" : "Email of the authenticated user."
}
}
},
"ApiResponse" : {
"type" : "object",
"required" : [ "ApiStatus", "Status" ],
"properties" : {
"ApiStatus" : {
"type" : "boolean",
"description" : "Returns the status of the API."
},
"Data" : {
"description" : "Returns data from the API."
},
"Status" : {
"type" : "boolean",
"description" : "Returns status of the API request."
},
"StatusMessage" : {
"type" : "string",
"description" : "Returns the status message from the API."
},
"Message" : {
"type" : "string",
"description" : "Returns the message from the API."
}
}
},
"ApiItemViewsAdd" : {
"type" : "object",
"description" : "Add dashboard view request details.",
"required" : [ "ViewName", "ItemId", "QueryString", "IsPublic" ],
"properties" : {
"ViewName" : {
"type" : "string",
"description" : "Specify name of the view."
},
"ItemId" : {
"type" : "string",
"description" : "Specify ID of the dashboard.",
"format" : "guid"
},
"ChildItemId" : {
"type" : "string",
"description" : "Specify ID of the child dashboard.",
"format" : "guid"
},
"QueryString" : {
"type" : "string",
"description" : "Specify the filter query."
},
"IsPublic" : {
"type" : "boolean",
"description" : "Specify <i>true</i> to set the view as public"
}
}
},
"ApiItemViewsUpdate" : {
"type" : "object",
"description" : "Update dashboard view request details.",
"required" : [ "ViewId", "DashboardId" ],
"properties" : {
"Name" : {
"type" : "string",
"description" : "Specify name of the view."
},
"ViewId" : {
"type" : "string",
"description" : "Specify ID of the dashboard view.",
"format" : "guid"
},
"DashboardId" : {
"type" : "string",
"description" : "Specify ID of the dashboard.",
"format" : "guid"
},
"QueryString" : {
"type" : "string",
"description" : "Specify the filter query."
}
}
},
"ApiItemViewResponse" : {
"type" : "object",
"description" : "Dashboard view response details.",
"required" : [ "CanDelete", "CanEdit", "CanShare", "IsPublic", "ItemId", "UserId", "ViewId" ],
"properties" : {
"CanDelete" : {
"type" : "boolean",
"description" : "Specifies the delete permission of the view."
},
"CanEdit" : {
"type" : "boolean",
"description" : "Specifies the write permission of the view."
},
"CanShare" : {
"type" : "boolean",
"description" : "Specifies the share permission of the view."
},
"IsPublic" : {
"type" : "boolean",
"description" : "Returns true if the view is public."
},
"ItemId" : {
"type" : "string",
"description" : "Specifies the ID of the dashboard.",
"format" : "guid"
},
"QueryString" : {
"type" : "string",
"description" : "Specifies the filter query string."
},
"UserId" : {
"type" : "integer",
"description" : "Specifies the ID of the user.",
"format" : "int32"
},
"ViewId" : {
"type" : "string",
"description" : "Specifies the ID of the view.",
"format" : "guid"
},
"ViewName" : {
"type" : "string",
"description" : "Specifies the name of the view."
}
}
},
"ApiCopyItemResponse" : {
"type" : "object",
"description" : "Response details of the copied item.",
"required" : [ "ApiStatus", "Status", "PublishedItemId", "Version" ],
"properties" : {
"ApiStatus" : {
"type" : "boolean",
"description" : "Returns the status of the API."
},
"Status" : {
"type" : "boolean",
"description" : "Returns status of the API request."
},
"PublishedItemId" : {
"type" : "string",
"description" : "Returns the published data source item id",
"format" : "guid"
},
"Version" : {
"type" : "integer",
"description" : "Returns the version number of the data source",
"format" : "int32"
},
"StatusMessage" : {
"type" : "string",
"description" : "Returns the status message from the API."
}
}
},
"ApiCopyDashboardRequestV4" : {
"type" : "object",
"description" : "Dashboard details.",
"required" : [ "Name", "CategoryId", "IsPublic", "IsCopyDatasource" ],
"properties" : {
"Name" : {
"type" : "string",
"description" : "Dashboard name."
},
"Description" : {
"type" : "string",
"description" : "Dashboard description."
},
"CategoryId" : {
"type" : "string",
"description" : "Category ID.",
"format" : "guid"
},
"IsPublic" : {
"type" : "boolean",
"description" : "Specify <i>true</i> to set the item as a public."
},
"IsCopyDatasource" : {
"type" : "boolean",
"description" : "Copy the data source of dashboard based on this value "
}
}
},
"ApiCopyDataSourceRequestV4" : {
"type" : "object",
"description" : "Data Source details.",
"required" : [ "Name" ],
"properties" : {
"Name" : {
"type" : "string",
"description" : "Data source name."
},
"Description" : {
"type" : "string",
"description" : "Data source description."
}
}
}
},
"parameters" : { },
"responses" : { }
}