GET api/v1/audit/events/{tenant}/from/{fromDate}/to/{toDate}
Get events for tenant
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
tenant | string |
Required |
|
fromDate |
start event date |
date |
Required |
toDate |
end event date |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
array of events in specified provider for date range
Collection of Com.Healthbridge.Hhas.Audit.Interface.ValueObjects.EventVoName | Description | Type | Additional information |
---|---|---|---|
EventDetails |
Details |
Com.Healthbridge.Core.CommonDomain.Interface.Event |
None. |
CreatedAt |
Creation Date |
date |
None. |
Type |
Type of event |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "EventDetails": null, "CreatedAt": "2025-04-14T23:19:48Z", "Type": "sample string 2" }, { "EventDetails": null, "CreatedAt": "2025-04-14T23:19:48Z", "Type": "sample string 2" } ]
application/xml, text/xml
Sample:
<ArrayOfEvent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://mpsapi.healthbridge.com/platform/audit/v1/audit/"> <Event> <CreatedAt>2025-04-14T23:19:48.9922587+02:00</CreatedAt> <EventDetails xmlns:d3p1="http://mpsapi.healthbridge.com/platform/core/v1/event/" i:nil="true" /> <Type>sample string 2</Type> </Event> <Event> <CreatedAt>2025-04-14T23:19:48.9922587+02:00</CreatedAt> <EventDetails xmlns:d3p1="http://mpsapi.healthbridge.com/platform/core/v1/event/" i:nil="true" /> <Type>sample string 2</Type> </Event> </ArrayOfEvent>