List all registered validator marketplace webhooks for the user

List all validator marketplace webhooks for the user

import { NorthstakeApi } from '@northstake/northstakeapi' const api = new NorthstakeApi('apiKey', 'privateKey') const {body: myWebhooks} = await api.validatorMarketplaceWebhooks.listRegisteredWebhooks() for (const webhook of myWebhooks) { console.log(` Webhook ID: ${webhook.id} Webhook URL: ${webhook.url} Webhook Type: ${webhook.eventType} `) }
Responses

Language