🔌 API Reference
Organizations
Manage organizations and teams
Organizations API
Manage organizations, team members, and permissions.
List Organizations
Get all organizations you're a member of:
GET /api/v1/organizationsCreate Organization
Create a new organization:
POST /api/v1/organizations
{
"name": "My Company",
"website": "https://example.com",
"industry": "technology"
}List Members
Get all members of an organization:
GET /api/v1/organizations/{org_id}/membersInvite Team Member
Invite a new team member:
POST /api/v1/team/invite
{
"email": "colleague@example.com",
"role": "manager",
"message": "Join our team!"
}Available Roles
owner- Full access including billingadmin- Manage events and teammanager- Create and manage eventsmember- View and check-in guestsviewer- Read-only access