Update a Webhook
await seam.webhooks.update({
webhook_id: "e294905f-e7a5-4804-95a6-303f440eb262",
event_types: [
"device.connected",
"device.disconnected",
"device.unmanaged.converted_to_managed",
],
});// voidcurl --include --request POST "https://connect.getseam.com/webhooks/update" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"webhook_id": "e294905f-e7a5-4804-95a6-303f440eb262",
"event_types": [
"device.connected",
"device.disconnected",
"device.unmanaged.converted_to_managed"
]
}
EOF{}Request Parameters
Response
Last updated
Was this helpful?

