rustici_software_cloud_v2 1.0.0beta → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (268) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +194 -88
  3. data/lib/rustici_software_cloud_v2/api/about_api.rb +71 -0
  4. data/lib/rustici_software_cloud_v2/api/application_management_api.rb +161 -97
  5. data/lib/rustici_software_cloud_v2/api/authentication_api.rb +13 -13
  6. data/lib/rustici_software_cloud_v2/api/course_api.rb +246 -260
  7. data/lib/rustici_software_cloud_v2/api/dispatch_api.rb +1994 -0
  8. data/lib/rustici_software_cloud_v2/api/invitations_api.rb +964 -0
  9. data/lib/rustici_software_cloud_v2/api/learner_api.rb +296 -0
  10. data/lib/rustici_software_cloud_v2/api/ping_api.rb +10 -8
  11. data/lib/rustici_software_cloud_v2/api/registration_api.rb +379 -324
  12. data/lib/rustici_software_cloud_v2/api/reporting_api.rb +191 -0
  13. data/lib/rustici_software_cloud_v2/api/xapi_api.rb +555 -0
  14. data/lib/rustici_software_cloud_v2/api/zoomi_api.rb +448 -0
  15. data/lib/rustici_software_cloud_v2/api_client.rb +2 -3
  16. data/lib/rustici_software_cloud_v2/api_error.rb +1 -2
  17. data/lib/rustici_software_cloud_v2/configuration.rb +9 -19
  18. data/lib/rustici_software_cloud_v2/models/about_schema.rb +196 -0
  19. data/lib/rustici_software_cloud_v2/models/activity_result_schema.rb +17 -14
  20. data/lib/rustici_software_cloud_v2/models/application_list_schema.rb +12 -8
  21. data/lib/rustici_software_cloud_v2/models/application_schema.rb +12 -8
  22. data/lib/rustici_software_cloud_v2/models/application_token.rb +12 -8
  23. data/lib/rustici_software_cloud_v2/models/{course_tags_batch_schema.rb → batch_tags_schema.rb} +29 -23
  24. data/lib/rustici_software_cloud_v2/models/comment_schema.rb +12 -8
  25. data/lib/rustici_software_cloud_v2/models/completion_amount_schema.rb +12 -8
  26. data/lib/rustici_software_cloud_v2/models/course_activity_schema.rb +14 -11
  27. data/lib/rustici_software_cloud_v2/models/course_list_non_paged_schema.rb +12 -8
  28. data/lib/rustici_software_cloud_v2/models/course_list_schema.rb +12 -8
  29. data/lib/rustici_software_cloud_v2/models/course_reference_schema.rb +11 -8
  30. data/lib/rustici_software_cloud_v2/models/course_schema.rb +14 -11
  31. data/lib/rustici_software_cloud_v2/models/create_dispatch_id_schema.rb +225 -0
  32. data/lib/rustici_software_cloud_v2/models/{link_schema.rb → create_dispatch_list_schema.rb} +22 -21
  33. data/lib/rustici_software_cloud_v2/models/create_dispatch_schema.rb +308 -0
  34. data/lib/rustici_software_cloud_v2/models/create_private_invitation_schema.rb +254 -0
  35. data/lib/rustici_software_cloud_v2/models/create_public_invitation_schema.rb +252 -0
  36. data/lib/rustici_software_cloud_v2/models/create_registration_schema.rb +15 -11
  37. data/lib/rustici_software_cloud_v2/models/credential_created_schema.rb +12 -8
  38. data/lib/rustici_software_cloud_v2/models/credential_list_schema.rb +12 -8
  39. data/lib/rustici_software_cloud_v2/models/credential_request_schema.rb +12 -8
  40. data/lib/rustici_software_cloud_v2/models/credential_schema.rb +12 -8
  41. data/lib/rustici_software_cloud_v2/models/destination_id_schema.rb +197 -0
  42. data/lib/rustici_software_cloud_v2/models/destination_list_schema.rb +200 -0
  43. data/lib/rustici_software_cloud_v2/models/{setting_metadata_valid_values.rb → destination_schema.rb} +42 -31
  44. data/lib/rustici_software_cloud_v2/models/dispatch_id_schema.rb +196 -0
  45. data/lib/rustici_software_cloud_v2/models/dispatch_list_schema.rb +198 -0
  46. data/lib/rustici_software_cloud_v2/models/dispatch_registration_count_schema.rb +196 -0
  47. data/lib/rustici_software_cloud_v2/models/dispatch_schema.rb +290 -0
  48. data/lib/rustici_software_cloud_v2/models/{tag_post_schema.rb → enabled_schema.rb} +24 -11
  49. data/lib/rustici_software_cloud_v2/models/import_fetch_request_schema.rb +12 -9
  50. data/lib/rustici_software_cloud_v2/models/import_job_result_schema.rb +14 -11
  51. data/lib/rustici_software_cloud_v2/models/import_result_schema.rb +12 -8
  52. data/lib/rustici_software_cloud_v2/models/integer_result_schema.rb +13 -9
  53. data/lib/rustici_software_cloud_v2/models/invitation_email_schema.rb +215 -0
  54. data/lib/rustici_software_cloud_v2/models/invitation_job_status_schema.rb +253 -0
  55. data/lib/rustici_software_cloud_v2/models/invitation_summary_list.rb +199 -0
  56. data/lib/rustici_software_cloud_v2/models/invitation_summary_schema.rb +227 -0
  57. data/lib/rustici_software_cloud_v2/models/item_value_pair_schema.rb +12 -8
  58. data/lib/rustici_software_cloud_v2/models/launch_history_list_schema.rb +12 -8
  59. data/lib/rustici_software_cloud_v2/models/launch_history_schema.rb +19 -16
  60. data/lib/rustici_software_cloud_v2/models/launch_link_request_schema.rb +17 -8
  61. data/lib/rustici_software_cloud_v2/models/launch_link_schema.rb +13 -9
  62. data/lib/rustici_software_cloud_v2/models/learner_preference_schema.rb +12 -8
  63. data/lib/rustici_software_cloud_v2/models/learner_schema.rb +13 -9
  64. data/lib/rustici_software_cloud_v2/models/message_schema.rb +13 -9
  65. data/lib/rustici_software_cloud_v2/models/metadata_schema.rb +12 -8
  66. data/lib/rustici_software_cloud_v2/models/objective_schema.rb +23 -20
  67. data/lib/rustici_software_cloud_v2/models/permissions_schema.rb +12 -8
  68. data/lib/rustici_software_cloud_v2/models/ping_schema.rb +28 -20
  69. data/lib/rustici_software_cloud_v2/models/post_back_schema.rb +33 -20
  70. data/lib/rustici_software_cloud_v2/models/private_invitation_list.rb +199 -0
  71. data/lib/rustici_software_cloud_v2/models/private_invitation_schema.rb +266 -0
  72. data/lib/rustici_software_cloud_v2/models/public_invitation_list.rb +199 -0
  73. data/lib/rustici_software_cloud_v2/models/public_invitation_schema.rb +289 -0
  74. data/lib/rustici_software_cloud_v2/models/registration_completion.rb +5 -14
  75. data/lib/rustici_software_cloud_v2/models/registration_list_schema.rb +13 -9
  76. data/lib/rustici_software_cloud_v2/models/registration_schema.rb +24 -9
  77. data/lib/rustici_software_cloud_v2/models/registration_success.rb +5 -14
  78. data/lib/rustici_software_cloud_v2/models/reportage_account_info_schema.rb +259 -0
  79. data/lib/rustici_software_cloud_v2/models/reportage_account_info_usage_schema.rb +214 -0
  80. data/lib/rustici_software_cloud_v2/models/reportage_auth_token_schema.rb +196 -0
  81. data/lib/rustici_software_cloud_v2/models/reportage_link_schema.rb +187 -0
  82. data/lib/rustici_software_cloud_v2/models/response_error.rb +13 -9
  83. data/lib/rustici_software_cloud_v2/models/runtime_interaction_schema.rb +14 -11
  84. data/lib/rustici_software_cloud_v2/models/runtime_objective_schema.rb +19 -16
  85. data/lib/rustici_software_cloud_v2/models/runtime_schema.rb +15 -12
  86. data/lib/rustici_software_cloud_v2/models/score_schema.rb +12 -8
  87. data/lib/rustici_software_cloud_v2/models/setting_item.rb +14 -11
  88. data/lib/rustici_software_cloud_v2/models/setting_list_schema.rb +13 -9
  89. data/lib/rustici_software_cloud_v2/models/setting_metadata.rb +15 -12
  90. data/lib/rustici_software_cloud_v2/models/setting_valid_value.rb +12 -8
  91. data/lib/rustici_software_cloud_v2/models/settings_individual_schema.rb +12 -8
  92. data/lib/rustici_software_cloud_v2/models/settings_post_schema.rb +12 -8
  93. data/lib/rustici_software_cloud_v2/models/shared_data_entry_schema.rb +12 -8
  94. data/lib/rustici_software_cloud_v2/models/static_properties_schema.rb +12 -8
  95. data/lib/rustici_software_cloud_v2/models/string_result_schema.rb +13 -9
  96. data/lib/rustici_software_cloud_v2/models/tag_list_schema.rb +12 -8
  97. data/lib/rustici_software_cloud_v2/models/title_schema.rb +12 -8
  98. data/lib/rustici_software_cloud_v2/models/token_request_schema.rb +14 -10
  99. data/lib/rustici_software_cloud_v2/models/update_dispatch_schema.rb +258 -0
  100. data/lib/rustici_software_cloud_v2/models/user_invitation_list.rb +199 -0
  101. data/lib/rustici_software_cloud_v2/models/user_invitation_schema.rb +236 -0
  102. data/lib/rustici_software_cloud_v2/models/user_invitation_schema_registration_report.rb +214 -0
  103. data/lib/rustici_software_cloud_v2/models/xapi_account.rb +13 -10
  104. data/lib/rustici_software_cloud_v2/models/xapi_activity.rb +13 -10
  105. data/lib/rustici_software_cloud_v2/models/xapi_activity_definition.rb +14 -11
  106. data/lib/rustici_software_cloud_v2/models/xapi_agent_group.rb +14 -12
  107. data/lib/rustici_software_cloud_v2/models/xapi_attachment.rb +18 -15
  108. data/lib/rustici_software_cloud_v2/models/xapi_context.rb +12 -9
  109. data/lib/rustici_software_cloud_v2/models/xapi_context_activity.rb +11 -8
  110. data/lib/rustici_software_cloud_v2/models/xapi_credential_auth_type_schema.rb +220 -0
  111. data/lib/rustici_software_cloud_v2/models/xapi_credential_permissions_level_schema.rb +220 -0
  112. data/lib/rustici_software_cloud_v2/models/xapi_credential_post_schema.rb +252 -0
  113. data/lib/rustici_software_cloud_v2/models/xapi_credential_schema.rb +266 -0
  114. data/lib/rustici_software_cloud_v2/models/{registration_tags_batch_schema.rb → xapi_credentials_list_schema.rb} +30 -31
  115. data/lib/rustici_software_cloud_v2/models/xapi_endpoint_schema.rb +205 -0
  116. data/lib/rustici_software_cloud_v2/models/xapi_interaction_component.rb +13 -10
  117. data/lib/rustici_software_cloud_v2/models/xapi_result.rb +12 -9
  118. data/lib/rustici_software_cloud_v2/models/xapi_score.rb +11 -8
  119. data/lib/rustici_software_cloud_v2/models/xapi_statement.rb +11 -8
  120. data/lib/rustici_software_cloud_v2/models/xapi_statement_pipe_list_schema.rb +194 -0
  121. data/lib/rustici_software_cloud_v2/models/xapi_statement_pipe_post_schema.rb +196 -0
  122. data/lib/rustici_software_cloud_v2/models/xapi_statement_pipe_schema.rb +241 -0
  123. data/lib/rustici_software_cloud_v2/models/xapi_statement_reference.rb +14 -11
  124. data/lib/rustici_software_cloud_v2/models/xapi_statement_result.rb +12 -9
  125. data/lib/rustici_software_cloud_v2/models/xapi_verb.rb +13 -10
  126. data/lib/rustici_software_cloud_v2/models/zoomi_company_id.rb +187 -0
  127. data/lib/rustici_software_cloud_v2/models/zoomi_course_options_schema.rb +196 -0
  128. data/lib/rustici_software_cloud_v2/version.rb +2 -3
  129. data/lib/rustici_software_cloud_v2.rb +50 -6
  130. data/rustici_software_cloud_v2.gemspec +10 -11
  131. data/spec/api_client_spec.rb +1 -13
  132. data/spec/configuration_spec.rb +9 -10
  133. data/spec/spec_helper.rb +1 -13
  134. metadata +107 -271
  135. data/docs/ActivityResultSchema.md +0 -20
  136. data/docs/ApplicationListSchema.md +0 -8
  137. data/docs/ApplicationManagementApi.md +0 -570
  138. data/docs/ApplicationSchema.md +0 -9
  139. data/docs/ApplicationToken.md +0 -10
  140. data/docs/AuthenticationApi.md +0 -64
  141. data/docs/CommentSchema.md +0 -10
  142. data/docs/CompletionAmountSchema.md +0 -8
  143. data/docs/CourseActivitySchema.md +0 -15
  144. data/docs/CourseApi.md +0 -1459
  145. data/docs/CourseListNonPagedSchema.md +0 -8
  146. data/docs/CourseListSchema.md +0 -9
  147. data/docs/CourseReferenceSchema.md +0 -10
  148. data/docs/CourseSchema.md +0 -20
  149. data/docs/CourseTagsBatchSchema.md +0 -9
  150. data/docs/CreateRegistrationSchema.md +0 -17
  151. data/docs/CredentialCreatedSchema.md +0 -12
  152. data/docs/CredentialListSchema.md +0 -8
  153. data/docs/CredentialRequestSchema.md +0 -9
  154. data/docs/CredentialSchema.md +0 -12
  155. data/docs/ImportFetchRequestSchema.md +0 -8
  156. data/docs/ImportJobResultSchema.md +0 -11
  157. data/docs/ImportResultSchema.md +0 -11
  158. data/docs/IntegerResultSchema.md +0 -8
  159. data/docs/ItemValuePairSchema.md +0 -9
  160. data/docs/LaunchHistoryListSchema.md +0 -8
  161. data/docs/LaunchHistorySchema.md +0 -17
  162. data/docs/LaunchLinkRequestSchema.md +0 -17
  163. data/docs/LaunchLinkSchema.md +0 -8
  164. data/docs/LearnerPreferenceSchema.md +0 -11
  165. data/docs/LearnerSchema.md +0 -11
  166. data/docs/LinkSchema.md +0 -8
  167. data/docs/MessageSchema.md +0 -8
  168. data/docs/MetadataSchema.md +0 -14
  169. data/docs/ObjectiveSchema.md +0 -20
  170. data/docs/PermissionsSchema.md +0 -9
  171. data/docs/PingApi.md +0 -57
  172. data/docs/PingSchema.md +0 -8
  173. data/docs/PostBackSchema.md +0 -12
  174. data/docs/RegistrationApi.md +0 -1490
  175. data/docs/RegistrationCompletion.md +0 -7
  176. data/docs/RegistrationListSchema.md +0 -9
  177. data/docs/RegistrationSchema.md +0 -27
  178. data/docs/RegistrationSuccess.md +0 -7
  179. data/docs/RegistrationTagsBatchSchema.md +0 -9
  180. data/docs/ResponseError.md +0 -8
  181. data/docs/RuntimeInteractionSchema.md +0 -18
  182. data/docs/RuntimeObjectiveSchema.md +0 -16
  183. data/docs/RuntimeSchema.md +0 -27
  184. data/docs/ScoreSchema.md +0 -8
  185. data/docs/SettingItem.md +0 -12
  186. data/docs/SettingListSchema.md +0 -8
  187. data/docs/SettingMetadata.md +0 -15
  188. data/docs/SettingMetadataValidValues.md +0 -9
  189. data/docs/SettingValidValue.md +0 -9
  190. data/docs/SettingsIndividualSchema.md +0 -10
  191. data/docs/SettingsPostSchema.md +0 -8
  192. data/docs/SharedDataEntrySchema.md +0 -9
  193. data/docs/StaticPropertiesSchema.md +0 -13
  194. data/docs/StringResultSchema.md +0 -8
  195. data/docs/TagListSchema.md +0 -8
  196. data/docs/TagPostSchema.md +0 -7
  197. data/docs/TitleSchema.md +0 -8
  198. data/docs/TokenRequestSchema.md +0 -9
  199. data/docs/XapiAccount.md +0 -9
  200. data/docs/XapiActivity.md +0 -10
  201. data/docs/XapiActivityDefinition.md +0 -19
  202. data/docs/XapiAgentGroup.md +0 -14
  203. data/docs/XapiAttachment.md +0 -14
  204. data/docs/XapiContext.md +0 -16
  205. data/docs/XapiContextActivity.md +0 -11
  206. data/docs/XapiInteractionComponent.md +0 -9
  207. data/docs/XapiResult.md +0 -13
  208. data/docs/XapiScore.md +0 -11
  209. data/docs/XapiStatement.md +0 -20
  210. data/docs/XapiStatementReference.md +0 -9
  211. data/docs/XapiStatementResult.md +0 -9
  212. data/docs/XapiVerb.md +0 -9
  213. data/git_push.sh +0 -55
  214. data/spec/models/activity_result_schema_spec.rb +0 -133
  215. data/spec/models/application_list_schema_spec.rb +0 -53
  216. data/spec/models/application_schema_spec.rb +0 -59
  217. data/spec/models/application_token_spec.rb +0 -65
  218. data/spec/models/comment_schema_spec.rb +0 -65
  219. data/spec/models/completion_amount_schema_spec.rb +0 -53
  220. data/spec/models/course_activity_schema_spec.rb +0 -99
  221. data/spec/models/course_list_non_paged_schema_spec.rb +0 -53
  222. data/spec/models/course_list_schema_spec.rb +0 -59
  223. data/spec/models/course_reference_schema_spec.rb +0 -65
  224. data/spec/models/course_schema_spec.rb +0 -129
  225. data/spec/models/create_registration_schema_spec.rb +0 -107
  226. data/spec/models/credential_created_schema_spec.rb +0 -77
  227. data/spec/models/credential_list_schema_spec.rb +0 -53
  228. data/spec/models/credential_request_schema_spec.rb +0 -59
  229. data/spec/models/credential_schema_spec.rb +0 -77
  230. data/spec/models/import_fetch_request_schema_spec.rb +0 -53
  231. data/spec/models/import_job_result_schema_spec.rb +0 -75
  232. data/spec/models/import_result_schema_spec.rb +0 -71
  233. data/spec/models/integer_result_schema_spec.rb +0 -53
  234. data/spec/models/item_value_pair_schema_spec.rb +0 -59
  235. data/spec/models/launch_history_list_schema_spec.rb +0 -53
  236. data/spec/models/launch_history_schema_spec.rb +0 -115
  237. data/spec/models/launch_link_request_schema_spec.rb +0 -107
  238. data/spec/models/launch_link_schema_spec.rb +0 -53
  239. data/spec/models/learner_preference_schema_spec.rb +0 -71
  240. data/spec/models/learner_schema_spec.rb +0 -71
  241. data/spec/models/link_schema_spec.rb +0 -53
  242. data/spec/models/message_schema_spec.rb +0 -53
  243. data/spec/models/metadata_schema_spec.rb +0 -89
  244. data/spec/models/objective_schema_spec.rb +0 -137
  245. data/spec/models/permissions_schema_spec.rb +0 -59
  246. data/spec/models/ping_schema_spec.rb +0 -53
  247. data/spec/models/post_back_schema_spec.rb +0 -85
  248. data/spec/models/registration_completion_spec.rb +0 -47
  249. data/spec/models/registration_list_schema_spec.rb +0 -59
  250. data/spec/models/registration_schema_spec.rb +0 -167
  251. data/spec/models/registration_success_spec.rb +0 -47
  252. data/spec/models/response_error_spec.rb +0 -53
  253. data/spec/models/runtime_interaction_schema_spec.rb +0 -117
  254. data/spec/models/runtime_objective_schema_spec.rb +0 -109
  255. data/spec/models/runtime_schema_spec.rb +0 -171
  256. data/spec/models/score_schema_spec.rb +0 -53
  257. data/spec/models/setting_item_spec.rb +0 -81
  258. data/spec/models/setting_list_schema_spec.rb +0 -53
  259. data/spec/models/setting_metadata_spec.rb +0 -99
  260. data/spec/models/setting_metadata_valid_values_spec.rb +0 -59
  261. data/spec/models/settings_individual_schema_spec.rb +0 -65
  262. data/spec/models/settings_post_schema_spec.rb +0 -53
  263. data/spec/models/shared_data_entry_schema_spec.rb +0 -59
  264. data/spec/models/static_properties_schema_spec.rb +0 -83
  265. data/spec/models/string_result_schema_spec.rb +0 -53
  266. data/spec/models/title_schema_spec.rb +0 -53
  267. data/spec/models/token_request_schema_spec.rb +0 -59
  268. data/swagger-codegen.config +0 -11
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 02c6d0dae016900afb5b0411b2a037e14a51ca98
4
+ data.tar.gz: ed676f93124cba4839203211def45f4a5ed4a0eb
5
+ SHA512:
6
+ metadata.gz: bb85741cade3e91b269672b3067d6e7eee0cf0ce3eba0f56e300b5f5fe79566b731bcf43613220e53c288161e83377e4a2d79d5573847b0f31680601abddb43d
7
+ data.tar.gz: c5e4a0ea831c67d3995f6f07313f502cf43faba311b2403c6724910c15da5f4ce2b7af368f42ffe3904a8c7313e8a4b946bf0251a50e4aca0f0026b254ac5701
data/README.md CHANGED
@@ -6,8 +6,8 @@ REST API used for SCORM Cloud integrations.
6
6
 
7
7
  This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
8
8
 
9
- - API version: 2.0 beta
10
- - Package version: 1.0.0-beta
9
+ - API version: 2.0
10
+ - Package version: 1.0.1
11
11
  - Build package: io.swagger.codegen.languages.RubyClientCodegen
12
12
 
13
13
  ## Installation
@@ -23,15 +23,15 @@ gem build rustici_software_cloud_v2.gemspec
23
23
  Then either install the gem locally:
24
24
 
25
25
  ```shell
26
- gem install ./rustici_software_cloud_v2-1.0.0-beta.gem
26
+ gem install ./rustici_software_cloud_v2-1.0.1.gem
27
27
  ```
28
- (for development, run `gem install --dev ./rustici_software_cloud_v2-1.0.0-beta.gem` to install the development dependencies)
28
+ (for development, run `gem install --dev ./rustici_software_cloud_v2-1.0.1.gem` to install the development dependencies)
29
29
 
30
30
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
31
31
 
32
32
  Finally add this to the Gemfile:
33
33
 
34
- gem 'rustici_software_cloud_v2', '~> 1.0.0-beta'
34
+ gem 'rustici_software_cloud_v2', '~> 1.0.1'
35
35
 
36
36
  ### Install from Git
37
37
 
@@ -64,17 +64,14 @@ RusticiSoftwareCloudV2.configure do |config|
64
64
  config.access_token = 'YOUR ACCESS TOKEN'
65
65
  end
66
66
 
67
- api_instance = RusticiSoftwareCloudV2::ApplicationManagementApi.new
68
-
69
- application_name = 'application_name_example' # String |
70
-
67
+ api_instance = RusticiSoftwareCloudV2::AboutApi.new
71
68
 
72
69
  begin
73
- #Create a new application
74
- result = api_instance.create_application(application_name)
70
+ #Get back the API version and application name.
71
+ result = api_instance.get_about
75
72
  p result
76
73
  rescue RusticiSoftwareCloudV2::ApiError => e
77
- puts "Exception when calling ApplicationManagementApi->create_application: #{e}"
74
+ puts "Exception when calling AboutApi->get_about: #{e}"
78
75
  end
79
76
 
80
77
  ```
@@ -85,75 +82,157 @@ All URIs are relative to *https://cloud.scorm.com/api/v2/*
85
82
 
86
83
  Class | Method | HTTP request | Description
87
84
  ------------ | ------------- | ------------- | -------------
88
- *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**create_application**](docs/ApplicationManagementApi.md#create_application) | **PUT** /appManagement/applications/{applicationName} | Create a new application
89
- *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**create_credential**](docs/ApplicationManagementApi.md#create_credential) | **POST** /appManagement/{childAppId}/credentials | Create credential
90
- *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**create_token**](docs/ApplicationManagementApi.md#create_token) | **POST** /appManagement/token | Create token
91
- *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**delete_application**](docs/ApplicationManagementApi.md#delete_application) | **DELETE** /appManagement/applications/{childAppId} | Delete an application. If the application contains content, it must first be manually removed before calling this method, else an error will be thrown.
92
- *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**delete_credential**](docs/ApplicationManagementApi.md#delete_credential) | **DELETE** /appManagement/{childAppId}/credentials/{credentialId} | Removes `credentialId` credentials
93
- *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**get_application_configuration**](docs/ApplicationManagementApi.md#get_application_configuration) | **GET** /appManagement/configuration | Returns all configuration settings for this level
94
- *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**get_application_list**](docs/ApplicationManagementApi.md#get_application_list) | **GET** /appManagement/applications | Get list of all applications in this realm.
95
- *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**get_credentials**](docs/ApplicationManagementApi.md#get_credentials) | **GET** /appManagement/{childAppId}/credentials | List of credentials
96
- *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**set_application_configuration**](docs/ApplicationManagementApi.md#set_application_configuration) | **POST** /appManagement/configuration | Set configuration settings for this level.
97
- *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**update_credential**](docs/ApplicationManagementApi.md#update_credential) | **PUT** /appManagement/{childAppId}/credentials/{credentialId} | Update the name or status associated with `credentialId`
85
+ *RusticiSoftwareCloudV2::AboutApi* | [**get_about**](docs/AboutApi.md#get_about) | **GET** /about | Get back the API version and application name.
86
+ *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**create_application**](docs/ApplicationManagementApi.md#create_application) | **POST** /appManagement/applications |
87
+ *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**create_credential**](docs/ApplicationManagementApi.md#create_credential) | **POST** /appManagement/{childAppId}/credentials |
88
+ *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**create_token**](docs/ApplicationManagementApi.md#create_token) | **POST** /appManagement/token |
89
+ *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**delete_application**](docs/ApplicationManagementApi.md#delete_application) | **DELETE** /appManagement/applications/{childAppId} |
90
+ *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**delete_application_configuration_setting**](docs/ApplicationManagementApi.md#delete_application_configuration_setting) | **DELETE** /appManagement/configuration/{settingId} | Clears the `settingId` value for this level
91
+ *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**delete_credential**](docs/ApplicationManagementApi.md#delete_credential) | **DELETE** /appManagement/{childAppId}/credentials/{credentialId} |
92
+ *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**get_application_configuration**](docs/ApplicationManagementApi.md#get_application_configuration) | **GET** /appManagement/configuration |
93
+ *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**get_application_list**](docs/ApplicationManagementApi.md#get_application_list) | **GET** /appManagement/applications | Get a list of all applications for the realm.
94
+ *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**get_credentials**](docs/ApplicationManagementApi.md#get_credentials) | **GET** /appManagement/{childAppId}/credentials |
95
+ *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**set_application_configuration**](docs/ApplicationManagementApi.md#set_application_configuration) | **POST** /appManagement/configuration |
96
+ *RusticiSoftwareCloudV2::ApplicationManagementApi* | [**update_credential**](docs/ApplicationManagementApi.md#update_credential) | **PUT** /appManagement/{childAppId}/credentials/{credentialId} |
98
97
  *RusticiSoftwareCloudV2::AuthenticationApi* | [**get_app_token**](docs/AuthenticationApi.md#get_app_token) | **POST** /oauth/authenticate/application/token | Authenticates for a oauth token
99
- *RusticiSoftwareCloudV2::CourseApi* | [**build_course_preview_launch_link**](docs/CourseApi.md#build_course_preview_launch_link) | **POST** /courses/{courseId}/preview | Returns the launch link to use to preview this course
100
- *RusticiSoftwareCloudV2::CourseApi* | [**build_course_preview_launch_link_with_version**](docs/CourseApi.md#build_course_preview_launch_link_with_version) | **POST** /courses/{courseId}/versions/{versionId}/preview | Returns the link to use to preview this course
101
- *RusticiSoftwareCloudV2::CourseApi* | [**create_fetch_and_import_course_job**](docs/CourseApi.md#create_fetch_and_import_course_job) | **POST** /courses/importJobs | Start a job to fetch and import a course.
102
- *RusticiSoftwareCloudV2::CourseApi* | [**create_upload_and_import_course_job**](docs/CourseApi.md#create_upload_and_import_course_job) | **POST** /courses/importJobs/upload | Upload a course and start an import job for it.
103
- *RusticiSoftwareCloudV2::CourseApi* | [**delete_course**](docs/CourseApi.md#delete_course) | **DELETE** /courses/{courseId} | Delete `courseId`
104
- *RusticiSoftwareCloudV2::CourseApi* | [**delete_course_configuration_setting**](docs/CourseApi.md#delete_course_configuration_setting) | **DELETE** /courses/{courseId}/configuration/{settingId} | Clears the `settingId` value for this course
105
- *RusticiSoftwareCloudV2::CourseApi* | [**delete_course_tags**](docs/CourseApi.md#delete_course_tags) | **DELETE** /courses/{courseId}/tags | Delete tags for this course
106
- *RusticiSoftwareCloudV2::CourseApi* | [**delete_course_version**](docs/CourseApi.md#delete_course_version) | **DELETE** /courses/{courseId}/versions/{versionId} | Delete version `versionId` of `courseId`
107
- *RusticiSoftwareCloudV2::CourseApi* | [**delete_course_version_configuration_setting**](docs/CourseApi.md#delete_course_version_configuration_setting) | **DELETE** /courses/{courseId}/versions/{versionId}/configuration/{settingId} | Clears the `settingId` value for this course and version.
108
- *RusticiSoftwareCloudV2::CourseApi* | [**get_course**](docs/CourseApi.md#get_course) | **GET** /courses/{courseId} | Get information about `courseId`
109
- *RusticiSoftwareCloudV2::CourseApi* | [**get_course_configuration**](docs/CourseApi.md#get_course_configuration) | **GET** /courses/{courseId}/configuration | Returns all configuration settings for this course
110
- *RusticiSoftwareCloudV2::CourseApi* | [**get_course_statements**](docs/CourseApi.md#get_course_statements) | **GET** /courses/{courseId}/xAPIStatements | Get xAPI statements for `courseId`
111
- *RusticiSoftwareCloudV2::CourseApi* | [**get_course_tags**](docs/CourseApi.md#get_course_tags) | **GET** /courses/{courseId}/tags | Get the tags for this course
112
- *RusticiSoftwareCloudV2::CourseApi* | [**get_course_version_configuration**](docs/CourseApi.md#get_course_version_configuration) | **GET** /courses/{courseId}/versions/{versionId}/configuration | Returns all configuration settings for this course and version.
113
- *RusticiSoftwareCloudV2::CourseApi* | [**get_course_version_info**](docs/CourseApi.md#get_course_version_info) | **GET** /courses/{courseId}/versions/{versionId} | Get version `versionId` of `courseId`
114
- *RusticiSoftwareCloudV2::CourseApi* | [**get_course_version_statements**](docs/CourseApi.md#get_course_version_statements) | **GET** /courses/{courseId}/versions/{versionId}/xAPIStatements | Get xAPI statements for version `versionId` of `courseId`
115
- *RusticiSoftwareCloudV2::CourseApi* | [**get_course_versions**](docs/CourseApi.md#get_course_versions) | **GET** /courses/{courseId}/versions | Get all versions of `courseId`
116
- *RusticiSoftwareCloudV2::CourseApi* | [**get_courses**](docs/CourseApi.md#get_courses) | **GET** /courses | Get all courses for `appId`
117
- *RusticiSoftwareCloudV2::CourseApi* | [**get_import_job_status**](docs/CourseApi.md#get_import_job_status) | **GET** /courses/importJobs/{importJobId} | Check the status of an import job.
118
- *RusticiSoftwareCloudV2::CourseApi* | [**put_course_tags**](docs/CourseApi.md#put_course_tags) | **PUT** /courses/{courseId}/tags | Set the tags for this course
119
- *RusticiSoftwareCloudV2::CourseApi* | [**put_course_tags_batch**](docs/CourseApi.md#put_course_tags_batch) | **PUT** /courses/tags | Sets all of the provided tags on all of the provided courses
120
- *RusticiSoftwareCloudV2::CourseApi* | [**set_course_configuration**](docs/CourseApi.md#set_course_configuration) | **POST** /courses/{courseId}/configuration | Set configuration settings for this course.
121
- *RusticiSoftwareCloudV2::CourseApi* | [**set_course_title**](docs/CourseApi.md#set_course_title) | **PUT** /courses/{courseId}/title | Sets the course title for `courseId`
122
- *RusticiSoftwareCloudV2::CourseApi* | [**set_course_version_configuration**](docs/CourseApi.md#set_course_version_configuration) | **POST** /courses/{courseId}/versions/{versionId}/configuration | Set configuration settings for this course and version.
123
- *RusticiSoftwareCloudV2::PingApi* | [**ping_app_id**](docs/PingApi.md#ping_app_id) | **GET** /ping | Get back a message indicating that the API is working.
124
- *RusticiSoftwareCloudV2::RegistrationApi* | [**create_new_registration_instance**](docs/RegistrationApi.md#create_new_registration_instance) | **POST** /registrations/{registrationId}/instances | Create a new instance for this registration specified by the registration ID
125
- *RusticiSoftwareCloudV2::RegistrationApi* | [**create_registration**](docs/RegistrationApi.md#create_registration) | **POST** /registrations | Create a registration.
126
- *RusticiSoftwareCloudV2::RegistrationApi* | [**delete_registration**](docs/RegistrationApi.md#delete_registration) | **DELETE** /registrations/{registrationId} | Delete `registrationId`
127
- *RusticiSoftwareCloudV2::RegistrationApi* | [**delete_registration_configuration_setting**](docs/RegistrationApi.md#delete_registration_configuration_setting) | **DELETE** /registrations/{registrationId}/configuration/{settingId} | Clears the `settingId` value for this registration
128
- *RusticiSoftwareCloudV2::RegistrationApi* | [**delete_registration_instance_configuration_setting**](docs/RegistrationApi.md#delete_registration_instance_configuration_setting) | **DELETE** /registrations/{registrationId}/instances/{instanceId}/configuration/{settingId} | Clears the `settingId` value for this registration instance
129
- *RusticiSoftwareCloudV2::RegistrationApi* | [**delete_registration_progress**](docs/RegistrationApi.md#delete_registration_progress) | **DELETE** /registrations/{registrationId}/progress | Delete registration progress (clear registration)
130
- *RusticiSoftwareCloudV2::RegistrationApi* | [**delete_registration_tags**](docs/RegistrationApi.md#delete_registration_tags) | **DELETE** /registrations/{registrationId}/tags | Delete tags for this registration
131
- *RusticiSoftwareCloudV2::RegistrationApi* | [**delete_registrations_global_data**](docs/RegistrationApi.md#delete_registrations_global_data) | **DELETE** /registrations/{registrationId}/globalData | Delete global data associated with `registrationId`
132
- *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_configuration**](docs/RegistrationApi.md#get_registration_configuration) | **GET** /registrations/{registrationId}/configuration | Returns all configuration settings for this registration
133
- *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_instance_configuration**](docs/RegistrationApi.md#get_registration_instance_configuration) | **GET** /registrations/{registrationId}/instances/{instanceId}/configuration | Returns all configuration settings for this registration instance
134
- *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_instance_launch_history**](docs/RegistrationApi.md#get_registration_instance_launch_history) | **GET** /registrations/{registrationId}/instances/{instanceId}/launchHistory | Returns history of this registration's launches
135
- *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_instance_progress**](docs/RegistrationApi.md#get_registration_instance_progress) | **GET** /registrations/{registrationId}/instances/{instanceId} | Get registration progress for instance `instanceId` of `registrationId`
136
- *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_instance_statements**](docs/RegistrationApi.md#get_registration_instance_statements) | **GET** /registrations/{registrationId}/instances/{instanceId}/xAPIStatements | Get xAPI statements for instance `instanceId` of `registrationId`
137
- *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_instances**](docs/RegistrationApi.md#get_registration_instances) | **GET** /registrations/{registrationId}/instances | Get all the instances of this the registration specified by the registration ID
138
- *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_launch_history**](docs/RegistrationApi.md#get_registration_launch_history) | **GET** /registrations/{registrationId}/launchHistory | Returns history of this registration's launches
139
- *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_launch_link**](docs/RegistrationApi.md#get_registration_launch_link) | **POST** /registrations/{registrationId}/launchLink | Returns the link to use to launch this registration
140
- *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_progress**](docs/RegistrationApi.md#get_registration_progress) | **GET** /registrations/{registrationId} | Get registration progress for `registrationId`
141
- *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_statements**](docs/RegistrationApi.md#get_registration_statements) | **GET** /registrations/{registrationId}/xAPIStatements | Get xAPI statements for `registrationId`
142
- *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_tags**](docs/RegistrationApi.md#get_registration_tags) | **GET** /registrations/{registrationId}/tags | Get the tags for this registration
143
- *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registrations**](docs/RegistrationApi.md#get_registrations) | **GET** /registrations | Gets a list of registrations including a summary of the status of each registration.
144
- *RusticiSoftwareCloudV2::RegistrationApi* | [**put_registration_tags**](docs/RegistrationApi.md#put_registration_tags) | **PUT** /registrations/{registrationId}/tags | Set the tags for this registration
145
- *RusticiSoftwareCloudV2::RegistrationApi* | [**put_registration_tags_batch**](docs/RegistrationApi.md#put_registration_tags_batch) | **PUT** /registrations/tags | Sets all of the provided tags on all of the provided registrations
146
- *RusticiSoftwareCloudV2::RegistrationApi* | [**registration_exists**](docs/RegistrationApi.md#registration_exists) | **HEAD** /registrations/{registrationId} | Does this registration exist?
147
- *RusticiSoftwareCloudV2::RegistrationApi* | [**set_registration_configuration**](docs/RegistrationApi.md#set_registration_configuration) | **POST** /registrations/{registrationId}/configuration | Set configuration settings for this registration.
148
- *RusticiSoftwareCloudV2::RegistrationApi* | [**set_registration_instance_configuration**](docs/RegistrationApi.md#set_registration_instance_configuration) | **POST** /registrations/{registrationId}/instances/{instanceId}/configuration | Set configuration settings for this registration instance.
98
+ *RusticiSoftwareCloudV2::CourseApi* | [**build_course_preview_launch_link**](docs/CourseApi.md#build_course_preview_launch_link) | **POST** /courses/{courseId}/preview | Get a link to preview a course.
99
+ *RusticiSoftwareCloudV2::CourseApi* | [**build_course_preview_launch_link_with_version**](docs/CourseApi.md#build_course_preview_launch_link_with_version) | **POST** /courses/{courseId}/versions/{versionId}/preview | Get a link to preview a particular course version.
100
+ *RusticiSoftwareCloudV2::CourseApi* | [**create_fetch_and_import_course_job**](docs/CourseApi.md#create_fetch_and_import_course_job) | **POST** /courses/importJobs | Fetch and import a course.
101
+ *RusticiSoftwareCloudV2::CourseApi* | [**create_upload_and_import_course_job**](docs/CourseApi.md#create_upload_and_import_course_job) | **POST** /courses/importJobs/upload | Upload and import a course.
102
+ *RusticiSoftwareCloudV2::CourseApi* | [**delete_course**](docs/CourseApi.md#delete_course) | **DELETE** /courses/{courseId} | Delete a course.
103
+ *RusticiSoftwareCloudV2::CourseApi* | [**delete_course_configuration_setting**](docs/CourseApi.md#delete_course_configuration_setting) | **DELETE** /courses/{courseId}/configuration/{settingId} | Clear a course configuration.
104
+ *RusticiSoftwareCloudV2::CourseApi* | [**delete_course_tags**](docs/CourseApi.md#delete_course_tags) | **DELETE** /courses/{courseId}/tags | Delete course tags.
105
+ *RusticiSoftwareCloudV2::CourseApi* | [**delete_course_version**](docs/CourseApi.md#delete_course_version) | **DELETE** /courses/{courseId}/versions/{versionId} | Delete a course version.
106
+ *RusticiSoftwareCloudV2::CourseApi* | [**delete_course_version_configuration_setting**](docs/CourseApi.md#delete_course_version_configuration_setting) | **DELETE** /courses/{courseId}/versions/{versionId}/configuration/{settingId} | Clear a configuration setting for a version of a course.
107
+ *RusticiSoftwareCloudV2::CourseApi* | [**get_course**](docs/CourseApi.md#get_course) | **GET** /courses/{courseId} | Get course details.
108
+ *RusticiSoftwareCloudV2::CourseApi* | [**get_course_configuration**](docs/CourseApi.md#get_course_configuration) | **GET** /courses/{courseId}/configuration | Get course configuration.
109
+ *RusticiSoftwareCloudV2::CourseApi* | [**get_course_statements**](docs/CourseApi.md#get_course_statements) | **GET** /courses/{courseId}/xAPIStatements | Get course xAPI statements.
110
+ *RusticiSoftwareCloudV2::CourseApi* | [**get_course_tags**](docs/CourseApi.md#get_course_tags) | **GET** /courses/{courseId}/tags | Get course tags.
111
+ *RusticiSoftwareCloudV2::CourseApi* | [**get_course_version_configuration**](docs/CourseApi.md#get_course_version_configuration) | **GET** /courses/{courseId}/versions/{versionId}/configuration | Get configuration for a version of a course.
112
+ *RusticiSoftwareCloudV2::CourseApi* | [**get_course_version_info**](docs/CourseApi.md#get_course_version_info) | **GET** /courses/{courseId}/versions/{versionId} | Get details on a course version.
113
+ *RusticiSoftwareCloudV2::CourseApi* | [**get_course_version_statements**](docs/CourseApi.md#get_course_version_statements) | **GET** /courses/{courseId}/versions/{versionId}/xAPIStatements | Get xAPI statements for a course version.
114
+ *RusticiSoftwareCloudV2::CourseApi* | [**get_course_versions**](docs/CourseApi.md#get_course_versions) | **GET** /courses/{courseId}/versions | Get details on a course's versions.
115
+ *RusticiSoftwareCloudV2::CourseApi* | [**get_courses**](docs/CourseApi.md#get_courses) | **GET** /courses | Get all courses.
116
+ *RusticiSoftwareCloudV2::CourseApi* | [**get_import_job_status**](docs/CourseApi.md#get_import_job_status) | **GET** /courses/importJobs/{importJobId} | Get course import job status.
117
+ *RusticiSoftwareCloudV2::CourseApi* | [**put_course_tags**](docs/CourseApi.md#put_course_tags) | **PUT** /courses/{courseId}/tags | Set course tags.
118
+ *RusticiSoftwareCloudV2::CourseApi* | [**put_course_tags_batch**](docs/CourseApi.md#put_course_tags_batch) | **PUT** /courses/tags | Set tags on courses.
119
+ *RusticiSoftwareCloudV2::CourseApi* | [**set_course_configuration**](docs/CourseApi.md#set_course_configuration) | **POST** /courses/{courseId}/configuration | Set course configuration.
120
+ *RusticiSoftwareCloudV2::CourseApi* | [**set_course_title**](docs/CourseApi.md#set_course_title) | **PUT** /courses/{courseId}/title | Set the title of a course.
121
+ *RusticiSoftwareCloudV2::CourseApi* | [**set_course_version_configuration**](docs/CourseApi.md#set_course_version_configuration) | **POST** /courses/{courseId}/versions/{versionId}/configuration | Set configuration for a version of a course.
122
+ *RusticiSoftwareCloudV2::DispatchApi* | [**create_destinations**](docs/DispatchApi.md#create_destinations) | **POST** /dispatch/destinations | DestinationsByTenant
123
+ *RusticiSoftwareCloudV2::DispatchApi* | [**create_dispatches**](docs/DispatchApi.md#create_dispatches) | **POST** /dispatch/dispatches | Create dispatches.
124
+ *RusticiSoftwareCloudV2::DispatchApi* | [**delete_destination**](docs/DispatchApi.md#delete_destination) | **DELETE** /dispatch/destinations/{destinationId} | Delete destination
125
+ *RusticiSoftwareCloudV2::DispatchApi* | [**delete_destination_dispatches**](docs/DispatchApi.md#delete_destination_dispatches) | **DELETE** /dispatch/destinations/{destinationId}/dispatches | Delete dispatches in destination
126
+ *RusticiSoftwareCloudV2::DispatchApi* | [**delete_destination_tags**](docs/DispatchApi.md#delete_destination_tags) | **DELETE** /dispatch/destinations/{destinationId}/tags | Delete the tags for this destination
127
+ *RusticiSoftwareCloudV2::DispatchApi* | [**delete_dispatch**](docs/DispatchApi.md#delete_dispatch) | **DELETE** /dispatch/dispatches/{dispatchId} | Delete the dispatch with `dispatchId`.
128
+ *RusticiSoftwareCloudV2::DispatchApi* | [**delete_dispatch_postback_info**](docs/DispatchApi.md#delete_dispatch_postback_info) | **DELETE** /dispatch/dispatches/{dispatchId}/postback | DispatchesByTenantAndDispatchId
129
+ *RusticiSoftwareCloudV2::DispatchApi* | [**delete_dispatch_tags**](docs/DispatchApi.md#delete_dispatch_tags) | **DELETE** /dispatch/dispatches/{dispatchId}/tags | Delete the tags for this dispatch.
130
+ *RusticiSoftwareCloudV2::DispatchApi* | [**enable_registration_instancing**](docs/DispatchApi.md#enable_registration_instancing) | **POST** /dispatch/destinations/{destinationId}/dispatches/registrationInstancing | DestinationsDispatchesRegistrationInstancing
131
+ *RusticiSoftwareCloudV2::DispatchApi* | [**get_destination**](docs/DispatchApi.md#get_destination) | **GET** /dispatch/destinations/{destinationId} | Get destination information by destinationId.
132
+ *RusticiSoftwareCloudV2::DispatchApi* | [**get_destination_dispatch_registration_count**](docs/DispatchApi.md#get_destination_dispatch_registration_count) | **GET** /dispatch/destinations/{destinationId}/dispatches/registrationCount | DestinationsDispatchesRegistrationCount
133
+ *RusticiSoftwareCloudV2::DispatchApi* | [**get_destination_dispatch_zip**](docs/DispatchApi.md#get_destination_dispatch_zip) | **GET** /dispatch/destinations/{destinationId}/dispatches/zip | Get a ZIP of related dispatches.
134
+ *RusticiSoftwareCloudV2::DispatchApi* | [**get_destination_dispatches**](docs/DispatchApi.md#get_destination_dispatches) | **GET** /dispatch/destinations/{destinationId}/dispatches | Get a list of dispatches in this destination
135
+ *RusticiSoftwareCloudV2::DispatchApi* | [**get_destination_hash_user_info**](docs/DispatchApi.md#get_destination_hash_user_info) | **GET** /dispatch/destinations/{destinationId}/dispatches/hashUserInfo | True if the destination is set to hash user info, or false if it is disabled.
136
+ *RusticiSoftwareCloudV2::DispatchApi* | [**get_destination_tags**](docs/DispatchApi.md#get_destination_tags) | **GET** /dispatch/destinations/{destinationId}/tags | Get the tags for this destination
137
+ *RusticiSoftwareCloudV2::DispatchApi* | [**get_destinations**](docs/DispatchApi.md#get_destinations) | **GET** /dispatch/destinations | getAllDestinations
138
+ *RusticiSoftwareCloudV2::DispatchApi* | [**get_dispatch**](docs/DispatchApi.md#get_dispatch) | **GET** /dispatch/dispatches/{dispatchId} | Get dispatch by id.
139
+ *RusticiSoftwareCloudV2::DispatchApi* | [**get_dispatch_enabled**](docs/DispatchApi.md#get_dispatch_enabled) | **GET** /dispatch/dispatches/{dispatchId}/enabled | Get the `enabled` status for `dispatchId`.
140
+ *RusticiSoftwareCloudV2::DispatchApi* | [**get_dispatch_hash_user_info**](docs/DispatchApi.md#get_dispatch_hash_user_info) | **GET** /dispatch/dispatches/{dispatchId}/hashUserInfo | Get if this dispatch has PII hashing enabled.
141
+ *RusticiSoftwareCloudV2::DispatchApi* | [**get_dispatch_registration_count**](docs/DispatchApi.md#get_dispatch_registration_count) | **GET** /dispatch/dispatches/{dispatchId}/registrationCount | Get the registration count for `dispatchId`.
142
+ *RusticiSoftwareCloudV2::DispatchApi* | [**get_dispatch_tags**](docs/DispatchApi.md#get_dispatch_tags) | **GET** /dispatch/dispatches/{dispatchId}/tags | Get the tags for this dispatch.
143
+ *RusticiSoftwareCloudV2::DispatchApi* | [**get_dispatch_zip**](docs/DispatchApi.md#get_dispatch_zip) | **GET** /dispatch/dispatches/{dispatchId}/zip | Get the ZIP for the dispatchId.
144
+ *RusticiSoftwareCloudV2::DispatchApi* | [**get_dispatches**](docs/DispatchApi.md#get_dispatches) | **GET** /dispatch/dispatches | All Dispatches in the system for an AppId
145
+ *RusticiSoftwareCloudV2::DispatchApi* | [**put_destination_tags**](docs/DispatchApi.md#put_destination_tags) | **PUT** /dispatch/destinations/{destinationId}/tags | Set the tags for this destination
146
+ *RusticiSoftwareCloudV2::DispatchApi* | [**put_destination_tags_batch**](docs/DispatchApi.md#put_destination_tags_batch) | **PUT** /dispatch/destinations/tags | Sets all of the provided tags on all of the provided destinations
147
+ *RusticiSoftwareCloudV2::DispatchApi* | [**put_dispatch_tags**](docs/DispatchApi.md#put_dispatch_tags) | **PUT** /dispatch/dispatches/{dispatchId}/tags | Set the tags for this dispatch.
148
+ *RusticiSoftwareCloudV2::DispatchApi* | [**put_dispatch_tags_batch**](docs/DispatchApi.md#put_dispatch_tags_batch) | **PUT** /dispatch/dispatches/tags | Sets all of the provided tags on all of the provided dispatches
149
+ *RusticiSoftwareCloudV2::DispatchApi* | [**reset_destination_dispatch_registration_count**](docs/DispatchApi.md#reset_destination_dispatch_registration_count) | **DELETE** /dispatch/destinations/{destinationId}/dispatches/registrationCount | DestinationsDispatchesRegistrationCount
150
+ *RusticiSoftwareCloudV2::DispatchApi* | [**reset_dispatch_registration_count**](docs/DispatchApi.md#reset_dispatch_registration_count) | **DELETE** /dispatch/dispatches/{dispatchId}/registrationCount | Reset registration count.
151
+ *RusticiSoftwareCloudV2::DispatchApi* | [**set_destination**](docs/DispatchApi.md#set_destination) | **PUT** /dispatch/destinations/{destinationId} |
152
+ *RusticiSoftwareCloudV2::DispatchApi* | [**set_destination_dispatch_enabled**](docs/DispatchApi.md#set_destination_dispatch_enabled) | **POST** /dispatch/destinations/{destinationId}/dispatches/enabled | DestinationsDispatchesEnabledByTenant
153
+ *RusticiSoftwareCloudV2::DispatchApi* | [**set_dispatch_enabled**](docs/DispatchApi.md#set_dispatch_enabled) | **PUT** /dispatch/dispatches/{dispatchId}/enabled | Set the `enabled` status for `dispatchId`.
154
+ *RusticiSoftwareCloudV2::DispatchApi* | [**update_destination_hash_user_info**](docs/DispatchApi.md#update_destination_hash_user_info) | **PUT** /dispatch/destinations/{destinationId}/dispatches/hashUserInfo | Enable or disable hashing of the user info for the destination.
155
+ *RusticiSoftwareCloudV2::DispatchApi* | [**update_dispatch**](docs/DispatchApi.md#update_dispatch) | **PUT** /dispatch/dispatches/{dispatchId} | Update the dispatch with `dispatchId`.
156
+ *RusticiSoftwareCloudV2::DispatchApi* | [**update_dispatch_hash_user_info**](docs/DispatchApi.md#update_dispatch_hash_user_info) | **PUT** /dispatch/dispatches/{dispatchId}/hashUserInfo | Enable or disable hashing of the user info for the dispatch.
157
+ *RusticiSoftwareCloudV2::InvitationsApi* | [**create_private_invitation**](docs/InvitationsApi.md#create_private_invitation) | **POST** /invitations/private | Create a private invitation to a course.
158
+ *RusticiSoftwareCloudV2::InvitationsApi* | [**create_public_invitation**](docs/InvitationsApi.md#create_public_invitation) | **POST** /invitations/public | Create a publicly accessible invitation to a course.
159
+ *RusticiSoftwareCloudV2::InvitationsApi* | [**delete_invitation_tags**](docs/InvitationsApi.md#delete_invitation_tags) | **DELETE** /invitations/{invitationId}/tags | Delete the tags for this invitation
160
+ *RusticiSoftwareCloudV2::InvitationsApi* | [**get_all_invitations**](docs/InvitationsApi.md#get_all_invitations) | **GET** /invitations | Get a list of invitation summaries.
161
+ *RusticiSoftwareCloudV2::InvitationsApi* | [**get_invitation_tags**](docs/InvitationsApi.md#get_invitation_tags) | **GET** /invitations/{invitationId}/tags | Get the tags for this invitation
162
+ *RusticiSoftwareCloudV2::InvitationsApi* | [**get_private_invitation**](docs/InvitationsApi.md#get_private_invitation) | **GET** /invitations/private/{invitationId} | Get a information about a private invitation.
163
+ *RusticiSoftwareCloudV2::InvitationsApi* | [**get_private_invitation_job_status**](docs/InvitationsApi.md#get_private_invitation_job_status) | **GET** /invitations/private/{invitationId}/jobStatus | Get the status of an invitation job.
164
+ *RusticiSoftwareCloudV2::InvitationsApi* | [**get_private_invitations**](docs/InvitationsApi.md#get_private_invitations) | **GET** /invitations/private | Get a list of all private invitations.
165
+ *RusticiSoftwareCloudV2::InvitationsApi* | [**get_private_user_invitations**](docs/InvitationsApi.md#get_private_user_invitations) | **GET** /invitations/private/{invitationId}/userInvitations | Get a list of user invitations.
166
+ *RusticiSoftwareCloudV2::InvitationsApi* | [**get_public_invitation**](docs/InvitationsApi.md#get_public_invitation) | **GET** /invitations/public/{invitationId} | Get a information about a public invitation.
167
+ *RusticiSoftwareCloudV2::InvitationsApi* | [**get_public_invitations**](docs/InvitationsApi.md#get_public_invitations) | **GET** /invitations/public | Get a list of all public invitations.
168
+ *RusticiSoftwareCloudV2::InvitationsApi* | [**get_public_user_invitations**](docs/InvitationsApi.md#get_public_user_invitations) | **GET** /invitations/public/{invitationId}/userInvitations | Get a list of user invitations.
169
+ *RusticiSoftwareCloudV2::InvitationsApi* | [**put_invitation_tags**](docs/InvitationsApi.md#put_invitation_tags) | **PUT** /invitations/{invitationId}/tags | Set the tags for this invitation
170
+ *RusticiSoftwareCloudV2::InvitationsApi* | [**put_invitation_tags_batch**](docs/InvitationsApi.md#put_invitation_tags_batch) | **PUT** /invitations/tags | Sets all of the provided tags on all of the provided invitations
171
+ *RusticiSoftwareCloudV2::InvitationsApi* | [**update_private_invitation**](docs/InvitationsApi.md#update_private_invitation) | **PUT** /invitations/private/{invitationId} | Update attributes of this invitation.
172
+ *RusticiSoftwareCloudV2::InvitationsApi* | [**update_public_invitation**](docs/InvitationsApi.md#update_public_invitation) | **PUT** /invitations/public/{invitationId} | Update attributes of this invitation.
173
+ *RusticiSoftwareCloudV2::LearnerApi* | [**delete_all_learner_data**](docs/LearnerApi.md#delete_all_learner_data) | **POST** /learner/{learnerId}/delete-information | Deletes all of the information associated with a learner in an application, by learner id.
174
+ *RusticiSoftwareCloudV2::LearnerApi* | [**delete_learner_tags**](docs/LearnerApi.md#delete_learner_tags) | **DELETE** /learner/{learnerId}/tags | Delete the tags for this learner
175
+ *RusticiSoftwareCloudV2::LearnerApi* | [**get_learner_tags**](docs/LearnerApi.md#get_learner_tags) | **GET** /learner/{learnerId}/tags | Get the tags for this learner
176
+ *RusticiSoftwareCloudV2::LearnerApi* | [**put_learner_tags**](docs/LearnerApi.md#put_learner_tags) | **PUT** /learner/{learnerId}/tags | Set the tags for this learner
177
+ *RusticiSoftwareCloudV2::LearnerApi* | [**put_learner_tags_batch**](docs/LearnerApi.md#put_learner_tags_batch) | **PUT** /learner/tags | Sets all of the provided tags on all of the provided learners
178
+ *RusticiSoftwareCloudV2::PingApi* | [**ping_app_id**](docs/PingApi.md#ping_app_id) | **GET** /ping |
179
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**build_registration_launch_link**](docs/RegistrationApi.md#build_registration_launch_link) | **POST** /registrations/{registrationId}/launchLink | Get registration launch link.
180
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**create_new_registration_instance**](docs/RegistrationApi.md#create_new_registration_instance) | **POST** /registrations/{registrationId}/instances |
181
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**create_registration**](docs/RegistrationApi.md#create_registration) | **POST** /registrations | Create a registration.
182
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**delete_registration**](docs/RegistrationApi.md#delete_registration) | **DELETE** /registrations/{registrationId} | Delete a registration.
183
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**delete_registration_configuration_setting**](docs/RegistrationApi.md#delete_registration_configuration_setting) | **DELETE** /registrations/{registrationId}/configuration/{settingId} | Clear a registration configuration.
184
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**delete_registration_global_data**](docs/RegistrationApi.md#delete_registration_global_data) | **DELETE** /registrations/{registrationId}/globalData | Delete the global data of a registration.
185
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**delete_registration_instance_configuration_setting**](docs/RegistrationApi.md#delete_registration_instance_configuration_setting) | **DELETE** /registrations/{registrationId}/instances/{instanceId}/configuration/{settingId} | Clear a configuration for an instance of a registration.
186
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**delete_registration_progress**](docs/RegistrationApi.md#delete_registration_progress) | **DELETE** /registrations/{registrationId}/progress | Reset a registration.
187
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**delete_registration_tags**](docs/RegistrationApi.md#delete_registration_tags) | **DELETE** /registrations/{registrationId}/tags | Delete tags from a registration.
188
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration**](docs/RegistrationApi.md#get_registration) | **HEAD** /registrations/{registrationId} | See if a registration exists.
189
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_configuration**](docs/RegistrationApi.md#get_registration_configuration) | **GET** /registrations/{registrationId}/configuration | Get registration configuration.
190
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_instance_configuration**](docs/RegistrationApi.md#get_registration_instance_configuration) | **GET** /registrations/{registrationId}/instances/{instanceId}/configuration | Get configuration for instance of registration.
191
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_instance_launch_history**](docs/RegistrationApi.md#get_registration_instance_launch_history) | **GET** /registrations/{registrationId}/instances/{instanceId}/launchHistory | Get launch history for an instance of a registration.
192
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_instance_progress**](docs/RegistrationApi.md#get_registration_instance_progress) | **GET** /registrations/{registrationId}/instances/{instanceId} | Get details of an instance of a registration.
193
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_instance_statements**](docs/RegistrationApi.md#get_registration_instance_statements) | **GET** /registrations/{registrationId}/instances/{instanceId}/xAPIStatements | Get xAPI statements for an instance of a registration.
194
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_instances**](docs/RegistrationApi.md#get_registration_instances) | **GET** /registrations/{registrationId}/instances | Get all instances of a registration.
195
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_launch_history**](docs/RegistrationApi.md#get_registration_launch_history) | **GET** /registrations/{registrationId}/launchHistory | Get launch history for a registration.
196
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_progress**](docs/RegistrationApi.md#get_registration_progress) | **GET** /registrations/{registrationId} | Get details of a registration.
197
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_statements**](docs/RegistrationApi.md#get_registration_statements) | **GET** /registrations/{registrationId}/xAPIStatements | Get xAPI statements for a registration.
198
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registration_tags**](docs/RegistrationApi.md#get_registration_tags) | **GET** /registrations/{registrationId}/tags | Get tags for a registration.
199
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**get_registrations**](docs/RegistrationApi.md#get_registrations) | **GET** /registrations | Get a list of all registrations.
200
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**put_registration_tags**](docs/RegistrationApi.md#put_registration_tags) | **PUT** /registrations/{registrationId}/tags | Set tags on a registration.
201
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**put_registration_tags_batch**](docs/RegistrationApi.md#put_registration_tags_batch) | **PUT** /registrations/tags | Set tags on registrations.
202
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**set_registration_configuration**](docs/RegistrationApi.md#set_registration_configuration) | **POST** /registrations/{registrationId}/configuration | Set registration configuration.
203
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**set_registration_instance_configuration**](docs/RegistrationApi.md#set_registration_instance_configuration) | **POST** /registrations/{registrationId}/instances/{instanceId}/configuration | Set configuration for instance of registration.
204
+ *RusticiSoftwareCloudV2::RegistrationApi* | [**test_registration_postback**](docs/RegistrationApi.md#test_registration_postback) | **POST** /registrations/postBackTest | Send a test postback with a provided configuration.
205
+ *RusticiSoftwareCloudV2::ReportingApi* | [**get_account_info**](docs/ReportingApi.md#get_account_info) | **GET** /reporting/accountInfo | Get all of the account information specified by the given app ID
206
+ *RusticiSoftwareCloudV2::ReportingApi* | [**get_reportage_auth_token**](docs/ReportingApi.md#get_reportage_auth_token) | **GET** /reporting/reportageAuth | Get a session authentication token to use when launching Reportage
207
+ *RusticiSoftwareCloudV2::ReportingApi* | [**get_reportage_link**](docs/ReportingApi.md#get_reportage_link) | **GET** /reporting/reportageLink | Get the link to a page in Reportage with the given authentication and permissions
208
+ *RusticiSoftwareCloudV2::XapiApi* | [**create_statement_pipe**](docs/XapiApi.md#create_statement_pipe) | **POST** /xapi/statementPipes | Create an xAPI statement pipe.
209
+ *RusticiSoftwareCloudV2::XapiApi* | [**create_xapi_credential**](docs/XapiApi.md#create_xapi_credential) | **POST** /xapi/credentials | Create a xAPI credential.
210
+ *RusticiSoftwareCloudV2::XapiApi* | [**delete_statement_pipe**](docs/XapiApi.md#delete_statement_pipe) | **DELETE** /xapi/statementPipes/{statementPipeId} | Deletes this xAPI pipe.
211
+ *RusticiSoftwareCloudV2::XapiApi* | [**delete_xapi_credential**](docs/XapiApi.md#delete_xapi_credential) | **DELETE** /xapi/credentials/{xapiCredentialId} | Deletes the xAPI credentials specified by the xAPI credentials id
212
+ *RusticiSoftwareCloudV2::XapiApi* | [**get_statement_pipe**](docs/XapiApi.md#get_statement_pipe) | **GET** /xapi/statementPipes/{statementPipeId} | Retrieves xAPI pipe for `xapiPipeId`
213
+ *RusticiSoftwareCloudV2::XapiApi* | [**get_statement_pipes**](docs/XapiApi.md#get_statement_pipes) | **GET** /xapi/statementPipes | Get all of the xapiPipes for `appId`
214
+ *RusticiSoftwareCloudV2::XapiApi* | [**get_xapi_credential**](docs/XapiApi.md#get_xapi_credential) | **GET** /xapi/credentials/{xapiCredentialId} | Retrieves the xAPI credentials specified by the xAPI credentials id.
215
+ *RusticiSoftwareCloudV2::XapiApi* | [**get_xapi_credentials**](docs/XapiApi.md#get_xapi_credentials) | **GET** /xapi/credentials | Get the list of xapiCredentials
216
+ *RusticiSoftwareCloudV2::XapiApi* | [**set_statement_pipe**](docs/XapiApi.md#set_statement_pipe) | **PUT** /xapi/statementPipes/{statementPipeId} | Edit an existing xAPI pipe or create a new one.
217
+ *RusticiSoftwareCloudV2::XapiApi* | [**set_xapi_credential**](docs/XapiApi.md#set_xapi_credential) | **PUT** /xapi/credentials/{xapiCredentialId} | Edit an existing xAPI credential or create a new one, specified by the xAPI credentials id
218
+ *RusticiSoftwareCloudV2::ZoomiApi* | [**delete_application_zoomi_keys**](docs/ZoomiApi.md#delete_application_zoomi_keys) | **DELETE** /zoomi/key | Delete the keys for an application.
219
+ *RusticiSoftwareCloudV2::ZoomiApi* | [**delete_zoomi_course**](docs/ZoomiApi.md#delete_zoomi_course) | **DELETE** /zoomi/course/{courseId}/version/{versionId} | Deletes the course in zoomi
220
+ *RusticiSoftwareCloudV2::ZoomiApi* | [**get_application_zoomi_company_id**](docs/ZoomiApi.md#get_application_zoomi_company_id) | **GET** /zoomi | Gets the zoomi company id of an application.
221
+ *RusticiSoftwareCloudV2::ZoomiApi* | [**get_application_zoomi_public_key**](docs/ZoomiApi.md#get_application_zoomi_public_key) | **GET** /zoomi/key | Gets the public key for an application.
222
+ *RusticiSoftwareCloudV2::ZoomiApi* | [**get_course_zoomi_enabled**](docs/ZoomiApi.md#get_course_zoomi_enabled) | **GET** /zoomi/course/{courseId}/version/{versionId}/enabled | Gets the zoomi enabled value of a course
223
+ *RusticiSoftwareCloudV2::ZoomiApi* | [**get_zoomi_course_status**](docs/ZoomiApi.md#get_zoomi_course_status) | **GET** /zoomi/course/{courseId}/version/{versionId} | Gets the status for a course and imports to Zoomi
224
+ *RusticiSoftwareCloudV2::ZoomiApi* | [**set_application_zoomi_company_id**](docs/ZoomiApi.md#set_application_zoomi_company_id) | **PUT** /zoomi | Set the zoomi company id value of an application.
225
+ *RusticiSoftwareCloudV2::ZoomiApi* | [**set_course_zoomi_enabled**](docs/ZoomiApi.md#set_course_zoomi_enabled) | **PUT** /zoomi/course/{courseId}/version/{versionId}/enabled | Set the zoomi enabled value of a course.
149
226
 
150
227
 
151
228
  ## Documentation for Models
152
229
 
230
+ - [RusticiSoftwareCloudV2::AboutSchema](docs/AboutSchema.md)
153
231
  - [RusticiSoftwareCloudV2::ActivityResultSchema](docs/ActivityResultSchema.md)
154
232
  - [RusticiSoftwareCloudV2::ApplicationListSchema](docs/ApplicationListSchema.md)
155
233
  - [RusticiSoftwareCloudV2::ApplicationSchema](docs/ApplicationSchema.md)
156
234
  - [RusticiSoftwareCloudV2::ApplicationToken](docs/ApplicationToken.md)
235
+ - [RusticiSoftwareCloudV2::BatchTagsSchema](docs/BatchTagsSchema.md)
157
236
  - [RusticiSoftwareCloudV2::CommentSchema](docs/CommentSchema.md)
158
237
  - [RusticiSoftwareCloudV2::CompletionAmountSchema](docs/CompletionAmountSchema.md)
159
238
  - [RusticiSoftwareCloudV2::CourseActivitySchema](docs/CourseActivitySchema.md)
@@ -161,16 +240,32 @@ Class | Method | HTTP request | Description
161
240
  - [RusticiSoftwareCloudV2::CourseListSchema](docs/CourseListSchema.md)
162
241
  - [RusticiSoftwareCloudV2::CourseReferenceSchema](docs/CourseReferenceSchema.md)
163
242
  - [RusticiSoftwareCloudV2::CourseSchema](docs/CourseSchema.md)
164
- - [RusticiSoftwareCloudV2::CourseTagsBatchSchema](docs/CourseTagsBatchSchema.md)
243
+ - [RusticiSoftwareCloudV2::CreateDispatchIdSchema](docs/CreateDispatchIdSchema.md)
244
+ - [RusticiSoftwareCloudV2::CreateDispatchListSchema](docs/CreateDispatchListSchema.md)
245
+ - [RusticiSoftwareCloudV2::CreateDispatchSchema](docs/CreateDispatchSchema.md)
246
+ - [RusticiSoftwareCloudV2::CreatePrivateInvitationSchema](docs/CreatePrivateInvitationSchema.md)
247
+ - [RusticiSoftwareCloudV2::CreatePublicInvitationSchema](docs/CreatePublicInvitationSchema.md)
165
248
  - [RusticiSoftwareCloudV2::CreateRegistrationSchema](docs/CreateRegistrationSchema.md)
166
249
  - [RusticiSoftwareCloudV2::CredentialCreatedSchema](docs/CredentialCreatedSchema.md)
167
250
  - [RusticiSoftwareCloudV2::CredentialListSchema](docs/CredentialListSchema.md)
168
251
  - [RusticiSoftwareCloudV2::CredentialRequestSchema](docs/CredentialRequestSchema.md)
169
252
  - [RusticiSoftwareCloudV2::CredentialSchema](docs/CredentialSchema.md)
253
+ - [RusticiSoftwareCloudV2::DestinationIdSchema](docs/DestinationIdSchema.md)
254
+ - [RusticiSoftwareCloudV2::DestinationListSchema](docs/DestinationListSchema.md)
255
+ - [RusticiSoftwareCloudV2::DestinationSchema](docs/DestinationSchema.md)
256
+ - [RusticiSoftwareCloudV2::DispatchIdSchema](docs/DispatchIdSchema.md)
257
+ - [RusticiSoftwareCloudV2::DispatchListSchema](docs/DispatchListSchema.md)
258
+ - [RusticiSoftwareCloudV2::DispatchRegistrationCountSchema](docs/DispatchRegistrationCountSchema.md)
259
+ - [RusticiSoftwareCloudV2::DispatchSchema](docs/DispatchSchema.md)
260
+ - [RusticiSoftwareCloudV2::EnabledSchema](docs/EnabledSchema.md)
170
261
  - [RusticiSoftwareCloudV2::ImportFetchRequestSchema](docs/ImportFetchRequestSchema.md)
171
262
  - [RusticiSoftwareCloudV2::ImportJobResultSchema](docs/ImportJobResultSchema.md)
172
263
  - [RusticiSoftwareCloudV2::ImportResultSchema](docs/ImportResultSchema.md)
173
264
  - [RusticiSoftwareCloudV2::IntegerResultSchema](docs/IntegerResultSchema.md)
265
+ - [RusticiSoftwareCloudV2::InvitationEmailSchema](docs/InvitationEmailSchema.md)
266
+ - [RusticiSoftwareCloudV2::InvitationJobStatusSchema](docs/InvitationJobStatusSchema.md)
267
+ - [RusticiSoftwareCloudV2::InvitationSummaryList](docs/InvitationSummaryList.md)
268
+ - [RusticiSoftwareCloudV2::InvitationSummarySchema](docs/InvitationSummarySchema.md)
174
269
  - [RusticiSoftwareCloudV2::ItemValuePairSchema](docs/ItemValuePairSchema.md)
175
270
  - [RusticiSoftwareCloudV2::LaunchHistoryListSchema](docs/LaunchHistoryListSchema.md)
176
271
  - [RusticiSoftwareCloudV2::LaunchHistorySchema](docs/LaunchHistorySchema.md)
@@ -178,18 +273,24 @@ Class | Method | HTTP request | Description
178
273
  - [RusticiSoftwareCloudV2::LaunchLinkSchema](docs/LaunchLinkSchema.md)
179
274
  - [RusticiSoftwareCloudV2::LearnerPreferenceSchema](docs/LearnerPreferenceSchema.md)
180
275
  - [RusticiSoftwareCloudV2::LearnerSchema](docs/LearnerSchema.md)
181
- - [RusticiSoftwareCloudV2::LinkSchema](docs/LinkSchema.md)
182
276
  - [RusticiSoftwareCloudV2::MessageSchema](docs/MessageSchema.md)
183
277
  - [RusticiSoftwareCloudV2::MetadataSchema](docs/MetadataSchema.md)
184
278
  - [RusticiSoftwareCloudV2::ObjectiveSchema](docs/ObjectiveSchema.md)
185
279
  - [RusticiSoftwareCloudV2::PermissionsSchema](docs/PermissionsSchema.md)
186
280
  - [RusticiSoftwareCloudV2::PingSchema](docs/PingSchema.md)
187
281
  - [RusticiSoftwareCloudV2::PostBackSchema](docs/PostBackSchema.md)
282
+ - [RusticiSoftwareCloudV2::PrivateInvitationList](docs/PrivateInvitationList.md)
283
+ - [RusticiSoftwareCloudV2::PrivateInvitationSchema](docs/PrivateInvitationSchema.md)
284
+ - [RusticiSoftwareCloudV2::PublicInvitationList](docs/PublicInvitationList.md)
285
+ - [RusticiSoftwareCloudV2::PublicInvitationSchema](docs/PublicInvitationSchema.md)
188
286
  - [RusticiSoftwareCloudV2::RegistrationCompletion](docs/RegistrationCompletion.md)
189
287
  - [RusticiSoftwareCloudV2::RegistrationListSchema](docs/RegistrationListSchema.md)
190
288
  - [RusticiSoftwareCloudV2::RegistrationSchema](docs/RegistrationSchema.md)
191
289
  - [RusticiSoftwareCloudV2::RegistrationSuccess](docs/RegistrationSuccess.md)
192
- - [RusticiSoftwareCloudV2::RegistrationTagsBatchSchema](docs/RegistrationTagsBatchSchema.md)
290
+ - [RusticiSoftwareCloudV2::ReportageAccountInfoSchema](docs/ReportageAccountInfoSchema.md)
291
+ - [RusticiSoftwareCloudV2::ReportageAccountInfoUsageSchema](docs/ReportageAccountInfoUsageSchema.md)
292
+ - [RusticiSoftwareCloudV2::ReportageAuthTokenSchema](docs/ReportageAuthTokenSchema.md)
293
+ - [RusticiSoftwareCloudV2::ReportageLinkSchema](docs/ReportageLinkSchema.md)
193
294
  - [RusticiSoftwareCloudV2::ResponseError](docs/ResponseError.md)
194
295
  - [RusticiSoftwareCloudV2::RuntimeInteractionSchema](docs/RuntimeInteractionSchema.md)
195
296
  - [RusticiSoftwareCloudV2::RuntimeObjectiveSchema](docs/RuntimeObjectiveSchema.md)
@@ -205,9 +306,12 @@ Class | Method | HTTP request | Description
205
306
  - [RusticiSoftwareCloudV2::StaticPropertiesSchema](docs/StaticPropertiesSchema.md)
206
307
  - [RusticiSoftwareCloudV2::StringResultSchema](docs/StringResultSchema.md)
207
308
  - [RusticiSoftwareCloudV2::TagListSchema](docs/TagListSchema.md)
208
- - [RusticiSoftwareCloudV2::TagPostSchema](docs/TagPostSchema.md)
209
309
  - [RusticiSoftwareCloudV2::TitleSchema](docs/TitleSchema.md)
210
310
  - [RusticiSoftwareCloudV2::TokenRequestSchema](docs/TokenRequestSchema.md)
311
+ - [RusticiSoftwareCloudV2::UpdateDispatchSchema](docs/UpdateDispatchSchema.md)
312
+ - [RusticiSoftwareCloudV2::UserInvitationList](docs/UserInvitationList.md)
313
+ - [RusticiSoftwareCloudV2::UserInvitationSchema](docs/UserInvitationSchema.md)
314
+ - [RusticiSoftwareCloudV2::UserInvitationSchemaRegistrationReport](docs/UserInvitationSchemaRegistrationReport.md)
211
315
  - [RusticiSoftwareCloudV2::XapiAccount](docs/XapiAccount.md)
212
316
  - [RusticiSoftwareCloudV2::XapiActivity](docs/XapiActivity.md)
213
317
  - [RusticiSoftwareCloudV2::XapiActivityDefinition](docs/XapiActivityDefinition.md)
@@ -215,13 +319,24 @@ Class | Method | HTTP request | Description
215
319
  - [RusticiSoftwareCloudV2::XapiAttachment](docs/XapiAttachment.md)
216
320
  - [RusticiSoftwareCloudV2::XapiContext](docs/XapiContext.md)
217
321
  - [RusticiSoftwareCloudV2::XapiContextActivity](docs/XapiContextActivity.md)
322
+ - [RusticiSoftwareCloudV2::XapiCredentialAuthTypeSchema](docs/XapiCredentialAuthTypeSchema.md)
323
+ - [RusticiSoftwareCloudV2::XapiCredentialPermissionsLevelSchema](docs/XapiCredentialPermissionsLevelSchema.md)
324
+ - [RusticiSoftwareCloudV2::XapiCredentialPostSchema](docs/XapiCredentialPostSchema.md)
325
+ - [RusticiSoftwareCloudV2::XapiCredentialSchema](docs/XapiCredentialSchema.md)
326
+ - [RusticiSoftwareCloudV2::XapiCredentialsListSchema](docs/XapiCredentialsListSchema.md)
327
+ - [RusticiSoftwareCloudV2::XapiEndpointSchema](docs/XapiEndpointSchema.md)
218
328
  - [RusticiSoftwareCloudV2::XapiInteractionComponent](docs/XapiInteractionComponent.md)
219
329
  - [RusticiSoftwareCloudV2::XapiResult](docs/XapiResult.md)
220
330
  - [RusticiSoftwareCloudV2::XapiScore](docs/XapiScore.md)
221
331
  - [RusticiSoftwareCloudV2::XapiStatement](docs/XapiStatement.md)
332
+ - [RusticiSoftwareCloudV2::XapiStatementPipeListSchema](docs/XapiStatementPipeListSchema.md)
333
+ - [RusticiSoftwareCloudV2::XapiStatementPipePostSchema](docs/XapiStatementPipePostSchema.md)
334
+ - [RusticiSoftwareCloudV2::XapiStatementPipeSchema](docs/XapiStatementPipeSchema.md)
222
335
  - [RusticiSoftwareCloudV2::XapiStatementReference](docs/XapiStatementReference.md)
223
336
  - [RusticiSoftwareCloudV2::XapiStatementResult](docs/XapiStatementResult.md)
224
337
  - [RusticiSoftwareCloudV2::XapiVerb](docs/XapiVerb.md)
338
+ - [RusticiSoftwareCloudV2::ZoomiCompanyId](docs/ZoomiCompanyId.md)
339
+ - [RusticiSoftwareCloudV2::ZoomiCourseOptionsSchema](docs/ZoomiCourseOptionsSchema.md)
225
340
 
226
341
 
227
342
  ## Documentation for Authorization
@@ -235,12 +350,6 @@ Class | Method | HTTP request | Description
235
350
 
236
351
  - **Type**: HTTP basic authentication
237
352
 
238
- ### LAUNCH_TOKEN
239
-
240
- - **Type**: API key
241
- - **API key parameter name**: launchToken
242
- - **Location**: URL query string
243
-
244
353
  ### OAUTH
245
354
 
246
355
  - **Type**: OAuth
@@ -274,10 +383,7 @@ Class | Method | HTTP request | Description
274
383
  - read:appmgmt: Grants read access to app management methods
275
384
  - write:appmgmt: Grants write access to app management methods
276
385
  - delete:appmgmt: Grants deletion access to app management methods
277
-
278
- ### URL_TOKEN
279
-
280
- - **Type**: API key
281
- - **API key parameter name**: authtoken
282
- - **Location**: URL query string
386
+ - read:learner: Grants read access to the learner methods
387
+ - write:learner: Grants write access to the learner methods
388
+ - read:about: Grants read permission for the about method
283
389
 
@@ -0,0 +1,71 @@
1
+ =begin
2
+ #SCORM Cloud Rest API
3
+
4
+ #REST API used for SCORM Cloud integrations.
5
+
6
+ OpenAPI spec version: 2.0
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+
10
+ =end
11
+
12
+ require "uri"
13
+
14
+ module RusticiSoftwareCloudV2
15
+ class AboutApi
16
+ attr_accessor :api_client
17
+
18
+ def initialize(api_client = ApiClient.default)
19
+ @api_client = api_client
20
+ end
21
+
22
+ # Get back the API version and application name.
23
+ # Get back the API version and application name.
24
+ # @param [Hash] opts the optional parameters
25
+ # @return [AboutSchema]
26
+ def get_about(opts = {})
27
+ data, _status_code, _headers = get_about_with_http_info(opts)
28
+ return data
29
+ end
30
+
31
+ # Get back the API version and application name.
32
+ # Get back the API version and application name.
33
+ # @param [Hash] opts the optional parameters
34
+ # @return [Array<(AboutSchema, Fixnum, Hash)>] AboutSchema data, response status code and response headers
35
+ def get_about_with_http_info(opts = {})
36
+ if @api_client.config.debugging
37
+ @api_client.config.logger.debug "Calling API: AboutApi.get_about ..."
38
+ end
39
+ # resource path
40
+ local_var_path = "/about".sub('{format}','json')
41
+
42
+ # query parameters
43
+ query_params = {}
44
+
45
+ # header parameters
46
+ header_params = {}
47
+ # HTTP header 'Accept' (if needed)
48
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
49
+ # HTTP header 'Content-Type'
50
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
51
+
52
+ # form parameters
53
+ form_params = {}
54
+
55
+ # http body (model)
56
+ post_body = nil
57
+ auth_names = ['APP_NORMAL', 'OAUTH']
58
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path,
59
+ :header_params => header_params,
60
+ :query_params => query_params,
61
+ :form_params => form_params,
62
+ :body => post_body,
63
+ :auth_names => auth_names,
64
+ :return_type => 'AboutSchema')
65
+ if @api_client.config.debugging
66
+ @api_client.config.logger.debug "API called: AboutApi#get_about\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
67
+ end
68
+ return data, status_code, headers
69
+ end
70
+ end
71
+ end