get
https://api.fulcrumapp.com/api/v2/webhooks/.json
Get a webhook.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
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