0

I'll be using the Eventbrite API to pull an event list to display on a web page. I understand that there is a Description field, but, we would also like to display teaser text about the event. Does this type of field exist for an Eventbrite Event?

I have referred to the Eventbrite Event object found at....

http://developer.eventbrite.com/doc/events/event_get/

Thank you for any help!

1 Answers1

0

Great suggestion!

Currently, Eventbrite events lack an official event 'summary' content field.

As a short-term solution, I would recommend starting with the 'description' field, stripping out any HTML tags that you find, and then truncating the resulting string to your desired length.

This additional data transformation work could be added to your API client code (if you are using a code library to connect to the Eventbrite API).

ʀɣαɳĵ
  • 1,992
  • 1
  • 15
  • 20
  • Thanks for your response. I had thought about attempting like you suggested for the teaser description. Perhaps even determine that a specific portion (i.e. - paragraph 2) would always serve as the teaser summary for the client. – user1546206 Jul 25 '12 at 20:39