• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
Easy Digital Downloads a2z

Easy Digital Downloads a2z

Easy Digital Downloads a2z

  • Home
  • Plugins
  • Shortcodes
  • APIs
  • Classes
  • Files
  • Hooks
  • Sitemap
  • Blog
Home / APIs / delete_webhook() – Deletes the webhook.

You appear to be a bot. Output may be restricted

Description

Deletes the webhook.

Usage

delete_webhook( $mode );

Parameters

$mode
( string ) optional –

Returns

void

Source

File name: easy-digital-downloads/includes/gateways/paypal/webhooks/functions.php
Lines:

1 to 28 of 28
function delete_webhook( $mode = '' ) {
  if ( empty( $mode ) ) {
    $mode = edd_is_test_mode() ? API::MODE_SANDBOX : API::MODE_LIVE;
  }

  $webhook_name = sanitize_key( 'edd_paypal_commerce_webhook_id_' . $mode );
  $webhook_id   = get_option( $webhook_name );

  // Bail if webhook was never set.
  if ( ! $webhook_id ) {
    return;
  }

  $api = new API( $mode );

  $api->make_request( 'v1/notifications/webhooks/' . urlencode( $webhook_id ), array(), array(), 'DELETE' );

  // Delete the webhook ID.
  delete_option( $webhook_name );

  if ( 204 !== $api->last_response_code ) {
    throw new API_Exception( sprintf(
    /* Translators: %d - HTTP response code. */
      __( 'Invalid response code %d while deleting webhook.', 'easy-digital-downloads' ),
      $api->last_response_code
    ) );
  }
}
 

 View on GitHub View on Trac

Published: 12th September 2021 | Last updated: 14th November 2021

Primary Sidebar

Information

Function name: delete_webhook
Plugin ref: Easy Digital Downloads
Version: 2.11.6
Sourcefile: includes/gateways/paypal/webhooks/functions.php
File ref: includes/gateways/paypal/webhooks/functions.php
Deprecated?: No
API Letters: D,W

Footer

Easy Digital Downloads a2z
Easy Digital Downloads a2z
Easy Digital Downloads a2z
WordPress 5.9.3
WordPress a2z
WordPress core a2z
Genesis Theme Framework a2z
Jetpack a2z
WordPress develop tests
Easy Digital Downloads a2z
WooCommerce a2z
Yoast SEO a2z
WordPress Blocks

Site:  edd.wp-a2z.org
© Copyright Easy Digital Downloads a2z 2014-2022. All rights reserved.


Website designed and developed by Herb Miller
Proudly powered by WordPress and oik plugins

  • Home
  • Blog
  • Sitemap
  • Sites