GET v/1/Rest/Public/{client_domain}/Events/{id}

Get information for the specified event.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

id of the event.

string

Required

client_domain

string

None.

Body Parameters

None.

Response Information

Resource Description

information on the event.

GetEventResponse
NameDescriptionTypeAdditional information
Event

EventRecord

None.

Successful

boolean

None.

Error

PublicApiError

None.

Response Formats

application/json, text/json

Sample:
{
  "Event": {
    "Active": true,
    "StartDate": "2024-04-13T16:00:43.8968032-04:00",
    "EndDate": "2024-04-13T16:00:43.8968032-04:00",
    "Name": "sample string 2",
    "DateCreated": "2024-04-13T16:00:43.8968032-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>2024-04-13T16:00:43.8968032-04:00</DateCreated>
    <Name>sample string 2</Name>
    <Active>true</Active>
    <EndDate>2024-04-13T16:00:43.8968032-04:00</EndDate>
    <StartDate>2024-04-13T16:00:43.8968032-04:00</StartDate>
  </Event>
</GetEventResponse>