POST {version}/GetTransactionEvents
Get Events
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| version | string |
None. |
Body Parameters
Query| Name | Description | Type | Additional information |
|---|---|---|---|
| ActiveOnly | boolean |
None. |
|
| Ids | Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"ActiveOnly": true,
"Ids": [
"a9ffce90-5d8b-4a5c-9eb4-6d8aabe1f1c0",
"83ebbaa8-43c7-4fff-ada6-94959a43df8b"
]
}
application/xml, text/xml
Sample:
<Query xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model">
<ActiveOnly>true</ActiveOnly>
<Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>a9ffce90-5d8b-4a5c-9eb4-6d8aabe1f1c0</d2p1:guid>
<d2p1:guid>83ebbaa8-43c7-4fff-ada6-94959a43df8b</d2p1:guid>
</Ids>
</Query>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
List of 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": "6227341d-2bff-45bd-9504-f959fa624085",
"Text": "sample string 2",
"Description": "sample string 3",
"StartDate": "11/27/2025",
"EndDate": "11/27/2025",
"Isactive": true,
"Inactive": true,
"ShortStartDate": "11/27/2025",
"ShortEndDate": "11/27/2025",
"AllocationOnly": true
},
{
"GUID": "6227341d-2bff-45bd-9504-f959fa624085",
"Text": "sample string 2",
"Description": "sample string 3",
"StartDate": "11/27/2025",
"EndDate": "11/27/2025",
"Isactive": true,
"Inactive": true,
"ShortStartDate": "11/27/2025",
"ShortEndDate": "11/27/2025",
"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>2025-11-27T23:25:37.5184105-05:00</EndDate>
<GUID>6227341d-2bff-45bd-9504-f959fa624085</GUID>
<Inactive>true</Inactive>
<Isactive>true</Isactive>
<StartDate>2025-11-27T23:25:37.5184105-05:00</StartDate>
<Text>sample string 2</Text>
</Event>
<Event>
<AllocationOnly>true</AllocationOnly>
<Description>sample string 3</Description>
<EndDate>2025-11-27T23:25:37.5184105-05:00</EndDate>
<GUID>6227341d-2bff-45bd-9504-f959fa624085</GUID>
<Inactive>true</Inactive>
<Isactive>true</Isactive>
<StartDate>2025-11-27T23:25:37.5184105-05:00</StartDate>
<Text>sample string 2</Text>
</Event>
</ArrayOfEvent>