GET api/v{version}/Company/GetCompanyEvents?key={key}&start={start}&end={end}&locationDepartmentID={locationDepartmentID}
Gets the events of the supplied combination location/department
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| key | string |
Required |
|
| start | date |
Required |
|
| end | date |
Required |
|
| locationDepartmentID | integer |
None. |
|
| version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of CompanyEventOutDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyEventID | integer |
None. |
|
| CompanyID | integer |
None. |
|
| Date | date |
None. |
|
| EventDescription | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CompanyEventID": 1,
"CompanyID": 2,
"Date": "2025-12-19T17:12:48.9240223+01:00",
"EventDescription": "sample string 4"
},
{
"CompanyEventID": 1,
"CompanyID": 2,
"Date": "2025-12-19T17:12:48.9240223+01:00",
"EventDescription": "sample string 4"
}
]