Open jaydeepk opened 4 years ago
I've recently started seeing the same error (although I'm calling get('/users/me/owned_events/'...) explicitly). It's only affecting my newly created Eventbrite accounts (so far, see below) and I think is to do with this deprecation/change:
https://www.eventbrite.com/platform/docs/organizations
I need to find a work-around (I've not managed to get their new API endpoints working for me yet either) because:
Access to Organizations for new Eventbrite users started to roll out on January 28th, 2020. Throughout 2020, all users will be migrated to the Organizations and Permissions model. Access to several APIs will no longer be usable on June 1st, 2020, as they are incompatible with Organizations & Permissions.
This method seems to have been deprecated; you now need to retrieve events by organization:
$client->get('/organizations/{organization_id}/events/');
You can find the IDs for your organizations using
$client->get('/users/me/organizations/');
Hi
I'm trying to retrieve the events created by a user in the following way:
This results in the following error: _The userid you requested does not exist
Even if I pass the user_id as 'me', it throws the same error:
$events = $client->get_user_events('me');
What's the correct api to fetch events created/owned by a user?
Thanks