List Webhooks for a User
List Webhooks for a User
To fetch all webhooks for the authenticated user, use the list all webhooks endpoint.
cURL
curl -i -X GET "https://api.box.com/2.0/webhooks" \
-H "authorization: Bearer <ACCESS_TOKEN>"Node/TypeScript v10
await client.webhooks.getWebhooks();Python v10
client.webhooks.get_webhooks().NET v10
await client.Webhooks.GetWebhooksAsync();Swift v10
try await client.webhooks.getWebhooks()Java v10
client.getWebhooks().getWebhooks().NET v6
await client.Webhooks.GetWebhooksAsync();Node v4
await client.webhooks.getWebhooks();This API call will only list the webhooks for the authenticated user, not for any other users in the enterprise.