Select an API to view Documentation: 


This API retrieves all the available event types to be used to narrow your events search.


/event_types



Name Data Type Required Description
api_key string YES API Key that was given to you at API registration
version string YES Version of the API (Current version = 2)

Sample Request

http://www.findmespecials.com/api/event_types?api_key=YOUR_KEY&version=2



 

Response Values

Response Node Data Type Number of times occuring Description
response Node 1 Response body
response_header Node 1 Response summary.
Attributes include:
status:Response Status.
event_type_count:Total number of event_types available in result.
event_types Node 1 Container for event_types
event_type Node 0..event_type_count Container for each event_event_type
Attributes include:
id:ID for event_type.
event_type.name string 1 for each event_type Name of event_type
event_type.description string 1 for each event_type Description of event_type

 

Sample Response

      
<?xml version="1.0" encoding="UTF-8"?>
<response>
  <response_header status="OK" event_types_count="2"/>
  <event_types>
    <event_type id="97">
      <name>Breakfast/Brunch</name>
      <description>Breakfast/Brunch</description>
    </event_type>
    <event_type id="128">
      <name>Clothing/Fashion</name>
      <description></description>
    </event_type>
  </event_types>
</response>