POST api/Course/LoadDashboardFeedsById

Request Information

URI Parameters

None.

Body Parameters

DashboardFeedMasterRequestViewModel
NameDescriptionTypeAdditional information
dashboardfeedmasterid

integer

None.

coursemasterid

integer

None.

logininfoid

integer

None.

feedicon

string

None.

feedtypeid

integer

None.

feedtype

string

None.

datestring

string

None.

feedtitle

string

None.

feedtext

string

None.

feeddate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "dashboardfeedmasterid": 1,
  "coursemasterid": 2,
  "logininfoid": 3,
  "feedicon": "sample string 4",
  "feedtypeid": 5,
  "feedtype": "sample string 6",
  "datestring": "sample string 7",
  "feedtitle": "sample string 8",
  "feedtext": "sample string 9",
  "feeddate": "2025-12-09T17:07:36.538765+05:30"
}

application/xml, text/xml

Sample:
<DashboardFeedMasterRequestViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/selfhatch.Models">
  <coursemasterid>2</coursemasterid>
  <dashboardfeedmasterid>1</dashboardfeedmasterid>
  <datestring>sample string 7</datestring>
  <feeddate>2025-12-09T17:07:36.538765+05:30</feeddate>
  <feedicon>sample string 4</feedicon>
  <feedtext>sample string 9</feedtext>
  <feedtitle>sample string 8</feedtitle>
  <feedtype>sample string 6</feedtype>
  <feedtypeid>5</feedtypeid>
  <logininfoid>3</logininfoid>
</DashboardFeedMasterRequestViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResultViewModel
NameDescriptionTypeAdditional information
status

boolean

None.

message

string

None.

data

Object

None.

errorCode

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "status": true,
  "message": "sample string 2",
  "data": {},
  "errorCode": 4
}

application/xml, text/xml

Sample:
<HttpResultViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/selfhatch.Models">
  <data />
  <errorCode>4</errorCode>
  <message>sample string 2</message>
  <status>true</status>
</HttpResultViewModel>