GET v1/{Client}/EventDates/{BodyId}?FutureDatesOnly={FutureDatesOnly}

Gets Event Dates by BodyID.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Client

The code of the Client database to connect to.

string

Required

BodyId

The Id of the Body.

integer

Required

FutureDatesOnly

true/false (default = true).

boolean

Default value is True

Body Parameters

None.

Response Information

Resource Description

Collection of date

Response Formats

application/json, text/json

Sample:
[
  "2024-04-18T23:02:29.9951289-04:00",
  "2024-04-18T23:02:29.9951289-04:00"
]

application/xml, text/xml

Sample:
<ArrayOfNullableOfdateTime xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/System">
  <dateTime>2024-04-18T23:02:29.9951289-04:00</dateTime>
  <dateTime>2024-04-18T23:02:29.9951289-04:00</dateTime>
</ArrayOfNullableOfdateTime>

text/javascript, application/javascript, application/json-p

Sample:
(["2024-04-18T23:02:29.9951289-04:00","2024-04-18T23:02:29.9951289-04:00"]);