Box Developer Documentation
 
    Latest version

    Get webhook

    get
    https://api.box.com/2.0
    /webhooks/:webhook_id

    This endpoint is in the version 2024.0. No changes are required to continue using it. For more details, see Box API versioning.

    Retrieves a specific webhook

    Request

    bearer [ACCESS_TOKEN]
    application/json

    Path Parameters

    stringin pathrequired
    3321123

    The ID of the webhook.

    Response

    application/jsonWebhook

    Returns a webhook object

    application/jsonClient error

    Returns an error if the application does not have the permission to manage webhooks.

    application/jsonClient error

    Returns an error if the webhook could not be found

    application/jsonClient error

    An unexpected client error.

    get
    Get webhook
    You can now try out some of our APIs live, right here in the documentation.
    Log in

    Request Example

    Response Example

    {
      "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"
      ]
    }