ListE-learning
GET https://shared-tp-api-test.30a.dev/tp-api/e-learning
Find e-learning.
Query Parameters
- cursor string
Cursor to return items after a specific position in the list.
- limit integer
Possible values:
>= 1
and<= 100
Default value:
10
Maximum number of items to return.
- skip integer
Query to retrieve the items starting from that position in the dataset.
Header Parameters
- training-provider-id string required
Responses
- 200
- 400
Default Response
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- id string required
E-learning id
- certificateExpiry number
E-learning license expiry
- courseDuration number
E-learning duration
deliveryMethod object required
- description string required
E-learning description
- externalRegistrationUrl string
E-learning external registration url
- licenseDuration number
E-learning license duration
- name string required
E-Learning name
- price number required
E-learning price
- publishedToMarketplace boolean required
Whether or not the course appears in a marketplace
- ]
[
{
"id": "string",
"certificateExpiry": 0,
"courseDuration": 0,
"deliveryMethod": "OFFLINE",
"description": "string",
"externalRegistrationUrl": "string",
"licenseDuration": 0,
"name": "string",
"price": 0,
"publishedToMarketplace": true
}
]
Default Response
- application/json
- Schema
- Example (from schema)
Schema
- anyOf
- MOD1
- MOD2
statusCode number requiredcode stringError code
error string requiredError key
message string requiredError message
error object required
{
"statusCode": 0,
"code": "string",
"error": "string",
"message": "string"
}
Authorization
name: Authorizationtype: apiKeyin: headerdescription: An Authorization Header with an auth-scheme of BLN including auth-params type, version, entity, key, token and secret. Example: `bln type=api, version=1, entity=user, key=<api-key>, token=<api-token>, secret=<api-secret>`
Request
Request
curl / cURL
curl -L -X GET 'https://shared-tp-api-test.30a.dev/tp-api/e-learning' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
nodejs / axios
curl -L -X GET 'https://shared-tp-api-test.30a.dev/tp-api/e-learning' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
python / requests
curl -L -X GET 'https://shared-tp-api-test.30a.dev/tp-api/e-learning' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
java / okhttp
curl -L -X GET 'https://shared-tp-api-test.30a.dev/tp-api/e-learning' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
csharp / restsharp
curl -L -X GET 'https://shared-tp-api-test.30a.dev/tp-api/e-learning' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'