Delete a Webhook
Deletes a specified webhook.
Deletes a specified webhook.
Code:
await seam.webhooks.delete({
webhook_id: "d3fb55d3-8b49-43ed-ac6b-e490be7b4274",
});Output:
// voidDeletes a specified webhook.
Code:
curl --include --request POST "https://connect.getseam.com/webhooks/delete" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"webhook_id": "d3fb55d3-8b49-43ed-ac6b-e490be7b4274"
}
EOFOutput:
{}Deletes a specified webhook.
Code:
seam.webhooks.delete(webhook_id="d3fb55d3-8b49-43ed-ac6b-e490be7b4274")Output:
NoneDeletes a specified webhook.
Code:
seam.webhooks.delete(webhook_id: "d3fb55d3-8b49-43ed-ac6b-e490be7b4274")Output:
nilDeletes a specified webhook.
Code:
$seam->webhooks->delete(webhook_id: "d3fb55d3-8b49-43ed-ac6b-e490be7b4274");Output:
Deletes a specified webhook.
Code:
seam webhooks delete --webhook_id "d3fb55d3-8b49-43ed-ac6b-e490be7b4274"Output:
{}Request Parameters
webhook_id String (Required)
ID of the webhook that you want to delete.
Response
Returns: void
Last updated
Was this helpful?

