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

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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": "2024-05-08T02:54:17.763457+02:00",
    "EventDescription": "sample string 4"
  },
  {
    "CompanyEventID": 1,
    "CompanyID": 2,
    "Date": "2024-05-08T02:54:17.763457+02:00",
    "EventDescription": "sample string 4"
  }
]