|
Account Owner, Account Administrators, Department Administrators, as well as Course Authors and users with a custom role with the 'Can edit' access to the content item.
For users with a custom role, allow "View and enroll users into training programs." |
Parameter | Type | Description |
|---|---|---|
| token (required) | string | Access token. You can obtain a token by making a request. |
After the request has been successfully processed, the system returns an object with the following properties:
Parameter | Type | Description |
|---|---|---|
| contentItem | array | An array containing a list of all account courses and information regarding them |
| contentItemId | string | ID of the learning track, course, or content |
| title | string | Title of the learning track, course, or content |
| subtitle | string | Subtitle of the learning track, course, or content |
| description | string | Description of the learning track, course, or content |
| userId | string | ID of the user to whom the learning track, course, or content is assigned |
| addedDate | dateTime | Date of addition of the learning track, course, or content |
| viewUrl | string | Link to view the learning track, course, or content |
| type | string | Type of content |
<?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>
<GetContentRequest>
<credentials>
<token>p-1sJDjmULL5DdpXPJTcbm4jVIaWVHvNmrjAxATRbNE</token>
</credentials>
</GetContentRequest>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope> |
<SOAP-ENV:Envelope xmlns:SOAP-ENV="https://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="https://ispringlearn.com/go/services/api/soap">
<SOAP-ENV:Body>
<GetContentResult>
<contentItem>
<contentItemId>6a51a7b0-b4ec-11e9-8dc4-0a580af40990</contentItemId>
<title>Sample Simulation - Car Sale Dialog</title>
<subtitle>A course to improve your sales skills</subtitle>
<description>Things to remember when meeting a client.</description>
<userId>6eb2500c-b4ec-11e9-bd63-0a580af40990</userId>
<addedDate>2019-08-02T10:50:33+00:00</addedDate>
<viewUrl>https://myaccount.ispringlearn.com/view/100235-6cMak-YHbVg-aEFPv</viewUrl>
<type>Course</type>
</contentItem>
...
</GetContentResult>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope> |