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}
    `)
  }
Language
Click Try It! to start a request and see the response here!