GET api/Event?agencyID={agencyID}&limitID={limitID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| agencyID | integer |
Required |
|
| limitID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of EventInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| EventID | integer |
None. |
|
| Event | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"EventID": 1,
"Event": "sample string 2"
},
{
"EventID": 1,
"Event": "sample string 2"
}
]
text/html
Sample:
[{"EventID":1,"Event":"sample string 2"},{"EventID":1,"Event":"sample string 2"}]
application/xml, text/xml
Sample:
<ArrayOfEventInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SeniorDineQRCSharp_Service.Models">
<EventInfo>
<Event>sample string 2</Event>
<EventID>1</EventID>
</EventInfo>
<EventInfo>
<Event>sample string 2</Event>
<EventID>1</EventID>
</EventInfo>
</ArrayOfEventInfo>