Client.prototype.getWebhook = function(id, callback, access_token) {
    var url = this.getRootUrl(access_token).replace(this.endpointToken, 
        this.endpoints.webhook.replace(this.idToken, id));
    this.get(url, callback);
};