Join BoxWorks 2024 to discover what's possible with content and AI!
Register now!Retrieves a specific webhook
3321123
The ID of the webhook.
Returns a webhook object
Returns an error if the application does not have the permission to manage webhooks.
Returns an error if the webhook could not be found
An unexpected client error.
curl -i -X GET "https://api.box.com/2.0/webhooks/3321123" \
-H "authorization: Bearer <ACCESS_TOKEN>"
await client.webhooks.getWebhookById(webhook.id!);
client.webhooks.get_webhook_by_id(webhook.id)
await client.Webhooks.GetWebhookByIdAsync(webhookId: NullableUtils.Unwrap(webhook.Id));
try await client.webhooks.getWebhookById(webhookId: webhook.id!)
BoxWebHook webhook = new BoxWebHook(api, id);
BoxWebHook.Info info = webhook.getInfo();
webhook = client.webhook(webhook_id='12345').get()
print(f'Webhooks ID is {webhook.id} and the address is {webhook.address}')
BoxWebhook webhook = await client.WebhooksManager.GetWebhookAsync("12345");
client.webhooks.get('1234')
.then(webhook => {
/* webhook -> {
id: '1234',
type: 'webhook',
target: { id: '22222', type: 'folder' },
created_by:
{ type: 'user',
id: '33333',
name: 'Example User',
login: 'user@example.com' },
created_at: '2016-05-09T17:41:27-07:00',
address: 'https://example.com/webhook',
triggers: [ 'FILE.DOWNLOADED', 'FILE.UPLOADED' ] }
*/
});
client.folders.get(webhookId: "22222", fields: ["id", "created_at"]) { (result: Result<Webhook, BoxSDKError>) in
guard case let .success(webhook) = result else {
print("Error getting webhook information")
return
}
print("Webhook \(webhook.id) was created at \(webhook.createdAt)")
}
{
"id": "11446498",
"type": "webhook",
"address": "https://example.com/webhooks",
"created_at": "2012-12-12T10:53:43-08:00",
"created_by": {
"id": "11446498",
"type": "user",
"login": "ceo@example.com",
"name": "Aaron Levie"
},
"target": {
"id": "1231232",
"type": "file"
},
"triggers": [
"FILE.UPLOADED"
]
}