Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Account OwnerAccount AdministratorsDepartment Administrators, users with a custom role, or Course Author with with the 'Can edit' access to the content item. 

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

Code Block
languagexml
<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>

...