Skip to main content
January 8, 2026
Improved welcome email for API-created membersMembers created via POST /admin/v1/networks/:id/members now receive a welcome email with a direct sign-in link (valid for 1 year), removing the need to go through the password reset flow.
December 2025
General Availability releaseThe Admin API has exited beta and is now generally available. Key updates in this release:
  • Webhook event selection: New UI in the Mighty Networks dashboard to select which webhook events you want to receive, giving you fine-grained control over webhook deliveries
  • API key revocation: You can now revoke API keys instead of deleting them, making it easier to disable access while preserving key history
  • Usage quotas: API quota limits are now visible in the dashboard, with clear usage tracking
  • Business plan availability: The Admin API is now available to all Business plan and above networks
November 2025
Full CRUD operations and expanded resourcesThis update significantly expands the API with complete create, read, update, and delete operations across all major resources:New endpoints:
  • Comments: Full CRUD for post comments (/posts/:id/comments)
  • Badges: Create, manage, and assign badges to members
  • Reactions: Add and remove reactions on posts and comments
  • Coursework: Full CRUD for course content
  • Polls & Questions: Create and manage polls with question options
  • Assets: Upload images and files via multipart form-data
  • Plan invites: Create and manage plan invitation links
  • Abuse reports: Read abuse reports for moderation workflows
Enhanced queries:
  • Query spaces by member (/members/:id/spaces)
  • Query plans by member (/members/:id/plans)
  • Query members within a plan (/plans/:id/members)
  • Get member by email address (/members?email=...)
Updated resources:
  • Spaces now support full CRUD (create, update, delete)
  • Collections now support create and update
  • Tags now support full CRUD
  • Custom field options now support full CRUD
  • Members now support update and remove operations
  • Posts now support update and delete
  • Plan members can be removed immediately or at end-of-cycle
Webhook improvements:
  • New course progress webhooks: course.progress_updated, course.completed
  • New subscription webhooks: subscription.renewed, subscription.plan_changed
  • New RSVP webhooks: rsvp.created, rsvp.updated, rsvp.deleted
  • More granular custom field webhooks: custom_field.created, custom_field.updated, custom_field.deleted
  • Added bio field to member.updated webhook payload
October 2025
Alpha preview launchInitial release of the Mighty Networks Admin API in alpha preview. This release establishes the foundation for programmatic access to your Mighty Network.Core endpoints:
  • Members: List and retrieve member profiles
  • Spaces: List and retrieve spaces in your network
  • Events: List events and manage RSVPs
  • Posts & Articles: List and create posts and articles
  • Custom fields: Read custom profile fields and member answers
  • Tags: List and assign member tags
  • Plans: List pricing plans and add/remove members
  • Subscriptions: View subscription details
  • Purchases: View purchase history
Webhooks: Real-time notifications for key events in your network:
  • Member events: member.created, member.updated, member.deleted
  • Membership events: join, leave, update, join requests
  • Content events: post, article, question, and comment creation
  • Payment events: purchases and cancellations
  • Event RSVPs and poll responses
  • Reaction events
  • Content moderation reports
API foundations:
  • Bearer token authentication with API keys
  • v1 API versioning (/admin/v1/...)
  • Cursor-based pagination
  • Rate limiting with clear quota headers
  • OpenAPI specification for client generation