Get Course Custom Fields
Get all course custom fields and related field attributes.
Request Uri:
GET /coursecustomfields?
Response Body: (XML)
<CourseCustomFields>
<CourseCustomField>
<CustomFieldId>string [max length 50]</CustomFieldId>
<Label>string</Label>
<DefaultValue></DefaultValue>
<Mandatory>true/false</Mandatory>
<VisibleToLearner>true/false</VisibleToLearner>
<Type></Type>
<Dropdown>
<DropdownId></DropdownId
<DropdownValue></DropdownValue>
</CourseCustomField>
<CourseCustomField>
<CustomFieldId>string [max length 50]</CustomFieldId>
<Label>string</Label>
<DefaultValue></DefaultValue>
<Mandatory>true/false</Mandatory>
<VisibleToLearner>true/false</VisibleToLearner>
<Type></Type>
<Dropdown/>
</CourseCustomField>
...
</CourseCustomFields>
Get the Details for a Specific Course Custom Field Across All Courses
Get the details of a specific course custom field across all course records.
Request Uri:
GET /coursecustomfields/{customfieldId}?
Response Body: (XML)
<CourseCustomField>
<CustomFieldId>string [max length 50]</CustomFieldId>
<Label>string</Label>
<DefaultValue>string</DefaultValue>
<Mandatory>true/false</Mandatory>
<VisibleToLearner>true/false</VisibleToLearner>
<Type>String</Type>
<Dropdown/>
</CourseCustomField>
Get All Custom Field Values for a Course
Get the course custom field values for a specific course record.
Request Uri:
GET /courses/{courseid}/coursecustomfields?
Response Body: (XML)
<ArrayOfparameter>
<parameter>
<fieldname>Organization Name</fieldname>
<value>NCR</value>
</parameter>
<parameter>
<fieldname>Domain Name</fieldname>
<value>Litmos Commerce</value>
</parameter>
</ArrayOfparameter>
Comments
0 comments
Article is closed for comments.