List Webhooks
Returns a list of all webhooks.
Returns a list of all webhooks.
Code:
await seam.webhooks.list();Output:
[
{
"event_types": ["device.connected", "device.disconnected"],
"secret": "mySecret",
"url": "https://example.com/webhook",
"webhook_id": "ffe5cc3c-f3f4-48e8-b377-6f76c05d09a1"
}
]Returns a list of all webhooks.
Code:
curl --include --request POST "https://connect.getseam.com/webhooks/list" \
--header "Authorization: Bearer $SEAM_API_KEY"Output:
{
"webhooks": [
{
"event_types": ["device.connected", "device.disconnected"],
"secret": "mySecret",
"url": "https://example.com/webhook",
"webhook_id": "ffe5cc3c-f3f4-48e8-b377-6f76c05d09a1"
}
]
}Returns a list of all webhooks.
Code:
Output:
Returns a list of all webhooks.
Code:
Output:
Returns a list of all webhooks.
Code:
Output:
Returns a list of all webhooks.
Code:
Output:
Request Parameters
None
Response
Returns: Array of webhooks
Last updated
Was this helpful?

