GET api/betty/GetDirectGlobalResults?eventFile={eventFile}&eventGroup={eventGroup}&eventIdx={eventIdx}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| eventFile | string |
Required |
|
| eventGroup | integer |
Required |
|
| eventIdx | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of GlobalEventResult| Name | Description | Type | Additional information |
|---|---|---|---|
| EventCode | string |
None. |
|
| MeetingId | integer |
None. |
|
| EventId | integer |
None. |
|
| EventUniqueId | string |
None. |
|
| ObjectData | Object |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"EventCode": "sample string 1",
"MeetingId": 2,
"EventId": 3,
"EventUniqueId": "sample string 1|2|3",
"ObjectData": {}
},
{
"EventCode": "sample string 1",
"MeetingId": 2,
"EventId": 3,
"EventUniqueId": "sample string 1|2|3",
"ObjectData": {}
}
]
application/xml, text/xml
Sample:
<ArrayOfGlobalEventResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Anthill.Geoff.Integrations.Betty.Models.DataModels">
<GlobalEventResult>
<EventCode>sample string 1</EventCode>
<EventId>3</EventId>
<MeetingId>2</MeetingId>
<ObjectData />
</GlobalEventResult>
<GlobalEventResult>
<EventCode>sample string 1</EventCode>
<EventId>3</EventId>
<MeetingId>2</MeetingId>
<ObjectData />
</GlobalEventResult>
</ArrayOfGlobalEventResult>