-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path_pkgdown.yml
1331 lines (1326 loc) · 33.9 KB
/
_pkgdown.yml
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
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
url: https://vusaverse.github.io/vvcanvas/
template:
bootstrap: 5
reference:
- title: Other methods.
desc: >
Methods that need to be indexed.
contents:
- create_course_datalake
- canvas_authenticate
- get_page_content
- download_course_file
- canvas_api_key
- canvas_base_url
# - title: Account Calendars
# desc: >
# Methods for account calendars.
# contents:
# - get_available_account_calendars
# - get_single_account_calendar
# - update_calendar
# - update_several_calendars
# - list_all_account_calendars
# - count_visible_account_calendars
#
# - title: Account Domain Lookups
# desc: >
# Methods for account domains.
# contents:
# - search_account_domains
#
#
# - title: Account Notifications
# desc: >
# Methods for account notifications.
# contents:
# - get_active_global_notifications
# - show_global_notification
# - close_notification_for_user
# - create_global_notification
# - update_global_notification
# - title: Account Reports
# desc: >
# Methods for account reports.
# contents:
# - list_available_reports
# - start_a_report
# - index_of_reports
# - status_of_a_report
# - delete_a_report
- title: Accounts
desc: >
Methods for accounts.
contents:
- get_accounts
- list_all_enrollment_terms
# - get_accounts_admins_can_manage
# - get_accounts_users_can_create_courses_in
# - list_accounts_for_course_admins
# - get_single_account_settings
# - get_subaccounts_of_an_account
# - get_terms_of_service
# - get_help_links
# - get_manually_created_courses_subaccount
# - list_active_courses_in_an_account
# - update_an_account
# - delete_a_user_from_the_root_account
# - title: Subaccounts
# desc: >
# Methods for sub-accounts.
# contents:
# - create_new_subaccount
# - delete_subaccount
#
#
- title: Analytics
desc: >
Methods for analytics.
contents:
- get_department_participation_data
- get_department_grade_data
- get_department_statistics
- get_department_statistics_by_subaccount
- get_course_participation
# - get_course_level_participation_data
# - get_course_level_assignment_data
# - get_course_level_student_summary_data
- get_student_summaries
- get_user_course_participation_data
- get_user_course_assignment_data
- get_user_course_messaging_data
# - title: Announcement External Feeds
# desc: >
# Methods for annoucements through external feeds.
# contents:
# - list_external_feeds
# - create_external_feed
# - delete_external_feed
- title: Announcements
desc: >
Methods for announcements.
contents:
- get_course_announcements
# - title: API Token Scopes
# desc: >
# Methods for API Token scopes.
# contents:
# - list_scopes
#
# - title: Appointment Groups
# desc: >
# Methods for appointment groups.
# contents:
# - list_appointment_groups
# - create_appointment_group
# - get_single_appointment_group
# - update_appointment_group
# - delete_appointment_group
# - list_user_participants
# - list_student_group_participants
# - get_next_appointment
# - title: Assignment Extensions
# desc: >
# Methods for assignment extensions.
# contents:
# - set_assignment_extensions
- title: Assignment Groups
desc: >
Methos for assignment groups.
contents:
- get_assignment_groups
# - get_assignment_group
- create_assignment_group
# - edit_assignment_group
# - destroy_assignment_group
- title: Assignments
desc: >
Methods for assignments.
contents:
# - delete_assignment
# - list_assignments
- get_assignment_details
- get_assignment_data
- get_assignments
# - list_user_assignments
# - duplicate_assignment
# - get_single_assignment
# - create_assignment
# - edit_assignment
# - bulk_update_assignment_dates
# - title: Assignment Overrides
# desc: >
# Methods for assignment overrides
# contents:
# - list_assignment_overrides
# - get_single_assignment_override
# - redirect_to_assignment_override_for_group
# - redirect_to_assignment_override_for_section
# - create_assignment_override
# - update_assignment_override
# - delete_assignment_override
# - batch_retrieve_overrides_in_course
# - batch_create_overrides_in_course
# - batch_update_overrides_in_course
# - title: Authentication Providers
# desc: >
# Methods for authentication providers.
# contents:
# - list_authentication_providers
# - add_authentication_provider
# - update_authentication_provider
# - get_authentication_provider
# - delete_authentication_providers
# - show_account_auth_settings
# - update_account_auth_settings
# - title: Authentications Log
# desc: >
# Methods for authentications log.
# contents:
# - query_by_login
# - query_by_account
# - query_by_user
# - title: Blackout Dates
# desc: >
# Methods for blackout dates.
# contents:
# - list_blackout_dates
# - get_single_blackout_date
# - create_blackout_date
# - update_blackout_date
# - delete_blackout_date
# - update_list_of_blackout_dates
# - title: Blueprint Management
# desc: >
# Retrieve blueprint information.
# contents:
# - get_blueprint_information
# - get_associated_course_information
# - update_associated_courses
# - begin_migration_to_push_to_associated_courses
# - set_or_remove_restrictions_on_blueprint_course_object
# - get_unsynced_changes
# - title: Blueprint Course History
# desc: >
# Retrieve the list of blueprint migrations.
# contents:
# - list_blueprint_migrations
# - show_blueprint_migration
# - get_migration_details
# - title: Associated Course History
# desc: >
# Retrieve the list of blueprint subscriptions.
# contents:
# - list_blueprint_subscriptions
# - list_blueprint_imports
# - show_blueprint_import
# - get_import_details
# - title: Bookmarks
# desc: >
# Retrieve the list of bookmarks.
# contents:
# - list_bookmarks
# - create_bookmark
# - get_bookmark
# - update_bookmark
# - delete_bookmark
# - title: Brand Configs
# desc: >
# Retrieve the brand config variables that should be used for this domain.
# contents:
# - get_brand_config_variables
- title: Calendar Events
desc: >
Calendat events methods.
contents:
- get_calendar_events
# - list_calendar_events_for_user
# - create_calendar_event
# - get_single_calendar_event_or_assignment
# - reserve_time_slot
# - update_calendar_event
# - delete_calendar_event
# - save_enabled_account_calendars
# - set_course_timetable
# - get_course_timetable
# - create_or_update_events_directly_for_course_timetable
# - title: Collaborations
# desc: >
# Retrieve the list of collaborations.
# contents:
# - list_collaborations
# - list_members_of_a_collaboration
# - list_potential_members
# - title: CommMessages
# desc: >
# Retrieve the list of CommMessages for a user.
# contents:
# - list_comm_messages_for_user
# - title: Communication Channels
# desc: >
# Retrieve the list of user communication channels.
# contents:
# - list_user_communication_channels
# - create_communication_channel
# - delete_communication_channel
# - delete_push_notification_endpoint
# - title: Conferences
# desc: >
# Retrieve the list of conferences.
# contents:
# - list_conferences
# - list_conferences_for_current_user
# - title: Content Exports
# desc: >
# Retrieve the list of content exports.
# contents:
# - list_content_exports
# - show_content_export
# - export_content
# - title: Migration Issues
# desc: >
# Retrieve the list of migration issues.
# contents:
# - list_migration_issues
# - get_migration_issue
# - update_migration_issue
- title: Content Migrations
desc: >
Retrieve the list of content migrations.
contents:
# - list_content_migrations
# - get_content_migration
- upload_qti_file_with_migration
# - update_content_migration
# - list_migration_systems
# - list_items_for_selective_import
# - get_asset_id_mapping
#
# - title: Content Security Policy Settings
# desc: >
# Get current settings for account or course
# contents:
# - get_current_csp_settings
# - enable_explicit_csp_setting
# - disable_explicit_csp_setting
# - clear_explicit_csp_setting
# - lock_csp_settings_for_subaccounts_and_courses
# - unlock_csp_settings_for_subaccounts_and_courses
# - add_allowed_domain_to_account
# - add_multiple_allowed_domains_to_account
# - retrieve_reported_csp_violations_for_account
# - remove_domain_from_account
# - title: Content Shares
# desc: >
# Create, list, and manage content shares
# contents:
# - create_content_share
# - list_content_shares
# - get_unread_shares_count
# - get_content_share
# - remove_content_share
# - add_users_to_content_share
# - update_content_share
# - title: Conversations
# desc: >
# List, create, and manage conversations
# contents:
# - list_conversations
# - create_conversation
# - get_running_batches
# - get_single_conversation
# - edit_conversation
# - mark_all_as_read
# - delete_conversation
# - add_recipients
# - add_message
# - delete_message
# - batch_update_conversations
# - find_recipients
# - get_unread_count
# - title: Course Audit log
# desc: >
# Query audit log by course or account
# contents:
# - query_audit_log_by_course
# - query_audit_log_by_account
# - title: Course Pace
# desc: >
# Show, create, update, and delete a course pace
# contents:
# - show_course_pace
# - create_course_pace
# - update_course_pace
# - delete_course_pace
# - title: Course Quiz Extensions
# desc: >
# Set extensions for student quiz submissions
# contents:
# - set_quiz_extensions
#
- title: Courses
desc: >
Methods for courses.
contents:
# - list_courses
- get_course_details
- get_courses
# - list_courses_for_user
# - get_user_progress
# - create_new_course
# - upload_file
- get_course_students
- get_course_users
# - get_single_user
# - search_for_content_share_users
# - preview_processed_html
# - course_activity_stream
# - course_activity_stream_summary
# - course_todo_items
# - delete_or_conclude_a_course
# - get_course_settings
# - return_test_student_for_course
# - get_single_course
# - update_a_course
# - update_courses
# - reset_a_course
# - get_effective_due_dates
# - get_permissions
# - get_bulk_user_progress
# - remove_quiz_migration_alert
# - get_course_copy_status
# - copy_course_content
# - title: Custom Gradebook Columns
# desc: >
# Retrieve the list of custom gradebook columns.
# contents:
# - list_custom_gradebook_columns
# - create_custom_gradebook_column
# - update_custom_gradebook_column
# - delete_custom_gradebook_column
# - reorder_custom_columns
# - title: Custom Gradebook Column Data
# desc: >
# Retrieve the list of entries for a custom gradebook column.
# contents:
# - list_entries_for_a_column
# - update_column_data
# - bulk_update_column_data
#
- title: Discussion Topics
desc: >
Methods for discussion topics.
contents:
# - list_discussion_topics
- get_discussions
- post_new_discussion
# - update_topic
# - delete_topic
# - reorder_pinned_topics
# - update_entry
# - delete_entry
# - get_single_topic
# - post_an_entry
# - duplicate_discussion_topic
# - list_topic_entries
# - post_reply
# - list_entry_replies
# - mark_topic_as_read
# - mark_topic_as_unread
# - mark_all_entries_as_read
# - mark_all_entries_as_unread
# - rate_entry
# - title: Enrollment Terms
# desc: >
# Create, update, and delete enrollment terms.
# contents:
# - create_enrollment_term
# - update_enrollment_term
# - delete_enrollment_term
# - list_enrollment_terms
# - retrieve_enrollment_term
- title: Enrollments
desc: >
Methods for enrollments.
contents:
- get_course_enrollments
- get_section_students
# - enrollment_by_id
# - conclude_deactivate_or_delete_an_enrollment
# - accept_course_invitation
# - reject_course_invitation
# - re_activate_an_enrollment
# - add_last_attended_date
# - show_temporary_enrollment_recipient_and_provider_status
# - title: ePortfolios
# desc: >
# Retrieve all ePortfolios for a user.
# contents:
# - get_all_e_portfolios_for_a_user
# - get_e_portfolio
# - delete_e_portfolio
# - get_e_portfolio_pages
# - moderate_an_e_portfolio
# - moderate_all_e_portfolios_for_a_user
# - restore_a_deleted_e_portfolio
# - title: ePub Exports
# desc: >
# Retrieve the list of courses with their latest ePub exports.
# contents:
# - list_courses_with_latest_ePub_export
# - create_ePub_export
# - show_ePub_export
# - title: Error Reports
# desc: >
# Create an error report to help diagnose issues.
# contents:
# - create_error_report
# - title: External Tools
# desc: >
# Retrieve the list of external tools.
# contents:
# - list_external_tools
# - get_sessionless_launch_url_for_an_external_tool
# - get_single_external_tool
# - create_external_tool
# - edit_external_tool
# - delete_external_tool
# - add_tool_to_rce_favorites
# - remove_tool_from_rce_favorites
# - get_visible_course_navigation_tools
# - get_visible_course_navigation_tools_for_a_single_course
- title: Favorites
desc: >
Methods of favorites.
contents:
- get_favorite_courses
# - list_favorite_groups
# - add_course_to_favorites
# - add_group_to_favorites
# - remove_course_from_favorites
# - remove_group_from_favorites
# - reset_course_favorites
# - reset_group_favorites
# - title: Feature Flags
# desc: >
# Retrieve the list of enabled features and environment features.
# contents:
# - list_features
# - list_enabled_features
# - set_feature_flag
# - remove_feature_flag
- title: Files
desc: >
Methods for files.
contents:
# - get_quota_information
- get_course_files
# - list_files
# - get_public_inline_preview_url
# - get_file
# - translate_file
# - update_file
# - delete_file
# - get_icon_metadata
# - reset_link_verifier
- title: Folders
desc: >
Methods for folders.
contents:
# - list_all_folders
- get_course_folders
# - resolve_path
# - get_folder
# - update_folder
- create_folder
# - delete_folder
# - upload_a_file
# - copy_a_file
# - copy_a_folder
# - get_uploaded_media_folder_for_user
# - title: Usage Rights
# desc: >
# Set usage rights for a specific content.
# contents:
# - set_usage_rights
# - title: Grade Change Log
# desc: >
# Query the grade change log by assignment.
# contents:
# - query_by_assignment
# - title: Gradebook History
# desc: >
# Retrieve the gradebook history for a given course.
# contents:
# - days_in_gradebook_history_for_a_course
# - title: Grading Period Sets
# desc: >
# Retrieve the list of grading period sets.
# contents:
# - list_grading_period_sets
# - create_a_grading_period_set
# - update_a_grading_period_set
# - delete_a_grading_period_set
# - title: Grading Periods
# desc: >
# Retrieve the list of grading periods.
# contents:
# - list_grading_periods
# - get_a_single_grading_period
# - update_a_single_grading_period
# - delete_a_single_grading_period
# - title: Grading Standards
# desc: >
# Create a new grading standard in a given context.
# contents:
# - create_a_new_grading_standard
# - get_a_single_grading_standard_in_a_context
- title: Group Categories
desc: >
Methods for group categories.
contents:
# - list_group_categories_for_a_context
# - get_a_single_group_category
- create_group_category
- get_group_categories
# - update_a_group_category
# - import_categories
# - list_groups
# - get_a_group
# - create_a_group
# - update_a_group
# - delete_a_group
# - assign_unassigned_members
- title: Groups
desc: >
Methods for groups.
contents:
# - list_groups
# - get_a_single_group
# - create_a_group
# - edit_a_group
# - delete_a_group
# - list_group_users
- get_group_info
- get_group_memberships
- get_group_users
- get_course_groups
# - upload_a_file
# - preview_processed_html
# - group_activity_stream
# - group_activity_stream_summary
# - group_permissions
# - title: Group Memberships
# desc: >
# Invite users to join a group.
# contents:
# - invite_others_to_a_group
# - list_group_memberships
# - get_a_single_group_membership
# - create_a_membership
# - update_a_membership
# - leave_a_group
# - title: History
# desc: >
# Retrieve the recent history for a user.
# contents:
# - list_recent_history_for_a_user
# - title: Access Tokens
# desc: >
# Create an InstAccess token for a user.
# contents:
# - create_instaccess_token
# - title: JWTs
# desc: >
# Create a JWTRefresh JWT token.
# contents:
# - create_jwt
# - title: Late Policy
# desc: >
# Retrieve a late policy for a specific course.
# contents:
# - get_a_late_policy
# - title: Learning Object Dates
# desc: >
# Retrieve the date information for a learning object.
# contents:
# - get_a_learning_object_s_date_information
# - title: Line Items
# desc: >
# Create a new Line Item in a course.
# contents:
# - create_a_line_item
# - update_a_line_item
# - show_a_line_item
# - list_line_items
# - delete_a_line_item
# - title: Live Assessments
# desc: >
# Create live assessment results for a specific assessment.
# contents:
# - create_live_assessment_results
# - list_live_assessment_results
# - create_or_find_a_live_assessment
# - title: Logins
# desc: >
# Retrieve the list of user logins for a specific user.
# contents:
# - list_user_logins
# - kickoff_password_recovery_flow
# - create_a_user_login
# - edit_a_user_login
# - delete_a_user_login
# - title: Media Tracks
# desc: >
# Retrieve the list of media tracks for a specific Media Object or Attachment.
# contents:
# - list_media_tracks
# - update_media_tracks
- title: Media Objects
desc: >
Retrieve the list of Media Objects.
contents:
- get_course_media_objects
# - update_media_object
# - title: Moderation Set
# desc: >
# Retrieve the list of students selected for moderation.
# contents:
# - list_students_selected_for_moderation
# - select_students_for_moderation
# - title: Provisional Grades
# desc: >
# Bulk select provisional grades for a specific assignment.
# contents:
# - bulk_select_provisional_grades
# - show_provisional_grade_status_for_a_student
# - select_provisional_grade
# - publish_provisional_grades_for_an_assignment
# - title: Anonymous Provisional Grades
# desc: >
# Show the provisional grade status for a specific student.
# contents:
# - show_provisional_grade_status_for_a_student
- title: Modules
desc: >
Methods for modules.
contents:
# - list_modules
- get_modules
- create_module
# - show_module
# - create_module
# - update_module
# - delete_module
# - re_lock_module_progressions
- title: Module Items
desc: >
Methods for module items.
contents:
- get_module_items
- create_module_item
# - show_module_item
# - create_module_item
# - update_module_item
# - select_a_mastery_path
# - delete_module_item
# - mark_module_item_as_done_or_not_done
# - get_module_item_sequence
# - mark_module_item_as_read
# - title: Module Assignment Overrides
# desc: >
# Retrieve the list of assignment overrides for a specific module.
# contents:
# - list_module_overrides
# - update_module_overrides
# - title: Search results
# desc: >
# The Quiz Extension tool allows instructors to provide additional time for completing quizzes to students for an entire course. This feature is especially useful if any students within a course have DRC accommodations providing Instead of applying the accommodations to each individual quiz through the “Moderate this Quiz” instructors can select the appropriate modification and apply the changes across the entire course. This is enabled in all courses. Go to "Instructor Tools" from your course menu.
# - title: Names and Role
# desc: >
# Retrieve the list of course memberships.
# contents:
# - list_course_memberships
# - list_group_memberships
# - title: New Quiz Items
# desc: >
# Retrieve a quiz item for a specific quiz.
# contents:
# - get_a_quiz_item
# - list_quiz_items
# - create_a_quiz_item
# - update_a_quiz_item
# - delete_a_quiz_item
# - get_items_media_upload_url
# - title: New Quizzes
# desc: >
# Retrieve a new quiz for a specific course.
# contents:
# - get_a_new_quiz
# - list_new_quizzes
# - create_a_new_quiz
# - update_a_single_quiz
# - delete_a_new_quiz
# - title: Notification Preferences
# desc: >
# Retrieve the list of notification preferences.
# contents:
# - list_preferences
# - list_of_preference_categories
# - get_a_preference
# - update_a_preference
# - update_preferences_by_category
# - update_multiple_preferences
# - title: Originality Reports
# desc: >
# Create an Originality Report for a specific assignment.
# contents:
# - create_an_originality_report
# - edit_an_originality_report
# - show_an_originality_report
# - title: Outcome Groups
# desc: >
# Redirect to the root outcome group for a specific context.
# contents:
# - redirect_to_root_outcome_group_for_context
# - get_all_outcome_groups_for_context
# - get_all_outcome_links_for_context
# - show_an_outcome_group
# - update_an_outcome_group
# - delete_an_outcome_group
# - list_linked_outcomes
# - create_or_link_an_outcome
# - unlink_an_outcome
# - list_subgroups
# - create_a_subgroup
# - import_an_outcome_group
# - title: Search results
# desc: >
# The LearnDash Shortcodes & Blocks allow you to display various pieces of information on your site. For example, you can display a list of courses, lessons, topics, quizzes, and groups using the appropriate shortcode. Here are some of the available shortcodes and blocks:
# contents:
# - ld_course_list
# - ld_topic_list
# - ld_quiz_list
# - ld_group_list
# - title: Course Quiz Extensions API
# desc: >
# Set extensions for student quiz submissions at the course level.
# contents:
# - create_a_course_quiz_extension
# title: Outcome Imports
# desc: >
# Import outcomes from a department level account or create new outcomes for your course. You can import an individual outcome or import the entire outcome group.
# contents:
# - import_outcomes
# - get_outcome_import_status
# - get_ids_of_outcome_groups_created_after_successful_import
#
# title: Outcome Results
# desc: >
# Retrieve outcome results and outcome rollups for students.
# contents:
# - get_outcome_results
# - get_outcome_result_rollups
#
# title: Outcomes
# desc: >
# Display an outcome and its aligned assignments for a course and a particular student.
# contents:
# - show_outcome
# - update_outcome
# - get_aligned_assignments_for_outcome
#
- title: Pages
desc: >
Methods for pages.
contents:
- get_course_pages
# - show_front_page
# - duplicate_page
# - update_create_front_page
# - list_pages
- create_page
# - show_page
# - update_create_page
# - delete_page
# - list_revisions
# - show_revision
# - revert_to_revision
#
# title: Peer Reviews
# desc: >
# Manage peer reviews, create, update, and delete peer reviews for students.
# contents:
# - get_all_peer_reviews
# - create_peer_review
# - delete_peer_review
# title: Planner
# desc: >
# Manage planner items.
# contents:
# - list_planner_items
#
# title: Planner Notes
# desc: >
# Manage planner notes.
# contents:
# - list_planner_notes
# - show_planner_note
# - update_planner_note
# - create_planner_note
# - delete_planner_note
#
# title: Planner Overrides
# desc: >
# Manage planner overrides.
# contents:
# - list_planner_overrides
# - show_planner_override
# - update_planner_override
# - create_planner_override
# - delete_planner_override
#
# title: Poll Sessions
# desc: >
# Manage poll sessions.
# contents:
# - list_poll_sessions
# - get_poll_session_results
# - create_poll_session
# - update_poll_session
# - delete_poll_session
# - open_poll_session
# - close_poll_session
# - list_opened_poll_sessions
# - list_closed_poll_sessions
#
# title: PollChoices
# desc: >
# Manage poll choices.
# contents:
# - list_poll_choices
# - get_poll_choice
# - create_poll_choice
# - update_poll_choice
# - delete_poll_choice
#
# title: Polls
# desc: >
# Manage polls.
# contents:
# - list_polls
# - get_poll
# - create_poll
# - update_poll
# - delete_poll
#
# title: PollSubmissions
# desc: >
# Manage poll submissions.
# contents:
# - get_poll_submission
# - create_poll_submission
#
# title: Proficiency Ratings
# desc: >
# Manage proficiency ratings.
# contents:
# - create_update_proficiency_ratings
# - get_proficiency_ratings
# title: Progress
# desc: >
# Retrieve user progress.
# contents:
# - query_progress
#
# title: Public JWK
# desc: >
# Update Public JWK.
# contents:
# - update_public_jwk
#
# title: Quiz Assignment Overrides
# desc: >
# Retrieve assignment-overridden dates for Classic Quizzes and New Quizzes.
# contents:
# - get_assignment_overrides
#
# title: Quiz Extensions
# desc: >
# Set extensions for student quiz submissions.
# contents:
# - set_quiz_extensions
#
# title: Quiz IP Filters
# desc: >
# Get available quiz IP filters.
# contents:
# - get_quiz_ip_filters
#
# title: Quiz Question Groups
# desc: >
# Get a single quiz group, create a question group, update a question group, and delete a question group.
# contents:
# - get_quiz_group
# - create_question_group
# - update_question_group
# - delete_question_group
# - reorder_question_groups
#
# title: Quiz Questions
# desc: >
# List questions in a quiz or a submission, get a single quiz question, create a single quiz question, update an existing quiz question, and delete a quiz question.
# contents:
# - list_quiz_questions
# - get_quiz_question
# - create_quiz_question
# - update_quiz_question
# - delete_quiz_question
#
# title: Quiz Reports
# desc: >
# Retrieve all quiz reports, create a quiz report, get a quiz report, and abort the generation of a report or remove a previously generated one.
# contents:
# - get_quiz_reports
# - create_quiz_report
# - get_quiz_report
# - abort_report_generation
#
# title: Quiz Statistics
# desc: >
# Fetch the latest quiz statistics.
# contents:
# - get_quiz_statistics
#
# title: Quiz Submission Events
# desc: >