webhooks_create
POST
/v1/webhooks
const url = 'https://example.com/v1/webhooks';const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/v1/webhooks \ --header 'Authorization: Bearer <token>'GET /v1/webhooks — list | POST /v1/webhooks — create.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”No response body