GET integration/events/{eventId}/details
Returns an event's details.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| eventId |
Event Id or Event External Id |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
An event's details.
IntegrationEvent| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
AI Connect event primary key. Guid |
string |
None. |
| ExternalId |
AI Connect event name identifier. String. |
string |
None. |
| DisplayName |
Event display name. Open text. |
string |
None. |
| WebsiteTitle |
Event website title. Open text. |
string |
None. |
| Start |
Event start date. UTC. |
date |
None. |
| End |
Event end date. UTC. |
date |
None. |
| Venue |
Event venue. Open text. |
string |
None. |
| TimeZone |
Event time zone. A Windows Time Zone Id. |
string |
None. |
| Description |
Event description. Open text. |
string |
None. |
| Domain |
Event domain. Url. |
string |
None. |
| TimeSlots |
Event timeslots. List of timeslots. |
Collection of IntegrationTimeslots |
None. |
| Modified |
Event last modified date. UTC. |
date |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": "sample string 1",
"externalId": "sample string 2",
"displayName": "sample string 3",
"websiteTitle": "sample string 4",
"start": "2025-12-06T06:31:58.5293317+02:00",
"end": "2025-12-06T06:31:58.5293317+02:00",
"venue": "sample string 5",
"timeZone": "sample string 6",
"description": "sample string 7",
"domain": "sample string 8",
"timeSlots": [
{
"start": "2025-12-06T06:31:58.5293317+02:00",
"end": "2025-12-06T06:31:58.5293317+02:00"
},
{
"start": "2025-12-06T06:31:58.5293317+02:00",
"end": "2025-12-06T06:31:58.5293317+02:00"
}
],
"modified": "2025-12-06T06:31:58.5293317+02:00"
}
application/xml, text/xml
Sample:
<Event xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIConnectAPI.Integration.Models">
<Description>sample string 7</Description>
<DisplayName>sample string 3</DisplayName>
<Domain>sample string 8</Domain>
<End>2025-12-06T06:31:58.5293317+02:00</End>
<ExternalId>sample string 2</ExternalId>
<Id>sample string 1</Id>
<Modified>2025-12-06T06:31:58.5293317+02:00</Modified>
<Start>2025-12-06T06:31:58.5293317+02:00</Start>
<TimeSlots>
<Timeslot>
<End>2025-12-06T06:31:58.5293317+02:00</End>
<Start>2025-12-06T06:31:58.5293317+02:00</Start>
</Timeslot>
<Timeslot>
<End>2025-12-06T06:31:58.5293317+02:00</End>
<Start>2025-12-06T06:31:58.5293317+02:00</Start>
</Timeslot>
</TimeSlots>
<TimeZone>sample string 6</TimeZone>
<Venue>sample string 5</Venue>
<WebsiteTitle>sample string 4</WebsiteTitle>
</Event>