🔌 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/organizations

Create 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}/members

Invite 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 billing
  • admin - Manage events and team
  • manager - Create and manage events
  • member - View and check-in guests
  • viewer - Read-only access

© 2025 FreePas. All rights reserved.