Hi all,
We can only be the best place to organize, find and attend events through your partnership. In particular, as a fellow developer, I appreciate your integrations and feedback which help us improve the product.
Today I wanted to share two small but helpful updates:
1. Multiple-account organizations
If your account has sub-clubs, like "Club" with "Club - HPDE" and "Club - Autocross" for example, you can pull back all events for a single organization by using the Organization ID of the parent organization and then asking for all children, like so:
`/rest/calendars/organization/{organization_id}?children=true`
This only makes sense on the organization-specific resource.
2. Filter by multiple event types
You can currently pull back events of a single type by using a resource like:
`/rest/calendars/organization/{organization_id}/type/{type_id}`
You can now pass multiple type_ids to the parent resource for more flexible querying:
`/rest/calendars/organization/{organization_id}?types=x,y,z`
Right now you have to grab those event type IDs from viewing the source of your event basic settings page (look for `uidEventType`). We'll get those documented somewhere to make it easier!
Hope that helps - let us know what you think!
Brian