リクエスト元のアプリケーションに対して定義されているすべてのWebhookを返します。
このAPIは、認証済みユーザーが所有するファイルまたはフォルダに適用されているWebhookのみを返します。つまり、管理者は、それらのフォルダにアクセスできない限り、サービスアカウントによって作成されたWebhookを表示することはできません。逆もまた同様です。
curl -i -X GET "https://api.box.com/2.0/webhooks" \
-H "authorization: Bearer <ACCESS_TOKEN>"
await client.webhooks.getWebhooks();
client.webhooks.get_webhooks()
await client.Webhooks.GetWebhooksAsync();
Iterable<BoxWebHook.Info> webhooks = BoxWebHook.all(api);
for (BoxWebHook.Info webhookInfo: webhooks) {
// Do something with the webhook.
}
webhooks = client.get_webhooks()
for webhook in webhooks:
print(f'The webhook ID is {webhook.id} and the address is {webhook.address}')
BoxCollectionMarkerBased<BoxWebhook> webhooks = await client.WebhooksManager.GetWebhooksAsync();
client.webhooks.getAll()
.then(webhooks => {
/* webhooks -> {
next_marker: 'ZmlQZS0xLTE%3D',
entries:
[ { id: '1234',
type: 'webhook',
target: { id: '22222', type: 'folder' } },
{ id: '5678',
type: 'webhook',
target: { id: '11111', type: 'file' } } ],
limit: 2 }
*/
});
let iterator = client.webhooks.list()
iterator.next { results in
switch results {
case let .success(page):
for webhook in page.entries {
print("Webhook \(webhook.id) was created at \(webhook.createdAt)")
}
case let .failure(error):
print(error)
}
}
{
"entries": [
{
"id": "11446498",
"target": {
"id": "1231232",
"type": "file"
},
"type": "webhook"
}
],
"limit": 1000,
"next_marker": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii",
"prev_marker": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVih"
}