Skip to content

Commit e089d02

Browse files
authored
Add API reference for new V2 endpoints (#263)
1 parent 94e1e35 commit e089d02

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+4699
-994
lines changed

docs.json

+89-14
Original file line numberDiff line numberDiff line change
@@ -485,43 +485,118 @@
485485
]
486486
},
487487
{
488-
"group": "User endpoints",
488+
"group": "Annotation endpoints",
489489
"pages": [
490-
"restapi/endpoints/getCurrentUser"
490+
"restapi/endpoints/getAnnotations",
491+
"restapi/endpoints/getAnnotation",
492+
"restapi/endpoints/createAnnotation",
493+
"restapi/endpoints/updateAnnotation",
494+
"restapi/endpoints/deleteAnnotation"
495+
]
496+
},
497+
{
498+
"group": "API token endpoints",
499+
"pages": [
500+
"restapi/endpoints/getTokens",
501+
"restapi/endpoints/getToken",
502+
"restapi/endpoints/createToken",
503+
"restapi/endpoints/regenerateToken",
504+
"restapi/endpoints/deleteToken"
491505
]
492506
},
493507
{
494508
"group": "Dataset endpoints",
495509
"pages": [
496510
"restapi/endpoints/getDatasets",
497511
"restapi/endpoints/getDataset",
512+
"restapi/endpoints/getFieldsForDataset",
513+
"restapi/endpoints/getFieldForDataset",
498514
"restapi/endpoints/createDataset",
499515
"restapi/endpoints/ingestIntoDataset",
500516
"restapi/endpoints/queryApl",
501517
"restapi/endpoints/queryDataset",
502518
"restapi/endpoints/trimDataset",
503519
"restapi/endpoints/updateDataset",
520+
"restapi/endpoints/updateFieldForDataset",
521+
"restapi/endpoints/vacuumDataset",
504522
"restapi/endpoints/deleteDataset"
505523
]
506524
},
507525
{
508-
"group": "Annotation endpoints",
526+
"group": "Monitor endpoints",
509527
"pages": [
510-
"restapi/endpoints/getAnnotations",
511-
"restapi/endpoints/getAnnotation",
512-
"restapi/endpoints/createAnnotation",
513-
"restapi/endpoints/updateAnnotation",
514-
"restapi/endpoints/deleteAnnotation"
528+
"restapi/endpoints/getMonitors",
529+
"restapi/endpoints/getMonitor",
530+
"restapi/endpoints/getMonitorHistory",
531+
"restapi/endpoints/createMonitor",
532+
"restapi/endpoints/updateMonitor",
533+
"restapi/endpoints/deleteMonitor"
515534
]
516535
},
517536
{
518-
"group": "API token endpoints",
537+
"group": "Notifier endpoints",
519538
"pages": [
520-
"restapi/endpoints/getTokens",
521-
"restapi/endpoints/getToken",
522-
"restapi/endpoints/createToken",
523-
"restapi/endpoints/regenerateToken",
524-
"restapi/endpoints/deleteToken"
539+
"restapi/endpoints/getNotifiers",
540+
"restapi/endpoints/getNotifier",
541+
"restapi/endpoints/createNotifier",
542+
"restapi/endpoints/updateNotifier",
543+
"restapi/endpoints/deleteNotifier"
544+
]
545+
},
546+
{
547+
"group": "Organization endpoints",
548+
"pages": [
549+
"restapi/endpoints/getOrgs",
550+
"restapi/endpoints/getOrg",
551+
"restapi/endpoints/createOrg",
552+
"restapi/endpoints/updateOrg"
553+
]
554+
},
555+
{
556+
"group": "Role-based access control endpoints",
557+
"pages": [
558+
"restapi/endpoints/listRoles",
559+
"restapi/endpoints/getRoleById",
560+
"restapi/endpoints/listGroups",
561+
"restapi/endpoints/getGroupById",
562+
"restapi/endpoints/createRole",
563+
"restapi/endpoints/createGroup",
564+
"restapi/endpoints/updateRole",
565+
"restapi/endpoints/updateGroup",
566+
"restapi/endpoints/deleteRole",
567+
"restapi/endpoints/deleteGroup"
568+
]
569+
},
570+
{
571+
"group": "Starred queries endpoints",
572+
"pages": [
573+
"restapi/endpoints/getStarredQueries",
574+
"restapi/endpoints/getStarred",
575+
"restapi/endpoints/createStarred",
576+
"restapi/endpoints/updateStarred",
577+
"restapi/endpoints/deleteStarred"
578+
]
579+
},
580+
{
581+
"group": "User endpoints",
582+
"pages": [
583+
"restapi/endpoints/getCurrentUser",
584+
"restapi/endpoints/getUsers",
585+
"restapi/endpoints/getUser",
586+
"restapi/endpoints/createUser",
587+
"restapi/endpoints/updateCurrentUser",
588+
"restapi/endpoints/updateUserRole",
589+
"restapi/endpoints/removeUserFromOrg"
590+
]
591+
},
592+
{
593+
"group": "Virtual fields endpoints",
594+
"pages": [
595+
"restapi/endpoints/getVirtualFields",
596+
"restapi/endpoints/getVirtualField",
597+
"restapi/endpoints/createVirtualField",
598+
"restapi/endpoints/updateVirtualField",
599+
"restapi/endpoints/deleteVirtualField"
525600
]
526601
}
527602
]

restapi/endpoints/createDataset.mdx

+1-1

restapi/endpoints/createGroup.mdx

+4

restapi/endpoints/createMonitor.mdx

+4

restapi/endpoints/createNotifier.mdx

+4

restapi/endpoints/createOrg.mdx

+4

restapi/endpoints/createRole.mdx

+4

restapi/endpoints/createStarred.mdx

+4

restapi/endpoints/createUser.mdx

+4
+4

restapi/endpoints/deleteDataset.mdx

+1-1

restapi/endpoints/deleteGroup.mdx

+4

restapi/endpoints/deleteMonitor.mdx

+4

restapi/endpoints/deleteNotifier.mdx

+4

restapi/endpoints/deleteRole.mdx

+4

restapi/endpoints/deleteStarred.mdx

+4
+4

restapi/endpoints/getCurrentUser.mdx

+1-1

restapi/endpoints/getDataset.mdx

+1-1

restapi/endpoints/getDatasets.mdx

+1-1
+4

restapi/endpoints/getGroupById.mdx

+4

restapi/endpoints/getMonitor.mdx

+4
+4

restapi/endpoints/getMonitors.mdx

+4

restapi/endpoints/getNotifier.mdx

+4

restapi/endpoints/getNotifiers.mdx

+4

restapi/endpoints/getOrg.mdx

+4

restapi/endpoints/getOrgs.mdx

+4

restapi/endpoints/getRoleById.mdx

+4

restapi/endpoints/getStarred.mdx

+4
+4

restapi/endpoints/getUser.mdx

+4

restapi/endpoints/getUsers.mdx

+4

restapi/endpoints/getVirtualField.mdx

+4
+4

restapi/endpoints/listGroups.mdx

+4

restapi/endpoints/listRoles.mdx

+4
+4

restapi/endpoints/trimDataset.mdx

+1-1
+4

restapi/endpoints/updateDataset.mdx

+1-1

0 commit comments

Comments
 (0)