GET api/Dashboard/GetEmployeeExpenses?employeeId={employeeId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| employeeId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Expense| Name | Description | Type | Additional information |
|---|---|---|---|
| Amount | decimal number |
None. |
|
| Title | Link |
None. |
|
| Description | string |
None. |
|
| Date | date |
None. |
|
| status | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"amount": 1.0,
"title": {
"text": "sample string 1",
"url": "sample string 2"
},
"description": "sample string 2",
"date": "2026-02-04T03:08:58.2972155+00:00",
"status": "sample string 4"
},
{
"amount": 1.0,
"title": {
"text": "sample string 1",
"url": "sample string 2"
},
"description": "sample string 2",
"date": "2026-02-04T03:08:58.2972155+00:00",
"status": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfExpense xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GTI.DW.PeopleProfile.Domain.Models">
<Expense>
<Amount>1</Amount>
<Date>2026-02-04T03:08:58.2972155+00:00</Date>
<Description>sample string 2</Description>
<Title>
<Text>sample string 1</Text>
<Url>sample string 2</Url>
</Title>
<status>sample string 4</status>
</Expense>
<Expense>
<Amount>1</Amount>
<Date>2026-02-04T03:08:58.2972155+00:00</Date>
<Description>sample string 2</Description>
<Title>
<Text>sample string 1</Text>
<Url>sample string 2</Url>
</Title>
<status>sample string 4</status>
</Expense>
</ArrayOfExpense>