Zapier_Provider::register_endpoints()
Registers the REST API endpoints for Zapier
Source
File: src/Tribe/Integrations/Event_Automator/Zapier_Provider.php
public function register_endpoints() {
$this->container->make( Canceled_Events::class )->register();
$this->container->make( New_Events::class )->register();
$this->container->make( Updated_Events::class )->register();
$this->container->make( Create_Events::class )->register();
$this->container->make( Update_Events::class )->register();
$this->container->make( Find_Events::class )->register();
}
Changelog
| Version | Description |
|---|---|
| 7.0.0 | Introduced. |