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": "0a5e033d-62b5-49a6-a4fb-9d8ca87ad573",
"CreatedByFK": 1,
"Title": "sample string 1",
"SubTitle": "sample string 2",
"ImageFK": "0f7017c7-924e-48a6-9306-2b59ac601629",
"HeaderImageFK": "df428d1c-c5db-407e-b82a-c717e8f08a6d",
"NewsType": 1,
"ArticleText": "sample string 3",
"CreatedDate": "2026-06-01T13:44:06.6938442-04:00",
"PublishDate": "2026-06-01T13:44:06.6938442-04:00",
"ExpireDate": "2026-06-01T13:44:06.6938442-04: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>2026-06-01T13:44:06.6938442-04:00</CreatedDate> <ExpireDate>2026-06-01T13:44:06.6938442-04:00</ExpireDate> <HeaderImageFK>df428d1c-c5db-407e-b82a-c717e8f08a6d</HeaderImageFK> <HeaderImageURL>sample string 5</HeaderImageURL> <ImageFK>0f7017c7-924e-48a6-9306-2b59ac601629</ImageFK> <ImageURL>sample string 4</ImageURL> <NIIDPK>0a5e033d-62b5-49a6-a4fb-9d8ca87ad573</NIIDPK> <NewsType>1</NewsType> <PublishDate>2026-06-01T13:44:06.6938442-04:00</PublishDate> <SubTitle>sample string 2</SubTitle> <Title>sample string 1</Title> </NewsChannelItem>