Update Webhook

API Library Examples

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

obj = {
  "webhook": {
    "name": "Fire Hydrant Inventory Emails",
    "url": "https://my-webhook-processing-script.php",
    "active": false
  }
}

webhook = fulcrum.webhooks.update('{id}', obj)
print(webhook['webhook']['id'] + ' has been updated!')
const { Client } = require('fulcrum-app');
const client = new Client('{token}');

const obj = {
  "name": "Fire Hydrant Inventory Emails",
  "url": "https://my-webhook-processing-script.php",
  "active": false
};

client.webhooks.update('{id}', obj)
  .then((webhook) => {
    console.log(webhook.id + ' has been updated!');
  })
  .catch((error) => {
    console.log(error.message);
  });
require 'fulcrum'

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

webhook = {
  "name"=>"Fire Hydrant Inventory Emails",
  "url"=>"https://my-webhook-processing-script.php",
  "active"=>false
}

response = client.webhooks.update('{id}', webhook)

puts response['id'] + ' has been updated!'
Language
Authorization
Header
Click Try It! to start a request and see the response here!