Webhooks
Webhooks are a mechanism to configure Omneo to send a HTTP request to your plugin whenever a particular event occurs. This enables your plugin to respond in real-time when things happen within Omneo.
Browse
Fetch listing of webhooks attached to consumer.
$omneo->webhooks()->browse(); // Illuminate\Support\CollectionRead
Fetch a single webhook.
$omneo->webhooks()->read(1); // Omneo\WebhookEdit
Edit the given webhook.
$omneo->webhooks()->edit(new Omneo\Webhook([
'id' => 123,
'event' => 'profile.created',
'url' => 'https://example.com/omneo'
])); // Omneo\WebhookAdd
Create the given webhook.
Delete
Delete the given webhook.
Last updated