GET classroomAPI/Content/getNewsItem?NID={NID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| NID | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
NewsChannelItem| Name | Description | Type | Additional information |
|---|---|---|---|
| NIIDPK | globally unique identifier |
None. |
|
| CreatedByFK | integer |
None. |
|
| Title | string |
None. |
|
| SubTitle | string |
None. |
|
| ImageFK | globally unique identifier |
None. |
|
| HeaderImageFK | globally unique identifier |
None. |
|
| NewsType | integer |
None. |
|
| ArticleText | string |
None. |
|
| CreatedDate | date |
None. |
|
| PublishDate | date |
None. |
|
| ExpireDate | date |
None. |
|
| ImageURL | string |
None. |
|
| HeaderImageURL | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"NIIDPK": "fec030a7-0c3d-4819-b2fe-124eb112429a",
"CreatedByFK": 1,
"Title": "sample string 1",
"SubTitle": "sample string 2",
"ImageFK": "0449481d-b7c5-4919-a004-e4cdd92c43c5",
"HeaderImageFK": "13597b3c-0991-421d-ba00-9b919919cc9d",
"NewsType": 1,
"ArticleText": "sample string 3",
"CreatedDate": "2025-12-26T06:22:45.3044213-05:00",
"PublishDate": "2025-12-26T06:22:45.3044213-05:00",
"ExpireDate": "2025-12-26T06:22:45.3044213-05:00",
"ImageURL": "sample string 4",
"HeaderImageURL": "sample string 5"
}
application/xml, text/xml
Sample:
<NewsChannelItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classroom.ClassroomBLL"> <ArticleText>sample string 3</ArticleText> <CreatedByFK>1</CreatedByFK> <CreatedDate>2025-12-26T06:22:45.3044213-05:00</CreatedDate> <ExpireDate>2025-12-26T06:22:45.3044213-05:00</ExpireDate> <HeaderImageFK>13597b3c-0991-421d-ba00-9b919919cc9d</HeaderImageFK> <HeaderImageURL>sample string 5</HeaderImageURL> <ImageFK>0449481d-b7c5-4919-a004-e4cdd92c43c5</ImageFK> <ImageURL>sample string 4</ImageURL> <NIIDPK>fec030a7-0c3d-4819-b2fe-124eb112429a</NIIDPK> <NewsType>1</NewsType> <PublishDate>2025-12-26T06:22:45.3044213-05:00</PublishDate> <SubTitle>sample string 2</SubTitle> <Title>sample string 1</Title> </NewsChannelItem>