Get Single Webhook

API Library Examples

from fulcrum import Fulcrum
fulcrum = Fulcrum('{token}')

webhook = fulcrum.webhooks.find('{id}')

print(webhook['webhook'])
const { Client } = require('fulcrum-app');
const client = new Client('{token}');

client.webhooks.find('{id}')
  .then((webhook) => {
    console.log(webhook);
  })
  .catch((error) => {
    console.log(error.message);
  });
require 'fulcrum'

client = Fulcrum::Client.new('{token}')

webhook = client.webhooks.find('{id}')

puts webhook
Language
Authorization
Header
Click Try It! to start a request and see the response here!