Webhooks API
Create Webhook
POST /v2/webhooks
Content-Type: application/json
{
"url": "https://my-app.com/webhook",
"events": ["job.completed", "job.failed"],
"secret": "my-webhook-secret"
}
`
## List Webhooks
```http
GET /v2/webhooks
`
## See Also
- [Integrations/Webhooks](/docs/integrations/apis/webhooks)