I am using the php library of Eventbrite API to get a list of all events from a user. The default call pulls the list as sorted in ascending order:
$events = $eb_client->user_list_events();
What is the correct syntax to get the list in descending order?
Is there a way to pull only the earliest upcoming event instead of the whole list?