GET {version}/GetEvents
Get Events
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Get Events
Collection of Event| Name | Description | Type | Additional information |
|---|---|---|---|
| GUID | globally unique identifier |
None. |
|
| Text | string |
None. |
|
| Description | string |
None. |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
|
| Isactive | boolean |
None. |
|
| Inactive | boolean |
None. |
|
| ShortStartDate | string |
None. |
|
| ShortEndDate | string |
None. |
|
| AllocationOnly | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"GUID": "b92d7377-77f4-4e4f-b2c9-615252e9084e",
"Text": "sample string 2",
"Description": "sample string 3",
"StartDate": "01/27/2026",
"EndDate": "01/27/2026",
"Isactive": true,
"Inactive": true,
"ShortStartDate": "1/27/2026",
"ShortEndDate": "1/27/2026",
"AllocationOnly": true
},
{
"GUID": "b92d7377-77f4-4e4f-b2c9-615252e9084e",
"Text": "sample string 2",
"Description": "sample string 3",
"StartDate": "01/27/2026",
"EndDate": "01/27/2026",
"Isactive": true,
"Inactive": true,
"ShortStartDate": "1/27/2026",
"ShortEndDate": "1/27/2026",
"AllocationOnly": true
}
]
application/xml, text/xml
Sample:
<ArrayOfEvent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model">
<Event>
<AllocationOnly>true</AllocationOnly>
<Description>sample string 3</Description>
<EndDate>2026-01-27T01:29:51.5884183-05:00</EndDate>
<GUID>b92d7377-77f4-4e4f-b2c9-615252e9084e</GUID>
<Inactive>true</Inactive>
<Isactive>true</Isactive>
<StartDate>2026-01-27T01:29:51.5884183-05:00</StartDate>
<Text>sample string 2</Text>
</Event>
<Event>
<AllocationOnly>true</AllocationOnly>
<Description>sample string 3</Description>
<EndDate>2026-01-27T01:29:51.5884183-05:00</EndDate>
<GUID>b92d7377-77f4-4e4f-b2c9-615252e9084e</GUID>
<Inactive>true</Inactive>
<Isactive>true</Isactive>
<StartDate>2026-01-27T01:29:51.5884183-05:00</StartDate>
<Text>sample string 2</Text>
</Event>
</ArrayOfEvent>