I have created a webhook as part of an application in Box. The application has a service account. The service account has all scopes possible (just make sure I didn’t miss anything). The service account is a co-owner of the folder that the webhook monitors.
However,
when I use the code examples from here and here I am unable to see the webhook (I receive a 404).
Is this a permissions issue or am I doing something wrong?
I have tried impersonating as the owner of the folder but I get a 403 response.
import boxsdk
import json
from boxsdk import JWTAuth
from boxsdk import Client
def build_client():
auth = JWTAuth.from_settings_file('box_settings.json')
client = Client(auth)
return client
client = build_client()
webhooks = client.get_webhooks()