GET api/Event?allEvent={allEvent}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
allEvent

boolean

Required

Body Parameters

None.

Response Information

Resource Description

Collection of EventModel
NameDescriptionTypeAdditional information
id

string

None.

start

date

None.

end

date

None.

title

string

None.

color

string

None.

allDay

boolean

None.

tooltip

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "id": "sample string 1",
    "start": "2024-04-16T13:25:08.7110103+08:00",
    "end": "2024-04-16T13:25:08.7110103+08:00",
    "title": "sample string 2",
    "color": "sample string 3",
    "allDay": true,
    "tooltip": "sample string 5"
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEventModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <EventModel>
    <id>sample string 1</id>
    <start>2024-04-16T13:25:08.7110103+08:00</start>
    <end>2024-04-16T13:25:08.7110103+08:00</end>
    <title>sample string 2</title>
    <color>sample string 3</color>
    <allDay>true</allDay>
    <tooltip>sample string 5</tooltip>
  </EventModel>
  <EventModel>
    <id>sample string 1</id>
    <start>2024-04-16T13:25:08.7110103+08:00</start>
    <end>2024-04-16T13:25:08.7110103+08:00</end>
    <title>sample string 2</title>
    <color>sample string 3</color>
    <allDay>true</allDay>
    <tooltip>sample string 5</tooltip>
  </EventModel>
</ArrayOfEventModel>