Webhooks
Update webhook status
Core Resources
- Connections
- Webhooks
- Field Mappings
- Linked Users
- Projects
- Events
- Passthrough
Webhooks
Update webhook status
PUT
/
webhooks
/
{id}
import { Panora } from "@panora/sdk";
const panora = new Panora({
apiKey: "<YOUR_API_KEY_HERE>",
});
async function run() {
const result = await panora.webhooks.updateStatus({
id: "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
});
// Handle the result
console.log(result)
}
run();
This response has no body data.
Authorizations
Path Parameters
id of the webhook to update.
Was this page helpful?
import { Panora } from "@panora/sdk";
const panora = new Panora({
apiKey: "<YOUR_API_KEY_HERE>",
});
async function run() {
const result = await panora.webhooks.updateStatus({
id: "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
});
// Handle the result
console.log(result)
}
run();
This response has no body data.