Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 811 Bytes

Webhook.md

File metadata and controls

43 lines (34 loc) · 811 Bytes

Trello Webhook API

Find a webhook by id

$api->webhooks()->show(string $id, array $params)

Create a webhook

$api->webhooks()->create(array $params)

Update a webhook

$api->webhooks()->update(string $id, array $params)

Remove a webhook

$api->webhooks()->remove(string $id)

Set a given webhook's callback url

$api->webhooks()->setCallbackUrl(string $id, string $url)

Set a given webhook's description

$api->webhooks()->setDescription(string $id, string $description)

Set a given webhook's board

$api->webhooks()->setModel(string $id, string $modelId)

Set a given webhook's active state

$api->webhooks()->setActive(string $id, boolean $active)