//native
type Codat = {
encodedKey: string
}
/**
* Delete webhook consumer
* Use the *Delete webhook consumer* endpoint to delete an existing webhoook consumer, providing its valid `id` as a parameter.
[Webhook consumer](https://docs.codat.io/platform-api#/schemas/WebhookConsumer) is an HTTP endpoint that you configure to subscribe to specific events. See our documentation for more details on [Codat's webhook service](https://docs.codat.io/using-the-api/webhooks/overview).
*/
export async function main(auth: Codat, webhookId: string) {
const url = new URL(`https://api.codat.io/webhooks/${webhookId}`)
const response = await fetch(url, {
method: 'DELETE',
headers: {
Authorization: `Basic ${auth.encodedKey}`
},
body: undefined
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.text()
}
Submitted by hugo697 235 days ago