GET api/Dashboard/GetNews?employeeId={employeeId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| employeeId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of IndustryNews| Name | Description | Type | Additional information |
|---|---|---|---|
| Industry | string |
None. |
|
| News | string |
None. |
|
| url | string |
None. |
|
| date | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"industry": "sample string 1",
"news": "sample string 2",
"url": "sample string 3",
"date": "2026-02-04T03:08:57.1047186+00:00"
},
{
"industry": "sample string 1",
"news": "sample string 2",
"url": "sample string 3",
"date": "2026-02-04T03:08:57.1047186+00:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfIndustryNews xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GTI.DW.PeopleProfile.Domain.Models">
<IndustryNews>
<Industry>sample string 1</Industry>
<News>sample string 2</News>
<date>2026-02-04T03:08:57.1047186+00:00</date>
<url>sample string 3</url>
</IndustryNews>
<IndustryNews>
<Industry>sample string 1</Industry>
<News>sample string 2</News>
<date>2026-02-04T03:08:57.1047186+00:00</date>
<url>sample string 3</url>
</IndustryNews>
</ArrayOfIndustryNews>