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

x-api-key
string
header
required

Path Parameters

id
string
required

id of the webhook to update.