The Learnspot API (1.0.0)
The Learnspot API documentation.
https://docs.thelearnspot.nl/_mock/openapi/
https://docs.thelearnspot.nl/{serverUrl}/
- Mock server
https://docs.thelearnspot.nl/_mock/openapi/chapters
https://docs.thelearnspot.nl/https://app.thelearnspot.nl/api/v1/chapters
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.thelearnspot.nl/_mock/openapi/chapters \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/vnd.api+json' \
-d '{
"data": {
"type": "chapters",
"attributes": {
"title": "Module 1 Oriëntatie op het beroep",
"deeplink": "https://edition.thiememeulenhoff.nl/secure/d/stream/traject_3_4_mz_bop/link/thip_id/thip.f6f15d45-aec1-4450-b5ec-cff9c74a2983",
"external_id": "thip.f6f15d45-aec1-4450-b5ec-cff9c74a2983"
},
"relationships": {
"subject": {}
}
}
}'{ "jsonapi": { "version": "1.0" }, "data": { "type": "chapters", "id": "849b39ee-fe8e-46fb-bc9d-d98930ee6afb", "attributes": { … }, "relationships": { … } } }
- Mock server
https://docs.thelearnspot.nl/_mock/openapi/chapters/{chapter}
https://docs.thelearnspot.nl/https://app.thelearnspot.nl/api/v1/chapters/{chapter}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.thelearnspot.nl/_mock/openapi/chapters/{chapter}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "jsonapi": { "version": "1.0" }, "data": { "type": "chapters", "id": "849b39ee-fe8e-46fb-bc9d-d98930ee6afb", "attributes": { … }, "relationships": { … } } }
- Mock server
https://docs.thelearnspot.nl/_mock/openapi/chapters/{chapter}
https://docs.thelearnspot.nl/https://app.thelearnspot.nl/api/v1/chapters/{chapter}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://docs.thelearnspot.nl/_mock/openapi/chapters/{chapter}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/vnd.api+json' \
-d '{
"data": {
"type": "chapters",
"id": "849b39ee-fe8e-46fb-bc9d-d98930ee6afb",
"attributes": {
"title": "Module 1 Oriëntatie op het beroep",
"deeplink": "https://edition.thiememeulenhoff.nl/secure/d/stream/traject_3_4_mz_bop/link/thip_id/thip.f6f15d45-aec1-4450-b5ec-cff9c74a2983",
"external_id": "thip.f6f15d45-aec1-4450-b5ec-cff9c74a2983"
},
"relationships": {
"subject": {}
}
}
}'{ "jsonapi": { "version": "1.0" }, "data": { "type": "chapters", "id": "849b39ee-fe8e-46fb-bc9d-d98930ee6afb", "attributes": { … }, "relationships": { … } } }
- Mock server
https://docs.thelearnspot.nl/_mock/openapi/chapters/{chapter}/subject
https://docs.thelearnspot.nl/https://app.thelearnspot.nl/api/v1/chapters/{chapter}/subject
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.thelearnspot.nl/_mock/openapi/chapters/{chapter}/subject' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "jsonapi": { "version": "1.0" }, "data": { "type": "subjects", "id": "2f94483e-dd7b-4fb7-8f97-f7c91433eeba", "attributes": { … }, "relationships": { … } } }
- Mock server
https://docs.thelearnspot.nl/_mock/openapi/chapters/{chapter}/relationships/subject
https://docs.thelearnspot.nl/https://app.thelearnspot.nl/api/v1/chapters/{chapter}/relationships/subject
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.thelearnspot.nl/_mock/openapi/chapters/{chapter}/relationships/subject' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "jsonapi": { "version": "1.0" }, "data": { "type": "subjects", "id": "2f94483e-dd7b-4fb7-8f97-f7c91433eeba" } }