//native
type Codat = {
encodedKey: string
}
/**
* List webhook consumers
* Use the *List webhook consumers* endpoint to return a list of all webhook consumers that currently exist for your client.
[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) {
const url = new URL(`https://api.codat.io/webhooks`)
const response = await fetch(url, {
method: 'GET',
headers: {
Authorization: `Basic ${auth.encodedKey}`
},
body: undefined
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.json()
}
Submitted by hugo697 235 days ago