GET v/1/Rest/Public/{client_domain}/Events/{id}
Get information for the specified event.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
id of the event. |
string |
Required |
| client_domain | string |
None. |
Body Parameters
None.
Response Information
Resource Description
information on the event.
GetEventResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Event | EventRecord |
None. |
|
| Successful | boolean |
None. |
|
| Error | PublicApiError |
None. |
Response Formats
application/json, text/json
Sample:
{
"Event": {
"Active": true,
"StartDate": "2025-10-29T01:13:18.5228992-04:00",
"EndDate": "2025-10-29T01:13:18.5228992-04:00",
"Name": "sample string 2",
"DateCreated": "2025-10-29T01:13:18.5228992-04:00",
"Id": 4
},
"Successful": true,
"Error": {
"Code": 0,
"Message": "sample string 1"
}
}
application/xml, text/xml
Sample:
<GetEventResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Error>
<Message>sample string 1</Message>
<Code>None</Code>
</Error>
<Successful>true</Successful>
<Event>
<Id>4</Id>
<DateCreated>2025-10-29T01:13:18.5228992-04:00</DateCreated>
<Name>sample string 2</Name>
<Active>true</Active>
<EndDate>2025-10-29T01:13:18.5228992-04:00</EndDate>
<StartDate>2025-10-29T01:13:18.5228992-04:00</StartDate>
</Event>
</GetEventResponse>