GET api/StudentDiscussion/GetCourseMaterialParentFolders?topicId={topicId}

Used to get the course material parent folder id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
topicId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CourseMaterialTopics
NameDescriptionTypeAdditional information
CourseMaterialFolderId

gets or sets the course material folder id

integer

None.

ParentCourseMaterialFolderId

Gets or sets the parent course material folder id

integer

None.

Level

Gets or sets the level

integer

None.

InstructorId

Gets or sets the instructor id

integer

None.

FolderName

Gets or sets the folder name

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CourseMaterialFolderId": 1,
    "ParentCourseMaterialFolderId": 2,
    "Level": 3,
    "InstructorId": 4,
    "FolderName": "sample string 5"
  },
  {
    "CourseMaterialFolderId": 1,
    "ParentCourseMaterialFolderId": 2,
    "Level": 3,
    "InstructorId": 4,
    "FolderName": "sample string 5"
  }
]