File tree Expand file tree Collapse file tree
docs/api_reference/reference Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8484 * Added GET /api/v2/alerts-filters/{identifier}
8585 * Added PUT /api/v2/alerts-filters/{identifier}
8686 * Added DELETE /api/v2/alerts-filters/{identifier}
87+ * Added GET /api/v2/global-tasks
8788 * Added POST /api/v2/global-tasks
8889 * Added GET /api/v2/global-tasks/{identifier}
8990 * Added PUT /api/v2/global-tasks/{identifier}
Original file line number Diff line number Diff line change 1+ get :
2+ operationId : api_v2_global-tasks_get
3+ summary : List global tasks
4+ description : Returns a list of all global tasks
5+ tags :
6+ - Global tasks
7+ - Beta
8+ responses :
9+ ' 200 ' :
10+ description : Paginated list of global tasks
11+ content :
12+ application/json :
13+ schema :
14+ $ref : ../schemas/GlobalTasks.yaml
15+ ' 403 ' :
16+ $ref : ../responses/Forbidden.yaml
117post :
218 operationId : api_v2_global-tasks_post
319 summary : Add a global task
Original file line number Diff line number Diff line change 1+ get :
2+ operationId : api_v2_manage_customers_get
3+ summary : List customers
4+ description : List customers
5+ tags :
6+ - Customers
7+ - Beta
8+ responses :
9+ ' 200 ' :
10+ description : Paginated list of customers
11+ content :
12+ application/json :
13+ schema :
14+ $ref : ../schemas/Customers.yaml
15+ ' 403 ' :
16+ $ref : ../responses/Forbidden.yaml
117post :
218 operationId : api_v2_manage_customers_post
319 summary : Add a customer
2137 $ref : ../responses/GenericError.yaml
2238 ' 403 ' :
2339 $ref : ../responses/Forbidden.yaml
24- get :
25- operationId : api_v2_manage_customers_get
26- summary : List customers
27- description : List customers
28- tags :
29- - Customers
30- - Beta
31- responses :
32- ' 200 ' :
33- description : Paginated list of customers
34- content :
35- application/json :
36- schema :
37- $ref : ../schemas/Customers.yaml
38- ' 403 ' :
39- $ref : ../responses/Forbidden.yaml
40-
Original file line number Diff line number Diff line change 1+ type : object
2+ properties :
3+ total :
4+ type : integer
5+ data :
6+ type : array
7+ items :
8+ $ref : ../schemas/GlobalTask.yaml
9+ last_page :
10+ type : integer
11+ current_page :
12+ type : integer
13+ next_page :
14+ type :
15+ - integer
16+ - ' null'
You can’t perform that action at this time.
0 commit comments