AVAILABLE WITH BUSINESS SUBSCRIPTION

Method: listLearningTracksCourses

This method helps you to get a list of courses that are included in the learning track.

Account OwnerAccount AdministratorsDepartment Administrators, users with a custom role, or Course Author with access to the project containing this learning track.

Request Parameters

ParameterTypeDescription
token (required)stringAccess 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:

ParameterTypeDescription
learningTrackCoursearrayAn array containing information regarding the course.

learningTrackCourse

ParameterTypeDescription
learningTrackIdstringThe learning track ID.
courseIdstringThe ID of the course that is included in this learning track.

Sample Request

<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>
XML

Sample Response

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://ispringlearn.com/go/services/api/soap">
   <SOAP-ENV:Body>
      <ns1:ListLearningTracksCoursesResult>
         <ns1:learningTrackCourse>
            <ns1:learningTrackId>f51b20a6-828a-11ec-85ab-0242ac120038</ns1:learningTrackId>
            <ns1:courseId>798851ec-1625-11ec-8dfd-0242ac160034</ns1:courseId>
         </ns1:learningTrackCourse>
         <ns1:learningTrackCourse>
            <ns1:learningTrackId>f51b20a6-828a-11ec-85ab-0242ac120038</ns1:learningTrackId>
            <ns1:courseId>a19861ee-0a37-11ec-bf16-0242ac140033</ns1:courseId>
         </ns1:learningTrackCourse>
         <ns1:learningTrackCourse>
            <ns1:learningTrackId>d82726b6-745c-11ec-b2cf-0242ac130039</ns1:learningTrackId>
            <ns1:courseId>a1c8afde-0a37-11ec-b484-0242ac140033</ns1:courseId>
         </ns1:learningTrackCourse>
         <ns1:learningTrackCourse>
            <ns1:learningTrackId>d82726b6-745c-11ec-b2cf-0242ac130039</ns1:learningTrackId>
            <ns1:courseId>a19861ee-0a37-11ec-bf16-0242ac140033</ns1:courseId>
         </ns1:learningTrackCourse>
      </ns1:ListLearningTracksCoursesResult>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>
XML