Skip to content
This repository has been archived by the owner on May 9, 2020. It is now read-only.

Webhook

John Rivs edited this page Aug 9, 2015 · 2 revisions

https://developer.wunderlist.com/documentation/endpoints/webhooks

Method Description Arguments
getWebhooks Show all the webhooks for a list array $attributes = []
createWebhook Create a webhook for a list array $attributes = []
deleteWebhook Delete a webhook for a list int $webhookId
deleteWebhooks Deletes all webhooks for a list int $listId

Examples

$w->getWebhooks([
    'list_id' => 1234
]);

$w->createWebhook([
    'list_id'        => 1234,
    'url'            => 'http://myapp.com',
    'processor_type' => 'generic',
    'configuration'  => ''
]);

$w->deleteWebhook(1738);

$w->deleteWebhooks(1234);
Clone this wiki locally