POST api/Course/CourseNameImageList

Request Information

URI Parameters

None.

Body Parameters

CourseListRequest
NameDescriptionTypeAdditional information
courseId

integer

None.

status

integer

None.

SearchText

string

None.

PageNumber

integer

None.

PageSize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "courseId": 1,
  "status": 2,
  "SearchText": "sample string 3",
  "PageNumber": 4,
  "PageSize": 5
}

text/xml

Sample:
<CourseListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Project">
  <PageNumber>4</PageNumber>
  <PageSize>5</PageSize>
  <SearchText>sample string 3</SearchText>
  <courseId>1</courseId>
  <status>2</status>
</CourseListRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of Object

None.

Response Formats

application/json, text/json

Sample:
{}

text/xml

Sample:
<ArrayOfKeyValueOfstringanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />