Power_Automate_Provider::register_endpoints()
Registers the REST API endpoints.
Source
File: src/Common/Event_Automator/Power_Automate/Power_Automate_Provider.php
public function register_endpoints() {
$this->container->make( Swagger_Documentation::class )->register();
$this->container->make( New_Events::class )->register();
$this->container->make( Updated_Events::class )->register();
$this->container->make( Canceled_Events::class )->register();
$this->container->make( Attendees::class )->register();
$this->container->make( Updated_Attendees::class )->register();
$this->container->make( Checkin::class )->register();
$this->container->make( Orders::class )->register();
$this->container->make( Refunded_Orders::class )->register();
$this->container->make( Create_Events::class )->register();
}
Changelog
| Version | Description |
|---|---|
| 6.6.3 | - Migrated all but Swagger Documentation endpoint to Event Tickets Plus and Events Calendar Pro |
| 6.0.0 | Introduced. |