GET api/Event?allEvent={allEvent}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
allEvent | boolean |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of EventModelName | Description | Type | Additional 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": "2025-03-03T09:54:55.0856435+08:00", "end": "2025-03-03T09:54:55.0856435+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>2025-03-03T09:54:55.0856435+08:00</start> <end>2025-03-03T09:54:55.0856435+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>2025-03-03T09:54:55.0856435+08:00</start> <end>2025-03-03T09:54:55.0856435+08:00</end> <title>sample string 2</title> <color>sample string 3</color> <allDay>true</allDay> <tooltip>sample string 5</tooltip> </EventModel> </ArrayOfEventModel>