Versions Compared

Key

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

...

Account Owner, Account Administrators, Department Administratorsor custom roles with the 'Can edit' access to the content item. 

Department Administrators and users with a custom role can only retrieve info regarding users belonging to the departments they manage and their sub-departments.

Parameters

Параметр

Тип

Описание

token (required)stringAccess token. You can obtain a token by making a request
contentItemId (required)stringID of a course

Return Values

An array with the following properties:

ParameterTypeDescription
userIdstringID of a user
statusstringCourse status
progressfloatCompletion progress

Possible Errors

ErrorDescription
Unknown content itemThe course with the specified ID hasn't been found
Permission deniedThe user doesn't have enough permissions to fulfill the request or can't edit the content item

Sample Call

Code Block
languagexml
<?xml version="1.0" encoding="utf-8"?>
  <SOAP-ENV:Envelope xmlns:SOAP-ENV="https://schemas.xmlsoap.org/soap/envelope/"
                     xmlns="https://ispringlearn.com/go/services/api/soap">
    <SOAP-ENV:Body>
      <GetContentItemFinalStatusesRequest>
        <credentials>
           <token>p-1sJDjmULL5DdpXPJTcbm4jVIaWVHvNmrjAxATRbNE</token> 
        </credentials>
        <contentItemId>123</contentItemId>
      </GetContentItemFinalStatusesRequest>
    </SOAP-ENV:Body>
  </SOAP-ENV:Envelope>

...