GET classroomAPI/Content/getAllAvailableChannelNewsAsSumary?companyID={companyID}&channelID={channelID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| companyID | integer |
Required |
|
| channelID | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ChannelNewsItemSummary| Name | Description | Type | Additional information |
|---|---|---|---|
| NIIDPK | globally unique identifier |
None. |
|
| Title | string |
None. |
|
| SubTitle | string |
None. |
|
| HeaderImageURL | string |
None. |
|
| NewsType | integer |
None. |
|
| ChannelID | globally unique identifier |
None. |
|
| ChannelName | string |
None. |
|
| PublishDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"NIIDPK": "586b3ba4-d7e2-40f8-b665-29ed4e9c0315",
"Title": "sample string 1",
"SubTitle": "sample string 2",
"HeaderImageURL": "sample string 3",
"NewsType": 1,
"ChannelID": "38d8a7d6-f466-4348-8f3c-23563ca8e147",
"ChannelName": "sample string 4",
"PublishDate": "2026-03-31T07:58:50.6307355-04:00"
},
{
"NIIDPK": "586b3ba4-d7e2-40f8-b665-29ed4e9c0315",
"Title": "sample string 1",
"SubTitle": "sample string 2",
"HeaderImageURL": "sample string 3",
"NewsType": 1,
"ChannelID": "38d8a7d6-f466-4348-8f3c-23563ca8e147",
"ChannelName": "sample string 4",
"PublishDate": "2026-03-31T07:58:50.6307355-04:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfChannelNewsItemSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classroom.ClassroomBLL">
<ChannelNewsItemSummary>
<ChannelID>38d8a7d6-f466-4348-8f3c-23563ca8e147</ChannelID>
<ChannelName>sample string 4</ChannelName>
<HeaderImageURL>sample string 3</HeaderImageURL>
<NIIDPK>586b3ba4-d7e2-40f8-b665-29ed4e9c0315</NIIDPK>
<NewsType>1</NewsType>
<PublishDate>2026-03-31T07:58:50.6307355-04:00</PublishDate>
<SubTitle>sample string 2</SubTitle>
<Title>sample string 1</Title>
</ChannelNewsItemSummary>
<ChannelNewsItemSummary>
<ChannelID>38d8a7d6-f466-4348-8f3c-23563ca8e147</ChannelID>
<ChannelName>sample string 4</ChannelName>
<HeaderImageURL>sample string 3</HeaderImageURL>
<NIIDPK>586b3ba4-d7e2-40f8-b665-29ed4e9c0315</NIIDPK>
<NewsType>1</NewsType>
<PublishDate>2026-03-31T07:58:50.6307355-04:00</PublishDate>
<SubTitle>sample string 2</SubTitle>
<Title>sample string 1</Title>
</ChannelNewsItemSummary>
</ArrayOfChannelNewsItemSummary>