GET api/Dashboard/GetEmployeeUpcomingEvents?employeeId={employeeId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| employeeId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Event| Name | Description | Type | Additional information |
|---|---|---|---|
| LogoUrl | string |
None. |
|
| Title | Link |
None. |
|
| Description | string |
None. |
|
| Location | string |
None. |
|
| Date | date |
None. |
|
| Time | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"logoUrl": "sample string 1",
"title": {
"text": "sample string 1",
"url": "sample string 2"
},
"description": "sample string 2",
"location": "sample string 3",
"date": "2026-02-04T03:07:56.7466782+00:00",
"time": "sample string 5"
},
{
"logoUrl": "sample string 1",
"title": {
"text": "sample string 1",
"url": "sample string 2"
},
"description": "sample string 2",
"location": "sample string 3",
"date": "2026-02-04T03:07:56.7466782+00:00",
"time": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfEvent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GTI.DW.PeopleProfile.Domain.Models">
<Event>
<Date>2026-02-04T03:07:56.7466782+00:00</Date>
<Description>sample string 2</Description>
<Location>sample string 3</Location>
<LogoUrl>sample string 1</LogoUrl>
<Time>sample string 5</Time>
<Title>
<Text>sample string 1</Text>
<Url>sample string 2</Url>
</Title>
</Event>
<Event>
<Date>2026-02-04T03:07:56.7466782+00:00</Date>
<Description>sample string 2</Description>
<Location>sample string 3</Location>
<LogoUrl>sample string 1</LogoUrl>
<Time>sample string 5</Time>
<Title>
<Text>sample string 1</Text>
<Url>sample string 2</Url>
</Title>
</Event>
</ArrayOfEvent>