# give/4.17.0/src/PaymentGateways/PayPalCommerce/PayPalCheckoutSdk/Requests/DeleteWebhook.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.17.0. 23 lines.

- Page: https://pluginprobe.com/plugins/give/4.17.0/code/src/PaymentGateways/PayPalCommerce/PayPalCheckoutSdk/Requests/DeleteWebhook.php
- Raw: https://pluginprobe.com/plugins/give/4.17.0/raw/src/PaymentGateways/PayPalCommerce/PayPalCheckoutSdk/Requests/DeleteWebhook.php
- Modified: 2025-04-16T13:25:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.17.0/code/src/PaymentGateways/PayPalCommerce/PayPalCheckoutSdk/Requests/DeleteWebhook.php#L10-L20`.

```php
<?php

namespace Give\PaymentGateways\PayPalCommerce\PayPalCheckoutSdk\Requests;

use PayPalHttp\HttpRequest;

class DeleteWebhook extends HttpRequest
{
    /**
     * @since 4.1.0 Add PayPal-Partner-Attribution-Id header
     * @since 2.32.0
     *
     * @param string $webhookId Webhook ID.
     */
    public function __construct(string $webhookId)
    {
        parent::__construct("/v1/notifications/webhooks/$webhookId", 'DELETE');

        $this->headers['Content-Type'] = 'application/json';
        $this->headers["PayPal-Partner-Attribution-Id"] = give('PAYPAL_COMMERCE_ATTRIBUTION_ID');
    }
}

```
