...
Account Owner, Account Administrators, Department Administrators, users with a custom role, or Course Author with with the 'Can edit' access to the content item.
Request Parameters
| Parameter | Type | Description |
|---|---|---|
| token (required) | string | Access token. You can obtain a token by making a request. |
learningTrackIds (обязательный) | string | The learning track ID. |
Return Value
After the request has been successfully processed, the system returns an object with the following properties:
| Parameter | Type | Description |
|---|---|---|
| learningTrackCourse | array | An array containing information regarding the course. |
learningTrackCourse
| Parameter | Type | Description |
|---|---|---|
| learningTrackId | string | The learning track ID. |
| courseId | string | The ID of the course that is included in this learning track. |
Sample Request
| Code Block | ||
|---|---|---|
| ||
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soap="http://ispringlearn.com/go/services/api/soap">
<soapenv:Header/>
<soapenv:Body>
<soap:ListLearningTracksCoursesRequest>
<soap:credentials>
<soap:token>p-1sJDjmULL5DdpXPJTcbm4jVIaWVHvNmrjAxATRbNE</soap:token>
</soap:credentials>
<soap:learningTrackIds>
<soap:id>d82726b6-745c-11ec-b2cf-0242ac130039</soap:id>
<soap:id>f51b20a6-828a-11ec-85ab-0242ac120038</soap:id>
</soap:learningTrackIds>
</soap:ListLearningTracksCoursesRequest>
</soapenv:Body>
</soapenv:Envelope> |
...