{"id":488,"date":"2024-12-11T11:24:09","date_gmt":"2024-12-11T11:24:09","guid":{"rendered":"https:\/\/linqur.com\/docs\/?post_type=ht_kb&#038;p=488"},"modified":"2024-12-11T11:24:13","modified_gmt":"2024-12-11T11:24:13","slug":"api-eindpunt-documentatie","status":"publish","type":"ht_kb","link":"https:\/\/linqur.com\/docs\/nl\/documentatie\/api-eindpunt-documentatie\/","title":{"rendered":"API eindpunt documentatie"},"content":{"rendered":"\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Een uitgebreide beschrijving van alle eindpunten.<\/p>\n<\/blockquote>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Methode<\/strong><\/td><td><strong>HTTP-verzoek<\/strong><\/td><td><strong>Beschrijving<\/strong><\/td><\/tr><tr><td>cursusAdd()<\/td><td><strong>GET<\/strong> \/cursus\/toevoegen<\/td><td>Een nieuwe cursus maken<\/td><\/tr><tr><td>cursusverwijderen()<\/td><td><strong>GET<\/strong> \/cursus\/verwijderen<\/td><td>Een bestaande cursus verwijderen aan de hand van zijn ID<\/td><\/tr><tr><td>cursusleerobjectverwijderen()<\/td><td><strong>GET<\/strong> \/cursus\/leerobject\/verwijderen<\/td><td>Een specifiek leerobject verwijderen<\/td><\/tr><tr><td>CourseLearningObjectScormAdd()<\/td><td><strong>POST<\/strong> \/cursus\/leerobject\/scrom\/toevoegen<\/td><td>Een SCORM-pakket aan een cursus toevoegen<\/td><\/tr><tr><td>cursusLeerObjectLijst()<\/td><td><strong>GET<\/strong> \/cursus\/leerobject\/lijst<\/td><td>Leerobjecten voor een cursus ophalen<\/td><\/tr><tr><td>cursusleerdoelScormUpdate()<\/td><td><strong>POST<\/strong> \/cursus\/leerobject\/scrom\/update<\/td><td>SCORM-leerobject bijwerken<\/td><\/tr><tr><td>cursuslijst()<\/td><td><strong>GET<\/strong> \/cursus\/lijst<\/td><td>Alle cursussen ophalen<\/td><\/tr><tr><td>cursusLtiRegistratiesDag()<\/td><td><strong>GET<\/strong> \/cursus\/lti\/inschrijvingen_per_dag<\/td><td>Ontvang LTI-registraties per dag<\/td><\/tr><tr><td>cursusLtiRegistratiesSomBijCursus()<\/td><td><strong>GET<\/strong> \/cursus\/lti\/registraties_som_per_cursus<\/td><td>Totaal aantal LTI-registraties per cursus<\/td><\/tr><tr><td>cursusToolAdd()<\/td><td><strong>GET<\/strong> \/cursus\/tool\/toevoegen<\/td><td>Nieuw hulpmiddel aan een cursus toevoegen<\/td><\/tr><tr><td>cursusToolVerwijderen()<\/td><td><strong>GET<\/strong> \/cursus\/tool\/verwijderen<\/td><td>Een specifieke cursus verwijderen<\/td><\/tr><tr><td>cursusToolList()<\/td><td><strong>GET<\/strong> \/cursus\/tool\/lijst<\/td><td>Alle LTI-tools in een cursus weergeven<\/td><\/tr><tr><td>cursusToolUpdate()<\/td><td><strong>GET<\/strong> \/cursus\/tool\/bijwerken<\/td><td>Een specifieke cursus bijwerken<\/td><\/tr><tr><td>cursusupdate()<\/td><td><strong>GET<\/strong> \/cursus\/update<\/td><td>Een bestaande cursus bijwerken<\/td><\/tr><tr><td>tokenAdd()<\/td><td><strong>GET<\/strong> \/token\/toevoegen<\/td><td>Een nieuw API token toevoegen<\/td><\/tr><tr><td>tokenVerwijderen()<\/td><td><strong>GET<\/strong> \/token\/verwijderen<\/td><td>Een API token verwijderen<\/td><\/tr><tr><td>tokenLijst()<\/td><td><strong>GET<\/strong> \/token\/lijst<\/td><td>Lijst van API tokens opvragen<\/td><\/tr><tr><td>gebruiker verwijderen()<\/td><td><strong>GET<\/strong> \/gebruiker\/verwijderen<\/td><td>Een gebruiker verwijderen op ID<\/td><\/tr><tr><td>userDeleteBulk()<\/td><td><strong>GET<\/strong> \/gebruiker\/verwijderen_bulk<\/td><td>Meerdere gebruikers verwijderen op ID<\/td><\/tr><tr><td>gebruikerslijst()<\/td><td><strong>GET<\/strong> \/gebruiker\/lijst<\/td><td>Lijst van gebruikers in een tool opvragen<\/td><\/tr><\/tbody><\/table><\/figure>\n\n<h2 class=\"wp-block-heading\">cursusAdd()<\/h2>\n\n<pre class=\"wp-block-code\"><code>courseAdd($coursename, $coursenameshort): \\LtiSaasApi\\Model\\CourseAdd200Response<\/code><\/pre>\n\n<p><strong>Een nieuwe cursus maken<\/strong><\/p>\n\n<p>Met dit eindpunt kun je een nieuwe cursus aanmaken. De cursusnaam moet worden doorgegeven als een query parameter. <\/p>\n\n<p><strong>Voorbeeld<\/strong><\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$coursename = 'coursename_example'; \/\/ string | The name of the course to be created\n$coursenameshort = 'coursenameshort_example'; \/\/ string | The shortname of the course to be created\n\ntry {\n    $result = $apiInstance-&gt;courseAdd($coursename, $coursenameshort);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;courseAdd: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p><strong>Parameters<\/strong><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Naam<\/th><th>Type<\/th><th>Beschrijving<\/th><th>Opmerkingen<\/th><\/tr><\/thead><tbody><tr><td><strong>cursusnaam<\/strong><\/td><td><strong>string<\/strong><\/td><td>De naam van de cursus die moet worden aangemaakt<\/td><td><\/td><\/tr><tr><td><strong>cursusnaam<\/strong><\/td><td><strong>string<\/strong><\/td><td>De korte naam van de cursus die moet worden aangemaakt<\/td><td>[optional]<\/td><\/tr><\/tbody><\/table><\/figure>\n\n<p><strong>Type terugkeer<\/strong><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<p>\\LtiSaasApi \\CursusToevoeging200Respons<\/p>\n\n<p>Machtiging: token<a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<h3 class=\"wp-block-heading\">HTTP verzoek-headers<a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h3>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: Niet gedefinieerd<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">cursusverwijderen()<\/h2>\n\n<pre class=\"wp-block-code\"><code>courseDelete($courseid): \\LtiSaasApi\\Model\\CourseDelete200Response<\/code><\/pre>\n\n<p><strong>Een bestaande cursus verwijderen aan de hand van zijn ID<\/strong><\/p>\n\n<p>Met dit eindpunt kun je een bestaande cursus verwijderen door de unieke identifier (cursus-ID) op te geven.<\/p>\n\n<p><strong>Voorbeeld<\/strong><\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$courseid = 56; \/\/ int | The unique identifier of the course to be deleted\n\ntry {\n    $result = $apiInstance-&gt;courseDelete($courseid);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;courseDelete: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p><strong>Parameters<\/strong><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters-1\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Naam<\/th><th>Type<\/th><th>Beschrijving<\/th><th>Opmerkingen<\/th><\/tr><\/thead><tbody><tr><td><strong>cursusid<\/strong><\/td><td><strong>int<\/strong><\/td><td>De unieke identifier van de te verwijderen cursus<\/td><td><\/td><\/tr><\/tbody><\/table><\/figure>\n\n<p><strong>Type terugkeer<\/strong><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type-1\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<p><strong>\\LtiSaasApi_cursusverwijderen200antwoord<\/strong><\/p>\n\n<p>Machtiging: token<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization-1\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p><strong>HTTP verzoek-headers<\/strong><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers-1\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: Niet gedefinieerd<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">cursusleerobjectverwijderen()<\/h2>\n\n<pre class=\"wp-block-code\"><code>courseLearningObjectDelete($learningobjectid): \\LtiSaasApi\\Model\\CourseUpdate200Response<\/code><\/pre>\n\n<p><strong>Een specifiek leerobject verwijderen<\/strong><\/p>\n\n<p>Dit eindpunt verwijdert een specifiek leerobject gebaseerd op de gegeven identifier. * Het retourneert een succesrespons bij succesvol verwijderen en relevante foutresponses bij ongeldige verzoeken of ongeautoriseerde * toegang. <\/p>\n\n<p><strong>Voorbeeld<\/strong><\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$learningobjectid = 56; \/\/ int | The identifier of the learning object\n\ntry {\n    $result = $apiInstance-&gt;courseLearningObjectDelete($learningobjectid);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;courseLearningObjectDelete: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p><strong>Parameters<\/strong><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters-2\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Naam<\/th><th>Type<\/th><th>Beschrijving<\/th><th>Opmerkingen<\/th><\/tr><\/thead><tbody><tr><td><strong>leerdoelid<\/strong><\/td><td><strong>int<\/strong><\/td><td>De identifier van het leerobject<\/td><td><\/td><\/tr><\/tbody><\/table><\/figure>\n\n<p><strong>Type terugkeer<\/strong><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type-2\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<p>\\LtiSaasApi \\Cursusupdate200Response<\/p>\n\n<p>Machtiging: token<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization-2\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p><strong>HTTP verzoek-headers<\/strong><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers-2\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: Niet gedefinieerd<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">CourseLearningObjectScormAdd()<\/h2>\n\n<pre class=\"wp-block-code\"><code>courseLearningObjectScromAdd($courseid, $packagefile, $name, $popup, $width, $height, $grademethod, $maxgrade, $maxattempt, $whatgrade, $forcenewattempt, $lastattemptlock, $autocommit, $masteryoverride): \\LtiSaasApi\\Model\\CourseLearningObjectScromAdd200Response<\/code><\/pre>\n\n<p>Een SCORM-pakket aan een cursus toevoegen<\/p>\n\n<p>Met dit eindpunt kun je een SCORM-pakket als leerobject toevoegen aan een gespecificeerde cursus.<\/p>\n\n<p>Voorbeeld<\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$courseid = 56; \/\/ int | The unique identifier of the course\n$packagefile = \"\/path\/to\/file.txt\"; \/\/ \\SplFileObject | The .zip file of the SCORM package\n$name = 'name_example'; \/\/ string | The name of the SCORM package\n$popup = 56; \/\/ int | Indicates if the SCORM package should open in a new window (1) or not (0)\n$width = 56; \/\/ int | The display width for the SCORM package\n$height = 56; \/\/ int | The display height for the SCORM package\n$grademethod = 56; \/\/ int | The grading method for the SCORM package (0: learning objects, 1: highest grade, 2: average      *                     grade, 3: sum grade)\n$maxgrade = 56; \/\/ int | The maximum grade possible for the SCORM package\n$maxattempt = 56; \/\/ int | The maximum number of attempts allowed for the SCORM package\n$whatgrade = 56; \/\/ int | The grading strategy for multiple attempts (0: highest attempt, 1: average grade, 2: first      *                     attempt)\n$forcenewattempt = 56; \/\/ int | Policy for forcing new attempts (0: no, 1: every new attempt is a new grade, 2: every new      *                     attempt resets previous grades)\n$lastattemptlock = 56; \/\/ int | Indicates if the SCORM package should be locked after the last attempt (0: no, 1: yes)\n$autocommit = 56; \/\/ int | Indicates if the SCORM package grades should auto commit (0: no, 1: yes)\n$masteryoverride = 56; \/\/ int | Indicates if the mastery grade overrides the max grade (0: no, 1: yes)\n\ntry {\n    $result = $apiInstance-&gt;courseLearningObjectScromAdd($courseid, $packagefile, $name, $popup, $width, $height, $grademethod, $maxgrade, $maxattempt, $whatgrade, $forcenewattempt, $lastattemptlock, $autocommit, $masteryoverride);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;courseLearningObjectScromAdd: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p>Parameters<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters-3\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Naam<\/th><th>Type<\/th><th>Beschrijving<\/th><th>Opmerkingen<\/th><\/tr><\/thead><tbody><tr><td><strong>cursusid<\/strong><\/td><td><strong>int<\/strong><\/td><td>De unieke identificatiecode van de cursus<\/td><td><\/td><\/tr><tr><td><strong>pakketbestand<\/strong><\/td><td><strong>\\SplFileObject**<\/strong><\/td><td>Het .zip-bestand van het SCORM-pakket<\/td><td><\/td><\/tr><tr><td><strong>naam<\/strong><\/td><td><strong>string<\/strong><\/td><td>De naam van het SCORM-pakket<\/td><td><\/td><\/tr><tr><td><strong>pop-up<\/strong><\/td><td><strong>int<\/strong><\/td><td>Geeft aan of het SCORM-pakket in een nieuw venster moet worden geopend (1) of niet (0)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>breedte<\/strong><\/td><td><strong>int<\/strong><\/td><td>De weergavebreedte voor het SCORM-pakket<\/td><td>[optional]<\/td><\/tr><tr><td><strong>hoogte<\/strong><\/td><td><strong>int<\/strong><\/td><td>De weergavehoogte voor het SCORM-pakket<\/td><td>[optional]<\/td><\/tr><tr><td><strong>grademethod<\/strong><\/td><td><strong>int<\/strong><\/td><td>De beoordelingsmethode voor het SCORM-pakket (0: leerobjecten, 1: hoogste cijfer, 2: gemiddeld * cijfer, 3: totaalcijfer)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>maxgrade<\/strong><\/td><td><strong>int<\/strong><\/td><td>Het maximaal mogelijke cijfer voor het SCORM-pakket<\/td><td>[optional]<\/td><\/tr><tr><td><strong>maximale poging<\/strong><\/td><td><strong>int<\/strong><\/td><td>Het maximaal aantal toegestane pogingen voor het SCORM-pakket<\/td><td>[optional]<\/td><\/tr><tr><td><strong>watgrade<\/strong><\/td><td><strong>int<\/strong><\/td><td>De beoordelingsstrategie voor meerdere pogingen (0: hoogste poging, 1: gemiddeld cijfer, 2: eerste * poging)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>nieuwe poging<\/strong><\/td><td><strong>int<\/strong><\/td><td>Beleid voor het afdwingen van nieuwe pogingen (0: nee, 1: elke nieuwe poging is een nieuw cijfer, 2: bij elke nieuwe * poging worden eerdere cijfers gereset)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>laatste poging<\/strong><\/td><td><strong>int<\/strong><\/td><td>Geeft aan of het SCORM-pakket moet worden vergrendeld na de laatste poging (0: nee, 1: ja)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>autocommit<\/strong><\/td><td><strong>int<\/strong><\/td><td>Geeft aan of het SCORM pakket automatisch moet worden vastgelegd (0: nee, 1: ja)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>masteryoverride<\/strong><\/td><td><strong>int<\/strong><\/td><td>Geeft aan of het meestergetal het maximumcijfer overschrijft (0: nee, 1: ja)<\/td><td>[optional]<\/td><\/tr><\/tbody><\/table><\/figure>\n\n<p>Type terugkeer<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type-3\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p><strong>\\LtiSaasApi \\CursusLearningObjectScromAdd200Response<\/strong><\/p>\n\n<p>Autorisatie<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization-3\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p>token<\/p>\n\n<p>HTTP verzoek-headers<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers-3\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: multipart\/form-data<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">cursusLeerObjectLijst()<\/h2>\n\n<pre class=\"wp-block-code\"><code>courseLearningobjectList($courseid): \\LtiSaasApi\\Model\\CourseLearningobjectList200Response<\/code><\/pre>\n\n<p>Leerobjecten voor een cursus ophalen<\/p>\n\n<p>Dit eindpunt haalt een lijst op van leerobjecten die geassocieerd zijn met een specifieke cursus, ge\u00efdentificeerd door zijn * unieke ID.<\/p>\n\n<p>Voorbeeld<\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$courseid = 56; \/\/ int | The unique identifier of the course\n\ntry {\n    $result = $apiInstance-&gt;courseLearningobjectList($courseid);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;courseLearningobjectList: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p>Parameters<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters-4\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Naam<\/th><th>Type<\/th><th>Beschrijving<\/th><th>Opmerkingen<\/th><\/tr><\/thead><tbody><tr><td><strong>cursusid<\/strong><\/td><td><strong>int<\/strong><\/td><td>De unieke identificatiecode van de cursus<\/td><td><\/td><\/tr><\/tbody><\/table><\/figure>\n\n<p>Type terugkeer<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type-4\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p><strong>\\leervakkenlijst200antwoord<\/strong><\/p>\n\n<p>Autorisatie<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization-4\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p>token<\/p>\n\n<p>HTTP verzoek-headers<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers-4\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: Niet gedefinieerd<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">cursusleerdoelScormUpdate()<\/h2>\n\n<pre class=\"wp-block-code\"><code>courseLearningobjectScormUpdate($learningobjectid, $packagefile, $name, $popup, $width, $height, $grademethod, $maxgrade, $maxattempt, $whatgrade, $forcenewattempt, $lastattemptlock, $autocommit, $masteryoverride): \\LtiSaasApi\\Model\\CourseUpdate200Response<\/code><\/pre>\n\n<p>SCORM-leerobject bijwerken<\/p>\n\n<p>Dit eindpunt maakt het mogelijk om een SCORM-leerobject bij te werken binnen een cursus. Vereiste parameters zijn * de ID van het leerobject, het .zip-pakketbestand, de naam, de popupmodus en andere beoordelings- en weergave-eigenschappen. <\/p>\n\n<p>Voorbeeld<\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$learningobjectid = 56; \/\/ int | The ID of the learning object\n$packagefile = \"\/path\/to\/file.txt\"; \/\/ \\SplFileObject | The .zip file of the SCORM package\n$name = 'name_example'; \/\/ string | The name of the SCORM package\n$popup = 56; \/\/ int | Indicates if the SCORM package should open in a new window (1) or not (0)\n$width = 56; \/\/ int | The display width for the SCORM package\n$height = 56; \/\/ int | The display height for the SCORM package\n$grademethod = 56; \/\/ int | The grading method for the SCORM package (0: learning objects, 1: highest grade, 2: average      *                     grade, 3: sum grade)\n$maxgrade = 56; \/\/ int | The maximum grade possible for the SCORM package\n$maxattempt = 56; \/\/ int | The maximum number of attempts allowed for the SCORM package\n$whatgrade = 56; \/\/ int | The grading strategy for multiple attempts (0: highest attempt, 1: average grade, 2: first      *                     attempt)\n$forcenewattempt = 56; \/\/ int | Policy for forcing new attempts (0: no, 1: every new attempt is a new grade, 2: every new      *                     attempt resets previous grades)\n$lastattemptlock = 56; \/\/ int | Indicates if the SCORM package should be locked after the last attempt (0: no, 1: yes)\n$autocommit = 56; \/\/ int | Indicates if the SCORM package grades should auto commit (0: no, 1: yes)\n$masteryoverride = 56; \/\/ int | Indicates if the mastery grade overrides the max grade (0: no, 1: yes)\n\ntry {\n    $result = $apiInstance-&gt;courseLearningobjectScormUpdate($learningobjectid, $packagefile, $name, $popup, $width, $height, $grademethod, $maxgrade, $maxattempt, $whatgrade, $forcenewattempt, $lastattemptlock, $autocommit, $masteryoverride);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;courseLearningobjectScormUpdate: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p>Parameters<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters-5\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Naam<\/th><th>Type<\/th><th>Beschrijving<\/th><th>Opmerkingen<\/th><\/tr><\/thead><tbody><tr><td><strong>leerdoelid<\/strong><\/td><td><strong>int<\/strong><\/td><td>De ID van het leerobject<\/td><td><\/td><\/tr><tr><td><strong>pakketbestand<\/strong><\/td><td><strong>\\SplFileObject**<\/strong><\/td><td>Het .zip-bestand van het SCORM-pakket<\/td><td>[optional]<\/td><\/tr><tr><td><strong>naam<\/strong><\/td><td><strong>string<\/strong><\/td><td>De naam van het SCORM-pakket<\/td><td>[optional]<\/td><\/tr><tr><td><strong>pop-up<\/strong><\/td><td><strong>int<\/strong><\/td><td>Geeft aan of het SCORM-pakket in een nieuw venster moet worden geopend (1) of niet (0)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>breedte<\/strong><\/td><td><strong>int<\/strong><\/td><td>De weergavebreedte voor het SCORM-pakket<\/td><td>[optional]<\/td><\/tr><tr><td><strong>hoogte<\/strong><\/td><td><strong>int<\/strong><\/td><td>De weergavehoogte voor het SCORM-pakket<\/td><td>[optional]<\/td><\/tr><tr><td><strong>grademethod<\/strong><\/td><td><strong>int<\/strong><\/td><td>De beoordelingsmethode voor het SCORM-pakket (0: leerobjecten, 1: hoogste cijfer, 2: gemiddeld * cijfer, 3: totaalcijfer)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>maxgrade<\/strong><\/td><td><strong>int<\/strong><\/td><td>Het maximaal mogelijke cijfer voor het SCORM-pakket<\/td><td>[optional]<\/td><\/tr><tr><td><strong>maximale poging<\/strong><\/td><td><strong>int<\/strong><\/td><td>Het maximaal aantal toegestane pogingen voor het SCORM-pakket<\/td><td>[optional]<\/td><\/tr><tr><td><strong>watgrade<\/strong><\/td><td><strong>int<\/strong><\/td><td>De beoordelingsstrategie voor meerdere pogingen (0: hoogste poging, 1: gemiddeld cijfer, 2: eerste * poging)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>nieuwe poging<\/strong><\/td><td><strong>int<\/strong><\/td><td>Beleid voor het afdwingen van nieuwe pogingen (0: nee, 1: elke nieuwe poging is een nieuw cijfer, 2: bij elke nieuwe * poging worden eerdere cijfers gereset)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>laatste poging<\/strong><\/td><td><strong>int<\/strong><\/td><td>Geeft aan of het SCORM-pakket moet worden vergrendeld na de laatste poging (0: nee, 1: ja)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>autocommit<\/strong><\/td><td><strong>int<\/strong><\/td><td>Geeft aan of het SCORM pakket automatisch moet worden vastgelegd (0: nee, 1: ja)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>masteryoverride<\/strong><\/td><td><strong>int<\/strong><\/td><td>Geeft aan of het meestergetal het maximumcijfer overschrijft (0: nee, 1: ja)<\/td><td>[optional]<\/td><\/tr><\/tbody><\/table><\/figure>\n\n<p>Type terugkeer<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type-5\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p><strong>\\LtiSaasApi \\Cursusupdate200Response<\/strong><\/p>\n\n<p>Autorisatie<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization-5\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p>token<\/p>\n\n<h3 class=\"wp-block-heading\">HTTP verzoek-headers<\/h3>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers-5\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: multipart\/form-data<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">cursuslijst()<\/h2>\n\n<pre class=\"wp-block-code\"><code>courseList(): \\LtiSaasApi\\Model\\CourseList200Response<\/code><\/pre>\n\n<p>Alle cursussen ophalen<\/p>\n\n<p>Vraagt een lijst met cursussen op, samen met de bijbehorende LTI-informatie.<\/p>\n\n<p>Voorbeeld<\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n\ntry {\n    $result = $apiInstance-&gt;courseList();\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;courseList: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p>Parameters<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters-6\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p>Dit eindpunt heeft geen parameter nodig.<\/p>\n\n<p>Type terugkeer<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type-6\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p><strong>\\\u0422SaasApi \u0422SaasApi \u0422SaasApi \u0422SaasApi \u0422SaasApi \u0422SaasApi \u0422SaasApi\u00b3<\/strong><\/p>\n\n<p>Autorisatie<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization-6\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p>token<\/p>\n\n<h3 class=\"wp-block-heading\">HTTP verzoek-headers<\/h3>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers-6\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: Niet gedefinieerd<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">cursusLtiRegistratiesDag()<\/h2>\n\n<pre class=\"wp-block-code\"><code>courseLtiRegistrationsByDay($from, $till, $toolid): \\LtiSaasApi\\Model\\CourseLtiRegistrationsByDay200Response<\/code><\/pre>\n\n<p>Ontvang LTI-registraties per dag<\/p>\n\n<p>Dit eindpunt haalt de registraties van Learning Tools Interoperability (LTI) op, gegroepeerd per dag. De resultaten * geven inzicht in de dagelijkse registraties en kunnen worden gebruikt voor analytische doeleinden. <\/p>\n\n<p>Voorbeeld<\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$from = new \\DateTime(\"2013-10-20T19:20:30+01:00\"); \/\/ \\DateTime | The start date (format: DD-MM-YYYY)\n$till = new \\DateTime(\"2013-10-20T19:20:30+01:00\"); \/\/ \\DateTime | The end date (format: DD-MM-YYYY)\n$toolid = 56; \/\/ int | The identifier of the LTI tool (optional)\n\ntry {\n    $result = $apiInstance-&gt;courseLtiRegistrationsByDay($from, $till, $toolid);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;courseLtiRegistrationsByDay: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p>Parameters<\/p>\n\n<p><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters-7\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Naam<\/th><th>Type<\/th><th>Beschrijving<\/th><th>Opmerkingen<\/th><\/tr><\/thead><tbody><tr><td><strong>van<\/strong><\/td><td><strong>\\Datum<\/strong><\/td><td>De begindatum (formaat: DD-MM-JJJJ)<\/td><td><\/td><\/tr><tr><td><strong>tot<\/strong><\/td><td><strong>\\Datum<\/strong><\/td><td>De einddatum (formaat: DD-MM-JJJJ)<\/td><td><\/td><\/tr><tr><td><strong>toolid<\/strong><\/td><td><strong>int<\/strong><\/td><td>De identificatiecode van het LTI-tool (optioneel)<\/td><td>[optional]<\/td><\/tr><\/tbody><\/table><\/figure>\n\n<p>Type terugkeer<\/p>\n\n<p><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type-7\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<p><strong>\\LtiSaasApi \\CursusLtiInschrijvingenDag200Respons<\/strong><\/p>\n\n<p>Autorisatie<\/p>\n\n<p><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization-7\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<p>token<\/p>\n\n<h3 class=\"wp-block-heading\">HTTP verzoek-headers<\/h3>\n\n<p><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers-7\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: Niet gedefinieerd<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h3 class=\"wp-block-heading\">cursusLtiRegistratiesSomByCourse()<\/h3>\n\n<pre class=\"wp-block-code\"><code>courseLtiRegistrationsSumByCourse($from, $till, $courseid): \\LtiSaasApi\\Model\\CourseLtiRegistrationsSumByCourse200Response<\/code><\/pre>\n\n<p>Totaal aantal LTI-registraties per cursus<\/p>\n\n<p>Dit eindpunt haalt het totale aantal registraties van Learning Tools Interoperability (LTI) op voor elke * cursus. De resultaten kunnen gebruikt worden om inzicht te krijgen in de algemene registratieactiviteiten van elke cursus. <\/p>\n\n<p>Voorbeeld<\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$from = new \\DateTime(\"2013-10-20T19:20:30+01:00\"); \/\/ \\DateTime | The start date (format: DD-MM-YYYY)\n$till = new \\DateTime(\"2013-10-20T19:20:30+01:00\"); \/\/ \\DateTime | The end date (format: DD-MM-YYYY)\n$courseid = 56; \/\/ int | The identifier of the course (optional)\n\ntry {\n    $result = $apiInstance-&gt;courseLtiRegistrationsSumByCourse($from, $till, $courseid);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;courseLtiRegistrationsSumByCourse: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p>Parameters<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters-8\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Naam<\/th><th>Type<\/th><th>Beschrijving<\/th><th>Opmerkingen<\/th><\/tr><\/thead><tbody><tr><td><strong>van<\/strong><\/td><td><strong>\\Datum<\/strong><\/td><td>De begindatum (formaat: DD-MM-JJJJ)<\/td><td><\/td><\/tr><tr><td><strong>tot<\/strong><\/td><td><strong>\\Datum<\/strong><\/td><td>De einddatum (formaat: DD-MM-JJJJ)<\/td><td><\/td><\/tr><tr><td><strong>cursusid<\/strong><\/td><td><strong>int<\/strong><\/td><td>De identifier van de cursus (optioneel)<\/td><td>[optional]<\/td><\/tr><\/tbody><\/table><\/figure>\n\n<p>Type terugkeer<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type-8\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p><strong>\\LtiSaasApi \\CursusLtiRegistratiesSomDoorCursus200Respons<\/strong><\/p>\n\n<p>Autorisatie<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization-8\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p>token<\/p>\n\n<p>HTTP verzoek-headers<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers-8\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: Niet gedefinieerd<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">cursusToolAdd()<\/h2>\n\n<pre class=\"wp-block-code\"><code>courseToolAdd($courseid, $ltiversion, $name, $publishmode, $learningobjectid, $maxenrolled, $roleinstructor, $rolelearner, $provisioningmodeinstructor, $provisioningmodelearner, $gradesync, $gradesynccompletion, $membersync, $membersyncmode, $enrolperiod, $enrolstartdate, $enrolenddate): \\LtiSaasApi\\Model\\CourseToolAdd200Response<\/code><\/pre>\n\n<p>Nieuw hulpmiddel aan een cursus toevoegen<\/p>\n\n<p>Met dit eindpunt kun je een nieuw hulpmiddel toevoegen aan een bestaande cursus. Je moet de cursus-ID en de * details van de toe te voegen tool opgeven. <\/p>\n\n<p>Voorbeeld<\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$courseid = 56; \/\/ int | The ID of the course\n$ltiversion = 'ltiversion_example'; \/\/ string | The version of LTI. Either LTI Advantage or Legacy LTI\n$name = 'name_example'; \/\/ string | The name\n$publishmode = 'publishmode_example'; \/\/ string | The mode of publishing (course or activity)\n$learningobjectid = 56; \/\/ int | The ID of the learning object. Only required if publishmode is set to activity\n$maxenrolled = 56; \/\/ int | The maximum enrollment. Defaults to unlimited (0).\n$roleinstructor = 56; \/\/ int | The role of the instructor. Defaults to 3\n$rolelearner = 56; \/\/ int | The role of the learner. Defaults to 5\n$provisioningmodeinstructor = 56; \/\/ int | The provisioning mode of the instructor. Defaults to 2\n$provisioningmodelearner = 56; \/\/ int | The provisioning mode of the learner. Defaults to 1\n$gradesync = 56; \/\/ int | Whether grade sync is enabled. Grade synchronization (1=Yes, 0=No)\n$gradesynccompletion = 56; \/\/ int | Require course or activity completion prior to grade synchronisation (1=Yes, 0=No)\n$membersync = 56; \/\/ int | Whether member sync is enabled. User synchronisation (1=Yes, 0=No)\n$membersyncmode = 56; \/\/ int | User synchronisation mode (1=Enrol new and unenrol missing users, 2=Enrol new users, 3=Unenrol missing users)\n$enrolperiod = 56; \/\/ int | The duration of the enrolment (in seconds)\n$enrolstartdate = new \\DateTime(\"2013-10-20T19:20:30+01:00\"); \/\/ \\DateTime | The enrolment start date (YYYY-MM-DDTHH:mm)\n$enrolenddate = new \\DateTime(\"2013-10-20T19:20:30+01:00\"); \/\/ \\DateTime | The enrolment end date (YYYY-MM-DDTHH:mm)\n\ntry {\n    $result = $apiInstance-&gt;courseToolAdd($courseid, $ltiversion, $name, $publishmode, $learningobjectid, $maxenrolled, $roleinstructor, $rolelearner, $provisioningmodeinstructor, $provisioningmodelearner, $gradesync, $gradesynccompletion, $membersync, $membersyncmode, $enrolperiod, $enrolstartdate, $enrolenddate);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;courseToolAdd: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p>Parameters<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters-9\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Naam<\/th><th>Type<\/th><th>Beschrijving<\/th><th>Opmerkingen<\/th><\/tr><\/thead><tbody><tr><td><strong>cursusid<\/strong><\/td><td><strong>int<\/strong><\/td><td>De ID van de cursus<\/td><td><\/td><\/tr><tr><td><strong>ltiversie<\/strong><\/td><td><strong>string<\/strong><\/td><td>De versie van LTI. Ofwel LTI Advantage of Legacy LTI <\/td><td><\/td><\/tr><tr><td><strong>naam<\/strong><\/td><td><strong>string<\/strong><\/td><td>De naam<\/td><td><\/td><\/tr><tr><td><strong>publicatiewijze<\/strong><\/td><td><strong>string<\/strong><\/td><td>De manier van publiceren (cursus of activiteit)<\/td><td><\/td><\/tr><tr><td><strong>leerdoelid<\/strong><\/td><td><strong>int<\/strong><\/td><td>De ID van het leerobject. Alleen vereist als de publicatiemodus is ingesteld op activiteit <\/td><td>[optional]<\/td><\/tr><tr><td><strong>maximaal ingeschreven<\/strong><\/td><td><strong>int<\/strong><\/td><td>De maximale inschrijving. Standaard onbeperkt (0). <\/td><td>[optional]<\/td><\/tr><tr><td><strong>rolinstructeur<\/strong><\/td><td><strong>int<\/strong><\/td><td>De rol van de instructeur. Standaard ingesteld op 3 <\/td><td>[optional]<\/td><\/tr><tr><td><strong>rolleerder<\/strong><\/td><td><strong>int<\/strong><\/td><td>De rol van de leerling. Standaard ingesteld op 5 <\/td><td>[optional]<\/td><\/tr><tr><td><strong>bevoorradingsmodusinstructeur<\/strong><\/td><td><strong>int<\/strong><\/td><td>De bevoorradingsmodus van de instructeur. Standaard ingesteld op 2 <\/td><td>[optional]<\/td><\/tr><tr><td><strong>toeleveringsmodus lerende<\/strong><\/td><td><strong>int<\/strong><\/td><td>De provisioningmodus van de leerling. Standaard ingesteld op 1 <\/td><td>[optional]<\/td><\/tr><tr><td><strong>gradesync<\/strong><\/td><td><strong>int<\/strong><\/td><td>Of cijfersynchronisatie is ingeschakeld. Cijfersynchronisatie (1=Ja, 0=Nee) <\/td><td>[optional]<\/td><\/tr><tr><td><strong>beoordeling<\/strong><\/td><td><strong>int<\/strong><\/td><td>Voltooiing van cursus of activiteit vereisen voordat het cijfer wordt gesynchroniseerd (1=Ja, 0=Nee)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>ledensync<\/strong><\/td><td><strong>int<\/strong><\/td><td>Of ledensynchronisatie is ingeschakeld. Gebruikerssynchronisatie (1=Ja, 0=Nee) <\/td><td>[optional]<\/td><\/tr><tr><td><strong>ledensyncmodus<\/strong><\/td><td><strong>int<\/strong><\/td><td>Modus gebruikerssynchronisatie (1=Nieuwe en ontbrekende gebruikers aanmelden, 2=Nieuwe gebruikers aanmelden, 3=Miste gebruikers aanmelden)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>inschrijvingsperiode<\/strong><\/td><td><strong>int<\/strong><\/td><td>De duur van de registratie (in seconden)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>inschrijfstartdatum<\/strong><\/td><td><strong>\\Datum<\/strong><\/td><td>De begindatum van de inschrijving (JJJJ-MM-DDTHH:mm)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>inschrijfdatum<\/strong><\/td><td><strong>\\Datum<\/strong><\/td><td>De einddatum van de inschrijving (JJJJ-MM-DDTHH:mm)<\/td><td>[optional]<\/td><\/tr><\/tbody><\/table><\/figure>\n\n<p>Type terugkeer<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type-9\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p><strong>\\LtiSaasApi Model CursusToolToevoeging200Respons<\/strong><\/p>\n\n<p>Autorisatie<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization-9\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p>token<\/p>\n\n<p>HTTP verzoek-headers<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers-9\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: Niet gedefinieerd<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">cursusToolVerwijderen()<\/h2>\n\n<pre class=\"wp-block-code\"><code>courseToolDelete($toolid): \\LtiSaasApi\\Model\\CourseUpdate200Response<\/code><\/pre>\n\n<p>Een specifieke cursus verwijderen<\/p>\n\n<p>Dit eindpunt verwijdert een specifieke tool in een cursus. Bij een succesvolle operatie wordt de tool verwijderd uit * de cursus. Als de tool niet gevonden wordt of niet verwijderd kan worden om welke reden dan ook, * worden de juiste foutantwoorden teruggestuurd.  <\/p>\n\n<p>Voorbeeld<\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$toolid = 56; \/\/ int | The identifier of the lti tool\n\ntry {\n    $result = $apiInstance-&gt;courseToolDelete($toolid);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;courseToolDelete: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p>Parameters<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters-10\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Naam<\/th><th>Type<\/th><th>Beschrijving<\/th><th>Opmerkingen<\/th><\/tr><\/thead><tbody><tr><td><strong>toolid<\/strong><\/td><td><strong>int<\/strong><\/td><td>De identifier van het lti gereedschap<\/td><td><\/td><\/tr><\/tbody><\/table><\/figure>\n\n<p>Type terugkeer<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type-10\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p><strong>\\LtiSaasApi \\Cursusupdate200Response<\/strong><\/p>\n\n<p>Autorisatie<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization-10\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p>token<\/p>\n\n<p>HTTP verzoek-headers<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers-10\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: Niet gedefinieerd<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">cursusToolList()<\/h2>\n\n<pre class=\"wp-block-code\"><code>courseToolList($courseid, $ltitype): \\LtiSaasApi\\Model\\CourseToolList200Response<\/code><\/pre>\n\n<p>Alle LTI-tools in een cursus weergeven<\/p>\n\n<p>Dit eindpunt geeft een lijst van alle LTI-tools die bij een cursus horen.<\/p>\n\n<p>Voorbeeld<\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$courseid = 56; \/\/ int | The ID of the course\n$ltitype = 'ltitype_example'; \/\/ string | The version of LTI. Either LTI Advantage or Legacy LTI\n\ntry {\n    $result = $apiInstance-&gt;courseToolList($courseid, $ltitype);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;courseToolList: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p>Parameters<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters-11\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Naam<\/th><th>Type<\/th><th>Beschrijving<\/th><th>Opmerkingen<\/th><\/tr><\/thead><tbody><tr><td><strong>cursusid<\/strong><\/td><td><strong>int<\/strong><\/td><td>De ID van de cursus<\/td><td><\/td><\/tr><tr><td><strong>ltitype<\/strong><\/td><td><strong>string<\/strong><\/td><td>De versie van LTI. Ofwel LTI Advantage of Legacy LTI <\/td><td>[optional]<\/td><\/tr><\/tbody><\/table><\/figure>\n\n<p>Type terugkeer<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type-11\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p><strong>\\LtiSaasApi \\CursusToolList200Response<\/strong><\/p>\n\n<p>Autorisatie<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization-11\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p>token<\/p>\n\n<p>HTTP verzoek-headers<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers-11\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: Niet gedefinieerd<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">cursusToolUpdate()<\/h2>\n\n<pre class=\"wp-block-code\"><code>courseToolUpdate($toolid, $ltiversion, $name, $publishmode, $learningobjectid, $maxenrolled, $roleinstructor, $rolelearner, $provisioningmodeinstructor, $provisioningmodelearner, $gradesync, $gradesynccompletion, $membersync, $membersyncmode, $enrolperiod, $enrolstartdate, $enrolenddate): \\LtiSaasApi\\Model\\CourseToolAdd200Response<\/code><\/pre>\n\n<p>Een specifieke cursus bijwerken<\/p>\n\n<p>Dit eindpunt update een specifieke tool in een cursus. Gedetailleerde informatie over het * gereedschap zoals de identifier, naam, ltiversie, etc. van het gereedschap moet gegeven worden. Een succesvolle bewerking zal de details van het * gereedschap bijwerken in de cursus.  <\/p>\n\n<p>Voorbeeld<\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$toolid = 56; \/\/ int | The ID of the lti tool\n$ltiversion = 'ltiversion_example'; \/\/ string | The version of LTI\n$name = 'name_example'; \/\/ string | The name\n$publishmode = 'publishmode_example'; \/\/ string | The mode of publishing (course or activity)\n$learningobjectid = 56; \/\/ int | The ID of the learning object. Only required if publishmode is set to activity\n$maxenrolled = 56; \/\/ int | The maximum enrollment\n$roleinstructor = 56; \/\/ int | The role of the instructor\n$rolelearner = 56; \/\/ int | The role of the learner\n$provisioningmodeinstructor = 56; \/\/ int | The provisioning mode of the instructor\n$provisioningmodelearner = 56; \/\/ int | The provisioning mode of the learner\n$gradesync = 56; \/\/ int | Whether grade sync is enabled. Grade synchronization (1=Yes, 0=No)\n$gradesynccompletion = 56; \/\/ int | Require course or activity completion prior to grade synchronisation (1=Yes, 0=No)\n$membersync = 56; \/\/ int | Whether member sync is enabled. User synchronisation (1=Yes, 0=No)\n$membersyncmode = 56; \/\/ int | User synchronisation mode (1=Enrol new and unenrol missing users, 2=Enrol new users, 3=Unenrol missing users)\n$enrolperiod = 56; \/\/ int | The duration of the enrolment (in seconds)\n$enrolstartdate = new \\DateTime(\"2013-10-20T19:20:30+01:00\"); \/\/ \\DateTime | The enrolment start date (YYYY-MM-DDTHH:mm)\n$enrolenddate = new \\DateTime(\"2013-10-20T19:20:30+01:00\"); \/\/ \\DateTime | The enrolment end date (YYYY-MM-DDTHH:mm)\n\ntry {\n    $result = $apiInstance-&gt;courseToolUpdate($toolid, $ltiversion, $name, $publishmode, $learningobjectid, $maxenrolled, $roleinstructor, $rolelearner, $provisioningmodeinstructor, $provisioningmodelearner, $gradesync, $gradesynccompletion, $membersync, $membersyncmode, $enrolperiod, $enrolstartdate, $enrolenddate);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;courseToolUpdate: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p>Parameters<\/p>\n\n<p><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters-12\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Naam<\/th><th>Type<\/th><th>Beschrijving<\/th><th>Opmerkingen<\/th><\/tr><\/thead><tbody><tr><td><strong>toolid<\/strong><\/td><td><strong>int<\/strong><\/td><td>De ID van het lti gereedschap<\/td><td><\/td><\/tr><tr><td><strong>ltiversie<\/strong><\/td><td><strong>string<\/strong><\/td><td>De versie van LTI<\/td><td>[optional]<\/td><\/tr><tr><td><strong>naam<\/strong><\/td><td><strong>string<\/strong><\/td><td>De naam<\/td><td>[optional]<\/td><\/tr><tr><td><strong>publicatiewijze<\/strong><\/td><td><strong>string<\/strong><\/td><td>De manier van publiceren (cursus of activiteit)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>leerdoelid<\/strong><\/td><td><strong>int<\/strong><\/td><td>De ID van het leerobject. Alleen vereist als de publicatiemodus is ingesteld op activiteit <\/td><td>[optional]<\/td><\/tr><tr><td><strong>maximaal ingeschreven<\/strong><\/td><td><strong>int<\/strong><\/td><td>De maximale inschrijving<\/td><td>[optional]<\/td><\/tr><tr><td><strong>rolinstructeur<\/strong><\/td><td><strong>int<\/strong><\/td><td>De rol van de instructeur<\/td><td>[optional]<\/td><\/tr><tr><td><strong>rolleerder<\/strong><\/td><td><strong>int<\/strong><\/td><td>De rol van de leerling<\/td><td>[optional]<\/td><\/tr><tr><td><strong>bevoorradingsmodusinstructeur<\/strong><\/td><td><strong>int<\/strong><\/td><td>De bevoorradingsmodus van de instructeur<\/td><td>[optional]<\/td><\/tr><tr><td><strong>toeleveringsmodus lerende<\/strong><\/td><td><strong>int<\/strong><\/td><td>De bevoorradingsmodus van de leerling<\/td><td>[optional]<\/td><\/tr><tr><td><strong>gradesync<\/strong><\/td><td><strong>int<\/strong><\/td><td>Of cijfersynchronisatie is ingeschakeld. Cijfersynchronisatie (1=Ja, 0=Nee) <\/td><td>[optional]<\/td><\/tr><tr><td><strong>beoordeling<\/strong><\/td><td><strong>int<\/strong><\/td><td>Voltooiing van cursus of activiteit vereisen voordat het cijfer wordt gesynchroniseerd (1=Ja, 0=Nee)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>ledensync<\/strong><\/td><td><strong>int<\/strong><\/td><td>Of ledensynchronisatie is ingeschakeld. Gebruikerssynchronisatie (1=Ja, 0=Nee) <\/td><td>[optional]<\/td><\/tr><tr><td><strong>ledensyncmodus<\/strong><\/td><td><strong>int<\/strong><\/td><td>Modus gebruikerssynchronisatie (1=Nieuwe en ontbrekende gebruikers aanmelden, 2=Nieuwe gebruikers aanmelden, 3=Miste gebruikers aanmelden)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>inschrijvingsperiode<\/strong><\/td><td><strong>int<\/strong><\/td><td>De duur van de registratie (in seconden)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>inschrijfstartdatum<\/strong><\/td><td><strong>\\Datum<\/strong><\/td><td>De begindatum van de inschrijving (JJJJ-MM-DDTHH:mm)<\/td><td>[optional]<\/td><\/tr><tr><td><strong>inschrijfdatum<\/strong><\/td><td><strong>\\Datum<\/strong><\/td><td>De einddatum van de inschrijving (JJJJ-MM-DDTHH:mm)<\/td><td>[optional]<\/td><\/tr><\/tbody><\/table><\/figure>\n\n<p>Type terugkeer<\/p>\n\n<p><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type-12\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<p><strong>\\LtiSaasApi Model CursusToolToevoeging200Respons<\/strong><\/p>\n\n<p>Autorisatie<\/p>\n\n<p><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization-12\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<p>token<\/p>\n\n<p>HTTP verzoek-headers<\/p>\n\n<p><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers-12\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: Niet gedefinieerd<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">cursusupdate()<\/h2>\n\n<pre class=\"wp-block-code\"><code>courseUpdate($coursename, $courseid, $coursenameshort): \\LtiSaasApi\\Model\\CourseUpdate200Response<\/code><\/pre>\n\n<p>Een bestaande cursus bijwerken<\/p>\n\n<p>Met dit eindpunt kun je een bestaande cursus bijwerken. Het cursus id moet worden doorgegeven als een query * parameter. <\/p>\n\n<p>Voorbeeld<\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$coursename = 'coursename_example'; \/\/ string | The name of the course to be created\n$courseid = 56; \/\/ int | The unique identifier of the course to be deleted\n$coursenameshort = 'coursenameshort_example'; \/\/ string | The name of the course to be created\n\ntry {\n    $result = $apiInstance-&gt;courseUpdate($coursename, $courseid, $coursenameshort);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;courseUpdate: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p>Parameters<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters-13\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Naam<\/th><th>Type<\/th><th>Beschrijving<\/th><th>Opmerkingen<\/th><\/tr><\/thead><tbody><tr><td><strong>cursusnaam<\/strong><\/td><td><strong>string<\/strong><\/td><td>De naam van de cursus die moet worden aangemaakt<\/td><td><\/td><\/tr><tr><td><strong>cursusid<\/strong><\/td><td><strong>int<\/strong><\/td><td>De unieke identifier van de te verwijderen cursus<\/td><td><\/td><\/tr><tr><td><strong>cursusnaam<\/strong><\/td><td><strong>string<\/strong><\/td><td>De naam van de cursus die moet worden aangemaakt<\/td><td>[optional]<\/td><\/tr><\/tbody><\/table><\/figure>\n\n<p>Type terugkeer<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type-13\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p><strong>\\LtiSaasApi \\Cursusupdate200Response<\/strong><\/p>\n\n<p>Autorisatie<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization-13\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p>token<\/p>\n\n<p>HTTP verzoek-headers<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers-13\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: Niet gedefinieerd<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">tokenAdd()<\/h2>\n\n<pre class=\"wp-block-code\"><code>tokenAdd($name): \\LtiSaasApi\\Model\\TokenAdd200Response<\/code><\/pre>\n\n<p>Een nieuw API token toevoegen<\/p>\n\n<p>Dit eindpunt maakt een nieuw API token aan. * Er is een naam nodig om een nieuw API token aan te maken. * Bij een succesvolle operatie zal een nieuw API token worden toegevoegd aan het systeem en de details zullen worden geretourneerd. * Als het API token om bepaalde redenen niet kan worden aangemaakt, worden de juiste foutreacties geretourneerd.   <\/p>\n\n<p>Voorbeeld<\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$name = 'name_example'; \/\/ string | The name of the token for your own administration purposes\n\ntry {\n    $result = $apiInstance-&gt;tokenAdd($name);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;tokenAdd: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p>Parameters<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters-14\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Naam<\/th><th>Type<\/th><th>Beschrijving<\/th><th>Opmerkingen<\/th><\/tr><\/thead><tbody><tr><td><strong>naam<\/strong><\/td><td><strong>string<\/strong><\/td><td>De naam van het token voor uw eigen administratiedoeleinden<\/td><td><\/td><\/tr><\/tbody><\/table><\/figure>\n\n<p>Type terugkeer<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type-14\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p><strong>\\LtiSaasApi\\Model \\TokenAdd200Response<\/strong><\/p>\n\n<p>Autorisatie<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization-14\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p>token<\/p>\n\n<p>HTTP verzoek-headers<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers-14\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: Niet gedefinieerd<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">tokenVerwijderen()<\/h2>\n\n<pre class=\"wp-block-code\"><code>tokenDelete($token): \\LtiSaasApi\\Model\\CourseUpdate200Response<\/code><\/pre>\n\n<p>Een API token verwijderen<\/p>\n\n<p>Dit eindpunt verwijdert een API token gebaseerd op een gegeven token ID. * Het vereist het token van de API om deze bewerking uit te voeren. * Bij succesvolle verwijdering wordt het API token verwijderd uit het systeem. * In het geval dat het token ID niet wordt gevonden of niet kan worden verwijderd om bepaalde redenen, * zullen passende foutreacties worden geretourneerd.   <\/p>\n\n<p>Voorbeeld<\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$token = 'token_example'; \/\/ string | The tokenkey you want to delete\n\ntry {\n    $result = $apiInstance-&gt;tokenDelete($token);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;tokenDelete: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p>Parameters<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters-15\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Naam<\/th><th>Type<\/th><th>Beschrijving<\/th><th>Opmerkingen<\/th><\/tr><\/thead><tbody><tr><td><strong>token<\/strong><\/td><td><strong>string<\/strong><\/td><td>De tokenkey die u wilt verwijderen<\/td><td><\/td><\/tr><\/tbody><\/table><\/figure>\n\n<p>Type terugkeer<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type-15\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p><strong>\\LtiSaasApi \\Cursusupdate200Response<\/strong><\/p>\n\n<p>Autorisatie<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization-15\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p>token<\/p>\n\n<p>HTTP verzoek-headers<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers-15\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: Niet gedefinieerd<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">tokenLijst()<\/h2>\n\n<pre class=\"wp-block-code\"><code>tokenList(): \\LtiSaasApi\\Model\\TokenList200Response<\/code><\/pre>\n\n<p>Lijst van API tokens opvragen<\/p>\n\n<p>Dit eindpunt haalt een lijst op van alle API tokens. Het resultaat is een lijst van API tokens met hun respectievelijke * informatie, zoals token, endpoint, naam, enz. Dit kan gebruikt worden voor het beheren of auditen van het gebruik van API tokens in het * systeem.  <\/p>\n\n<p>Voorbeeld<\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n\ntry {\n    $result = $apiInstance-&gt;tokenList();\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;tokenList: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p>Parameters<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters-16\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p>Dit eindpunt heeft geen parameter nodig.<\/p>\n\n<p>Type terugkeer<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type-16\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p><strong>\\LtiSaasApi\\ModelokenList200Response<\/strong><\/p>\n\n<p>Autorisatie<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization-16\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p>token<\/p>\n\n<p>HTTP verzoek-headers<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers-16\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: Niet gedefinieerd<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">gebruiker verwijderen()<\/h2>\n\n<pre class=\"wp-block-code\"><code>userDelete($id): \\LtiSaasApi\\Model\\CourseUpdate200Response<\/code><\/pre>\n\n<p>Een gebruiker verwijderen op ID<\/p>\n\n<p>Dit eindpunt verwijdert een gebruiker op basis van een gegeven ID. * Bij succesvolle verwijdering wordt de gebruiker verwijderd uit het systeem. * In het geval dat de gebruikers-ID niet gevonden wordt of niet verwijderd kan worden vanwege bepaalde redenen, zullen * gepaste foutreacties teruggestuurd worden.  <\/p>\n\n<p>Voorbeeld<\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$id = 56; \/\/ int | The identifier of the user\n\ntry {\n    $result = $apiInstance-&gt;userDelete($id);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;userDelete: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p>Parameters<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters-17\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Naam<\/th><th>Type<\/th><th>Beschrijving<\/th><th>Opmerkingen<\/th><\/tr><\/thead><tbody><tr><td><strong>id<\/strong><\/td><td><strong>int<\/strong><\/td><td>De identificatie van de gebruiker<\/td><td><\/td><\/tr><\/tbody><\/table><\/figure>\n\n<p>Type terugkeer<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type-17\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p><strong>\\LtiSaasApi \\Cursusupdate200Response<\/strong><\/p>\n\n<p>Autorisatie<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization-17\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p>token<\/p>\n\n<p>HTTP verzoek-headers<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers-17\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: Niet gedefinieerd<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">userDeleteBulk()<\/h2>\n\n<pre class=\"wp-block-code\"><code>userDeleteBulk($ids): \\LtiSaasApi\\Model\\CourseUpdate200Response<\/code><\/pre>\n\n<p>Meerdere gebruikers verwijderen op ID<\/p>\n\n<p>Dit eindpunt verwijdert meerdere gebruikers gebaseerd op gegeven ID&#8217;s. Bij succesvolle verwijdering worden de gebruikers * verwijderd uit het systeem. In het geval dat een van de gebruikers ID&#8217;s niet wordt gevonden of niet kan worden verwijderd om bepaalde redenen, * zal een passende foutmelding worden teruggestuurd.  <\/p>\n\n<p>Voorbeeld<\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$ids = array(56); \/\/ int&#91;] | Comma-separated list of identifiers of the users to delete\n\ntry {\n    $result = $apiInstance-&gt;userDeleteBulk($ids);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;userDeleteBulk: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p>Parameters<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters-18\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Naam<\/th><th>Type<\/th><th>Beschrijving<\/th><th>Opmerkingen<\/th><\/tr><\/thead><tbody><tr><td><strong>ids<\/strong><\/td><td><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Model\/int.md\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>int[]<\/strong><\/a><\/td><td>Door komma&#8217;s gescheiden lijst met identifiers van de te verwijderen gebruikers<\/td><td><\/td><\/tr><\/tbody><\/table><\/figure>\n\n<p>Type terugkeer<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type-18\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p><strong>\\LtiSaasApi \\Cursusupdate200Response<\/strong><\/p>\n\n<p>Autorisatie<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization-18\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<p>token<\/p>\n\n<p>HTTP verzoek-headers<\/p>\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers-18\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/h2>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: Niet gedefinieerd<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<h2 class=\"wp-block-heading\">gebruikerslijst()<\/h2>\n\n<pre class=\"wp-block-code\"><code>userList($toolid): \\LtiSaasApi\\Model\\UserList200Response<\/code><\/pre>\n\n<p>Lijst van gebruikers in een tool opvragen<\/p>\n\n<p>Dit eindpunt haalt een lijst op van gebruikers die geregistreerd zijn in een specifieke tool. Het resultaat is een lijst van * gebruikers met hun respectieve informatie, die kan worden gebruikt voor verdere bewerkingen of analyses. <\/p>\n\n<p>Voorbeeld<\/p>\n\n<pre class=\"wp-block-code\"><code><strong>&lt;?php<\/strong>\nrequire_once(__DIR__ . '\/vendor\/autoload.php');\n\n\n\/\/ Configure API key authorization: token\n$config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKey('Access-Token', 'YOUR_API_KEY');\n\/\/ Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n\/\/ $config = LtiSaasApi\\Configuration::getDefaultConfiguration()-&gt;setApiKeyPrefix('Access-Token', 'Bearer');\n\n\n$apiInstance = new LtiSaasApi\\Api\\DefaultApi(\n    \/\/ If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    \/\/ This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$toolid = 56; \/\/ int | The identifier of the tool (optional)\n\ntry {\n    $result = $apiInstance-&gt;userList($toolid);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling DefaultApi-&gt;userList: ', $e-&gt;getMessage(), PHP_EOL;\n}<\/code><\/pre>\n\n<p>Parameters<\/p>\n\n<p><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#parameters-19\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Naam<\/th><th>Type<\/th><th>Beschrijving<\/th><th>Opmerkingen<\/th><\/tr><\/thead><tbody><tr><td><strong>toolid<\/strong><\/td><td><strong>int<\/strong><\/td><td>De identificatie van het gereedschap (optioneel)<\/td><td>[optional]<\/td><\/tr><\/tbody><\/table><\/figure>\n\n<p>Type terugkeer<\/p>\n\n<p><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#return-type-19\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<p><strong>\\LtiSaasApi\\Modelgebruikerlijst200antwoord<\/strong><\/p>\n\n<p>Autorisatie<\/p>\n\n<p><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#authorization-19\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<p>token<\/p>\n\n<p>HTTP verzoek-headers<\/p>\n\n<p><a href=\"https:\/\/github.com\/jeontwikkeling-nl\/ltisaas_client_api_php\/blob\/main\/docs\/Api\/DefaultApi.md#http-request-headers-19\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n<ul class=\"wp-block-list\">\n<li><strong>Inhoudstype<\/strong>: Niet gedefinieerd<\/li>\n\n\n\n<li><strong>Accepteren<\/strong>: toepassing\/json<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Een uitgebreide beschrijving van alle eindpunten. Methode HTTP-verzoek Beschrijving cursusAdd() GET \/cursus\/toevoegen Een nieuwe cursus maken cursusverwijderen() GET \/cursus\/verwijderen Een bestaande cursus verwijderen aan de hand van zijn ID cursusleerobjectverwijderen() GET \/cursus\/leerobject\/verwijderen Een specifiek leerobject verwijderen CourseLearningObjectScormAdd() POST \/cursus\/leerobject\/scrom\/toevoegen Een SCORM-pakket aan een cursus toevoegen cursusLeerObjectLijst() GET \/cursus\/leerobject\/lijst Leerobjecten voor&#8230;<\/p>\n","protected":false},"author":3,"comment_status":"open","ping_status":"closed","template":"","format":"standard","meta":{"footnotes":""},"ht-kb-category":[157],"ht-kb-tag":[71,154,158],"class_list":["post-488","ht_kb","type-ht_kb","status-publish","format-standard","hentry","ht_kb_category-linqur-api-nl","ht_kb_tag-api-nl","ht_kb_tag-documentatie","ht_kb_tag-eindpunt"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>API eindpunt documentatie | Linqur documentatie<\/title>\n<meta name=\"description\" content=\"Een uitgebreide beschrijving van alle eindpunten.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linqur.com\/docs\/nl\/documentatie\/api-eindpunt-documentatie\/\" \/>\n<meta property=\"og:locale\" content=\"nl_NL\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"API eindpunt documentatie | Linqur documentatie\" \/>\n<meta property=\"og:description\" content=\"Een uitgebreide beschrijving van alle eindpunten.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linqur.com\/docs\/nl\/documentatie\/api-eindpunt-documentatie\/\" \/>\n<meta property=\"og:site_name\" content=\"Linqur documentatie\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-11T11:24:13+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Geschatte leestijd\" \/>\n\t<meta name=\"twitter:data1\" content=\"27 minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linqur.com\/docs\/nl\/documentatie\/api-eindpunt-documentatie\/\",\"url\":\"https:\/\/linqur.com\/docs\/nl\/documentatie\/api-eindpunt-documentatie\/\",\"name\":\"API eindpunt documentatie | Linqur documentatie\",\"isPartOf\":{\"@id\":\"https:\/\/linqur.com\/docs\/nl\/#website\"},\"datePublished\":\"2024-12-11T11:24:09+00:00\",\"dateModified\":\"2024-12-11T11:24:13+00:00\",\"description\":\"Een uitgebreide beschrijving van alle eindpunten.\",\"breadcrumb\":{\"@id\":\"https:\/\/linqur.com\/docs\/nl\/documentatie\/api-eindpunt-documentatie\/#breadcrumb\"},\"inLanguage\":\"nl-NL\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linqur.com\/docs\/nl\/documentatie\/api-eindpunt-documentatie\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linqur.com\/docs\/nl\/documentatie\/api-eindpunt-documentatie\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linqur.com\/docs\/nl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"API eindpunt documentatie\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/linqur.com\/docs\/nl\/#website\",\"url\":\"https:\/\/linqur.com\/docs\/nl\/\",\"name\":\"Linqur documentation and help articles\",\"description\":\"How-to articles and more\",\"publisher\":{\"@id\":\"https:\/\/linqur.com\/docs\/nl\/#organization\"},\"alternateName\":\"Linqur docs\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/linqur.com\/docs\/nl\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"nl-NL\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/linqur.com\/docs\/nl\/#organization\",\"name\":\"Linqur LTI Solutions\",\"alternateName\":\"Linqur\",\"url\":\"https:\/\/linqur.com\/docs\/nl\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"nl-NL\",\"@id\":\"https:\/\/linqur.com\/docs\/nl\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/linqur.com\/docs\/wp-content\/uploads\/2024\/12\/Group-442@2x.png\",\"contentUrl\":\"https:\/\/linqur.com\/docs\/wp-content\/uploads\/2024\/12\/Group-442@2x.png\",\"width\":600,\"height\":600,\"caption\":\"Linqur LTI Solutions\"},\"image\":{\"@id\":\"https:\/\/linqur.com\/docs\/nl\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/linqur-lti-solutions\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"API eindpunt documentatie | Linqur documentatie","description":"Een uitgebreide beschrijving van alle eindpunten.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linqur.com\/docs\/nl\/documentatie\/api-eindpunt-documentatie\/","og_locale":"nl_NL","og_type":"article","og_title":"API eindpunt documentatie | Linqur documentatie","og_description":"Een uitgebreide beschrijving van alle eindpunten.","og_url":"https:\/\/linqur.com\/docs\/nl\/documentatie\/api-eindpunt-documentatie\/","og_site_name":"Linqur documentatie","article_modified_time":"2024-12-11T11:24:13+00:00","twitter_card":"summary_large_image","twitter_misc":{"Geschatte leestijd":"27 minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/linqur.com\/docs\/nl\/documentatie\/api-eindpunt-documentatie\/","url":"https:\/\/linqur.com\/docs\/nl\/documentatie\/api-eindpunt-documentatie\/","name":"API eindpunt documentatie | Linqur documentatie","isPartOf":{"@id":"https:\/\/linqur.com\/docs\/nl\/#website"},"datePublished":"2024-12-11T11:24:09+00:00","dateModified":"2024-12-11T11:24:13+00:00","description":"Een uitgebreide beschrijving van alle eindpunten.","breadcrumb":{"@id":"https:\/\/linqur.com\/docs\/nl\/documentatie\/api-eindpunt-documentatie\/#breadcrumb"},"inLanguage":"nl-NL","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linqur.com\/docs\/nl\/documentatie\/api-eindpunt-documentatie\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/linqur.com\/docs\/nl\/documentatie\/api-eindpunt-documentatie\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linqur.com\/docs\/nl\/"},{"@type":"ListItem","position":2,"name":"API eindpunt documentatie"}]},{"@type":"WebSite","@id":"https:\/\/linqur.com\/docs\/nl\/#website","url":"https:\/\/linqur.com\/docs\/nl\/","name":"Linqur documentation and help articles","description":"How-to articles and more","publisher":{"@id":"https:\/\/linqur.com\/docs\/nl\/#organization"},"alternateName":"Linqur docs","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linqur.com\/docs\/nl\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"nl-NL"},{"@type":"Organization","@id":"https:\/\/linqur.com\/docs\/nl\/#organization","name":"Linqur LTI Solutions","alternateName":"Linqur","url":"https:\/\/linqur.com\/docs\/nl\/","logo":{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/linqur.com\/docs\/nl\/#\/schema\/logo\/image\/","url":"https:\/\/linqur.com\/docs\/wp-content\/uploads\/2024\/12\/Group-442@2x.png","contentUrl":"https:\/\/linqur.com\/docs\/wp-content\/uploads\/2024\/12\/Group-442@2x.png","width":600,"height":600,"caption":"Linqur LTI Solutions"},"image":{"@id":"https:\/\/linqur.com\/docs\/nl\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/linqur-lti-solutions\/"]}]}},"_links":{"self":[{"href":"https:\/\/linqur.com\/docs\/nl\/wp-json\/wp\/v2\/ht-kb\/488","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linqur.com\/docs\/nl\/wp-json\/wp\/v2\/ht-kb"}],"about":[{"href":"https:\/\/linqur.com\/docs\/nl\/wp-json\/wp\/v2\/types\/ht_kb"}],"author":[{"embeddable":true,"href":"https:\/\/linqur.com\/docs\/nl\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/linqur.com\/docs\/nl\/wp-json\/wp\/v2\/comments?post=488"}],"version-history":[{"count":1,"href":"https:\/\/linqur.com\/docs\/nl\/wp-json\/wp\/v2\/ht-kb\/488\/revisions"}],"predecessor-version":[{"id":489,"href":"https:\/\/linqur.com\/docs\/nl\/wp-json\/wp\/v2\/ht-kb\/488\/revisions\/489"}],"wp:attachment":[{"href":"https:\/\/linqur.com\/docs\/nl\/wp-json\/wp\/v2\/media?parent=488"}],"wp:term":[{"taxonomy":"ht_kb_category","embeddable":true,"href":"https:\/\/linqur.com\/docs\/nl\/wp-json\/wp\/v2\/ht-kb-category?post=488"},{"taxonomy":"ht_kb_tag","embeddable":true,"href":"https:\/\/linqur.com\/docs\/nl\/wp-json\/wp\/v2\/ht-kb-tag?post=488"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}