GET api/UserEvents/Filter/{id}/{take}/{skip}/{filters}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
|
take | integer |
Required |
|
skip | integer |
Required |
|
filters | string |
None. |
Body Parameters
None.
Response Information
Resource Description
EventLookupName | Description | Type | Additional information |
---|---|---|---|
PulseEventID | integer |
None. |
|
Name | string |
None. |
|
IsPublic | boolean |
None. |
|
AdminID | integer |
None. |
|
StartDate | date |
None. |
|
EndDate | date |
None. |
|
AttendingEvent | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "PulseEventID": 1, "Name": "sample string 2", "IsPublic": true, "AdminID": 4, "StartDate": "2019-02-22T18:43:49.3905539-07:00", "EndDate": "2019-02-22T18:43:49.3905539-07:00", "AttendingEvent": true }
application/xml, text/xml
Sample:
<EventLookup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PulseAPI.Models"> <AdminID>4</AdminID> <AttendingEvent>true</AttendingEvent> <EndDate>2019-02-22T18:43:49.3905539-07:00</EndDate> <IsPublic>true</IsPublic> <Name>sample string 2</Name> <PulseEventID>1</PulseEventID> <StartDate>2019-02-22T18:43:49.3905539-07:00</StartDate> </EventLookup>