|
1 | 1 | # RegistrationApi |
2 | 2 |
|
3 | | -All URIs are relative to *https://dev.cloud.scorm.com/api/v2/* |
| 3 | +All URIs are relative to *https://cloud.scorm.com/api/v2/* |
4 | 4 |
|
5 | 5 | Method | HTTP request | Description |
6 | 6 | ------------- | ------------- | ------------- |
@@ -752,8 +752,8 @@ OAUTH.setAccessToken("YOUR ACCESS TOKEN"); |
752 | 752 | RegistrationApi apiInstance = new RegistrationApi(); |
753 | 753 | String registrationId = "registrationId_example"; // String | id for this registration |
754 | 754 | Integer instanceId = 56; // Integer | The instance of this registration |
755 | | -OffsetDateTime since = new OffsetDateTime(); // OffsetDateTime | Only items updated since the specified ISO 8601 TimeStamp (inclusive) are included. If a time zone is not specified, UTC time zone will be used. |
756 | | -OffsetDateTime until = new OffsetDateTime(); // OffsetDateTime | Only items updated before the specified ISO 8601 TimeStamp (inclusive) are included. If a time zone is not specified, UTC time zone will be used. |
| 755 | +OffsetDateTime since = OffsetDateTime.now(); // OffsetDateTime | Only items updated since the specified ISO 8601 TimeStamp (inclusive) are included. If a time zone is not specified, UTC time zone will be used. |
| 756 | +OffsetDateTime until = OffsetDateTime.now(); // OffsetDateTime | Only items updated before the specified ISO 8601 TimeStamp (inclusive) are included. If a time zone is not specified, UTC time zone will be used. |
757 | 757 | String more = "more_example"; // String | Value for this parameter will be provided in the 'more' property of registration lists, where needed. An opaque value, construction and parsing may change without notice. |
758 | 758 | try { |
759 | 759 | XapiStatementResult result = apiInstance.getRegistrationInstanceStatements(registrationId, instanceId, since, until, more); |
@@ -815,8 +815,8 @@ OAUTH.setAccessToken("YOUR ACCESS TOKEN"); |
815 | 815 |
|
816 | 816 | RegistrationApi apiInstance = new RegistrationApi(); |
817 | 817 | String registrationId = "registrationId_example"; // String | id for this registration |
818 | | -OffsetDateTime until = new OffsetDateTime(); // OffsetDateTime | Only items updated before the specified ISO 8601 TimeStamp (inclusive) are included. If a time zone is not specified, UTC time zone will be used. |
819 | | -OffsetDateTime since = new OffsetDateTime(); // OffsetDateTime | Only items updated since the specified ISO 8601 TimeStamp (inclusive) are included. If a time zone is not specified, UTC time zone will be used. |
| 818 | +OffsetDateTime until = OffsetDateTime.now(); // OffsetDateTime | Only items updated before the specified ISO 8601 TimeStamp (inclusive) are included. If a time zone is not specified, UTC time zone will be used. |
| 819 | +OffsetDateTime since = OffsetDateTime.now(); // OffsetDateTime | Only items updated since the specified ISO 8601 TimeStamp (inclusive) are included. If a time zone is not specified, UTC time zone will be used. |
820 | 820 | String more = "more_example"; // String | Value for this parameter will be provided in the 'more' property of registration lists, where needed. An opaque value, construction and parsing may change without notice. |
821 | 821 | Boolean includeChildResults = false; // Boolean | Include information about each learning object, not just the top level in the results |
822 | 822 | Boolean includeInteractionsAndObjectives = false; // Boolean | Include interactions and objectives in the results |
@@ -1061,8 +1061,8 @@ OAUTH.setAccessToken("YOUR ACCESS TOKEN"); |
1061 | 1061 |
|
1062 | 1062 | RegistrationApi apiInstance = new RegistrationApi(); |
1063 | 1063 | String registrationId = "registrationId_example"; // String | id for this registration |
1064 | | -OffsetDateTime since = new OffsetDateTime(); // OffsetDateTime | Only items updated since the specified ISO 8601 TimeStamp (inclusive) are included. If a time zone is not specified, UTC time zone will be used. |
1065 | | -OffsetDateTime until = new OffsetDateTime(); // OffsetDateTime | Only items updated before the specified ISO 8601 TimeStamp (inclusive) are included. If a time zone is not specified, UTC time zone will be used. |
| 1064 | +OffsetDateTime since = OffsetDateTime.now(); // OffsetDateTime | Only items updated since the specified ISO 8601 TimeStamp (inclusive) are included. If a time zone is not specified, UTC time zone will be used. |
| 1065 | +OffsetDateTime until = OffsetDateTime.now(); // OffsetDateTime | Only items updated before the specified ISO 8601 TimeStamp (inclusive) are included. If a time zone is not specified, UTC time zone will be used. |
1066 | 1066 | String more = "more_example"; // String | Value for this parameter will be provided in the 'more' property of registration lists, where needed. An opaque value, construction and parsing may change without notice. |
1067 | 1067 | try { |
1068 | 1068 | XapiStatementResult result = apiInstance.getRegistrationStatements(registrationId, since, until, more); |
@@ -1180,8 +1180,8 @@ OAUTH.setAccessToken("YOUR ACCESS TOKEN"); |
1180 | 1180 | RegistrationApi apiInstance = new RegistrationApi(); |
1181 | 1181 | String courseId = "courseId_example"; // String | Only registrations for the specified course id will be included. |
1182 | 1182 | String learnerId = "learnerId_example"; // String | Only registrations for the specified learner id will be included. |
1183 | | -OffsetDateTime since = new OffsetDateTime(); // OffsetDateTime | Only items updated since the specified ISO 8601 TimeStamp (inclusive) are included. If a time zone is not specified, UTC time zone will be used. |
1184 | | -OffsetDateTime until = new OffsetDateTime(); // OffsetDateTime | Only items updated before the specified ISO 8601 TimeStamp (inclusive) are included. If a time zone is not specified, UTC time zone will be used. |
| 1183 | +OffsetDateTime since = OffsetDateTime.now(); // OffsetDateTime | Only items updated since the specified ISO 8601 TimeStamp (inclusive) are included. If a time zone is not specified, UTC time zone will be used. |
| 1184 | +OffsetDateTime until = OffsetDateTime.now(); // OffsetDateTime | Only items updated before the specified ISO 8601 TimeStamp (inclusive) are included. If a time zone is not specified, UTC time zone will be used. |
1185 | 1185 | String more = "more_example"; // String | Value for this parameter will be provided in the 'more' property of registration lists, where needed. An opaque value, construction and parsing may change without notice. |
1186 | 1186 | Boolean includeChildResults = false; // Boolean | Include information about each learning object, not just the top level in the results |
1187 | 1187 | Boolean includeInteractionsAndObjectives = false; // Boolean | Include interactions and objectives in the results |
|
0 commit comments