Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • We have a client that is having the same issue. They do have a custom checkbox added to their checkout page which seems to be the issue as stated above.

    Here is the functions in use to add this:

    add_action( 'woocommerce_review_order_before_submit', 'gd_add_checkout_privacy_policy', 9 );
    
    function gd_add_checkout_privacy_policy() {
    
    woocommerce_form_field( 'privacy_policy', array(
        'type'          => 'checkbox',
        'class'         => array('form-row privacy'),
        'label_class'   => array('woocommerce-form__label woocommerce-form__label-for-checkbox checkbox'),
        'input_class'   => array('woocommerce-form__input woocommerce-form__input-checkbox input-checkbox'),
        'required'      => true,
        'label'         => 'I\'ve read and accepted the <a href="'. home_url( 'terms-conditions' ) .'">terms and conditions</a>',
    ));
    
    }
    
    // Show notice if customer does not tick
    
    add_action( 'woocommerce_checkout_process', 'gd_not_approved_privacy' );
    
    function gd_not_approved_privacy() {
      if ( ! (int) isset( $_POST['privacy_policy'] ) ) {
        wc_add_notice( __( 'Please acknowledge the terms and conditions' ), 'error' );
      }
    }

    Currently I have just downgraded the plugin until a fix can be implemented.

    Thread Starter goopdevelopers

    (@goopdevelopers)

    Hey Ryan,

    Good news! Since making these changes none of the orders have come through as failed!
    I think the change that helped the most was issuing the SSL through WP Engine (the host) instead of through Cloudflare, as this caused issues for some reason.

    Thank you so much for your assistance with this ??

    Hamish

    Thread Starter goopdevelopers

    (@goopdevelopers)

    Hey Pepe,

    Thank you very much for your response ??

    I have paused Cloudflare on this site and issued the SSL certificates through WP Engine (using Lets Encrypt) instead.

    I have enabled WooCommerce payments again (whilst keeping PayPal active just in case since this is a live site).

    I have popped through a test order and had no issues, however, the annoying thing is I have never been able to replicate the issue and none of our team have either, but real genuine users are having the issues.

    I’ll monitor this and see what sort of an impact it has!

    Thanks,
    Hamish

    Thread Starter goopdevelopers

    (@goopdevelopers)

    Please note, as a short term solution, we have disabled the WooCommerce Payments plugin and are currently using PayPal payments. This has resulted in no orders failing since making this change. Here is the fatal errors from when the WooCommerce Payments plugin was in use (30/11/2022)

    2022-11-30T00:02:49+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'fe-administrator',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/?wc-ajax=checkout',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T00:02:49+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions
    2022-11-30T00:02:49+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => '2637e934-6c15-410d-9eb8-da0e2cef1c7d',
    )
    2022-11-30T00:02:49+00:00 INFO BODY: array (
      'test_mode' => false,
      'amount' => 100,
      'currency' => 'aud',
      'confirm' => 'true',
      'payment_method' => 'pm_1M9dlD2HR3rQjavPOkR1uqdt',
      'customer' => 'cus_MoAwHgL5Ao8l2O',
      'capture_method' => 'automatic',
      'metadata' => 
      array (
        'customer_name' => '(redacted)',
        'customer_email' => '(redacted)',
        'site_url' => 'https://www.fifthelementdayspa.com.au',
        'order_id' => 11268,
        'order_number' => '11268',
        'order_key' => 'wc_order_omOVtDmi94tnX',
        'payment_type' => 'WCPay\\Constants\\Payment_Type()',
        'fraud_prevention_data_shopper_ip_hash' => '8e641a14c0fc9bed8cb2bfcc16e2a7dd735940b456a5f0feae5f95f4cfeb3fe3a58dd8d765516e9adb74e5259acfb0f59467442c5b0fe79a397f573b6ff2479c',
        'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
        'fraud_prevention_data_available' => true,
      ),
      'level3' => 
      array (
      ),
      'description' => 'Online Payment for Order #11268 for www.fifthelementdayspa.com.au blog_id 208137982',
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'is_platform_payment_method' => false,
    )
    2022-11-30T00:02:52+00:00 ERROR Your card number is incorrect. (incorrect_number)
    2022-11-30T00:02:55+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/wp-cron.php?doing_wp_cron=1669766574.5164439678192138671875',
      'HTTP_USER_AGENT' => 'WordPress/6.1.1; https://www.fifthelementdayspa.com.au',
      'REQUEST_URI' => '/wp-cron.php?doing_wp_cron=1669766574.5164439678192138671875',
      'DOING_AJAX' => false,
      'DOING_CRON' => true,
      'WP_CLI' => false,
    )
    2022-11-30T00:02:55+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/customers/cus_MoAwHgL5Ao8l2O
    2022-11-30T00:02:55+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => 'f530a7fe-add9-4217-ab4c-0024a1f6a870',
    )
    2022-11-30T00:02:55+00:00 INFO BODY: array (
      'test_mode' => false,
      'name' => '(redacted)',
      'description' => 'Name: Goop Digital, Username: fe-administrator',
      'email' => '(redacted)',
      'phone' => '(redacted)',
      'address' => 
      array (
        'line1' => '(redacted)',
        'line2' => '(redacted)',
        'postal_code' => '(redacted)',
        'city' => '(redacted)',
        'state' => '(redacted)',
        'country' => '(redacted)',
      ),
    )
    2022-11-30T00:02:55+00:00 DEBUG Webhook received: payment_intent.payment_failed
    2022-11-30T00:02:55+00:00 DEBUG Webhook body: array (
      'id' => 'evt_3M9dlG2HR3rQjavP1k0wDgHv',
      'type' => 'payment_intent.payment_failed',
      'livemode' => true,
      'account' => 'acct_1LDJjP2HR3rQjavP',
      'data' => 
      array (
        'object' => 
        array (
          'id' => 'pi_3M9dlG2HR3rQjavP1MK6L4aB',
          'object' => 'payment_intent',
          'amount' => 100,
          'amount_capturable' => 0,
          'amount_details' => 
          array (
            'tip' => 
            array (
            ),
          ),
          'amount_received' => 0,
          'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
          'application_fee_amount' => 33,
          'automatic_payment_methods' => NULL,
          'canceled_at' => NULL,
          'cancellation_reason' => NULL,
          'capture_method' => 'automatic',
          'charges' => 
          array (
            'object' => 'list',
            'data' => 
            array (
              0 => 
              array (
                'id' => 'ch_3M9dlG2HR3rQjavP1LShPncN',
                'object' => 'charge',
                'amount' => 100,
                'amount_captured' => 0,
                'amount_refunded' => 0,
                'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
                'application_fee' => NULL,
                'application_fee_amount' => 33,
                'balance_transaction' => NULL,
                'billing_details' => 
                array (
                  'address' => 
                  array (
                    'city' => '(redacted)',
                    'country' => '(redacted)',
                    'line1' => '(redacted)',
                    'line2' => '(redacted)',
                    'postal_code' => '(redacted)',
                    'state' => '(redacted)',
                  ),
                  'email' => '(redacted)',
                  'name' => '(redacted)',
                  'phone' => '(redacted)',
                ),
                'calculated_statement_descriptor' => 'FIFTHELEMENTDAYSPA',
                'captured' => false,
                'created' => 1669766570,
                'currency' => 'aud',
                'customer' => 'cus_MoAwHgL5Ao8l2O',
                'description' => 'Online Payment for Order #11268 for www.fifthelementdayspa.com.au blog_id 208137982',
                'destination' => NULL,
                'dispute' => NULL,
                'disputed' => false,
                'failure_balance_transaction' => NULL,
                'failure_code' => 'incorrect_number',
                'failure_message' => 'Your card number is incorrect.',
                'fraud_details' => 
                array (
                ),
                'invoice' => NULL,
                'livemode' => true,
                'metadata' => 
                array (
                  'order_key' => 'wc_order_omOVtDmi94tnX',
                  'fraud_prevention_data_available' => '1',
                  'site_url' => 'https://www.fifthelementdayspa.com.au',
                  'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
                  'customer_email' => '(redacted)',
                  'fraud_prevention_data_shopper_ip_hash' => '8e641a14c0fc9bed8cb2bfcc16e2a7dd735940b456a5f0feae5f95f4cfeb3fe3a58dd8d765516e9adb74e5259acfb0f59467442c5b0fe79a397f573b6ff2479c',
                  'order_number' => '11268',
                  'customer_name' => '(redacted)',
                  'order_id' => '11268',
                  'payment_type' => 'single',
                ),
                'on_behalf_of' => NULL,
                'order' => NULL,
                'outcome' => 
                array (
                  'network_status' => 'declined_by_network',
                  'reason' => 'incorrect_number',
                  'risk_level' => 'normal',
                  'seller_message' => 'The bank returned the decline code <code>incorrect_number</code>.',
                  'type' => 'issuer_declined',
                ),
                'paid' => false,
                'payment_intent' => 'pi_3M9dlG2HR3rQjavP1MK6L4aB',
                'payment_method' => 'pm_1M9dlD2HR3rQjavPOkR1uqdt',
                'payment_method_details' => 
                array (
                  'card' => 
                  array (
                    'brand' => 'mastercard',
                    'checks' => 
                    array (
                      'address_line1_check' => 'unavailable',
                      'address_postal_code_check' => 'unavailable',
                      'cvc_check' => 'unavailable',
                    ),
                    'country' => '(redacted)',
                    'exp_month' => 3,
                    'exp_year' => 2025,
                    'fingerprint' => 'Gn5gIghVKNYg4W1B',
                    'funding' => 'debit',
                    'installments' => NULL,
                    'last4' => '3381',
                    'mandate' => NULL,
                    'network' => 'mastercard',
                    'three_d_secure' => NULL,
                    'wallet' => NULL,
                  ),
                  'type' => 'card',
                ),
                'receipt_email' => NULL,
                'receipt_number' => NULL,
                'receipt_url' => NULL,
                'refunded' => false,
                'refunds' => 
                array (
                  'object' => 'list',
                  'data' => 
                  array (
                  ),
                  'has_more' => false,
                  'total_count' => 0,
                  'url' => '/v1/charges/ch_3M9dlG2HR3rQjavP1LShPncN/refunds',
                ),
                'review' => NULL,
                'shipping' => NULL,
                'source' => NULL,
                'source_transfer' => NULL,
                'statement_descriptor' => NULL,
                'statement_descriptor_suffix' => NULL,
                'status' => 'failed',
                'transfer_data' => NULL,
                'transfer_group' => NULL,
              ),
            ),
            'has_more' => false,
            'total_count' => 1,
            'url' => '/v1/charges?payment_intent=pi_3M9dlG2HR3rQjavP1MK6L4aB',
          ),
          'client_secret' => '(redacted)',
          'confirmation_method' => 'automatic',
          'created' => 1669766570,
          'currency' => 'aud',
          'customer' => 'cus_MoAwHgL5Ao8l2O',
          'description' => 'Online Payment for Order #11268 for www.fifthelementdayspa.com.au blog_id 208137982',
          'invoice' => NULL,
          'last_payment_error' => 
          array (
            'charge' => 'ch_3M9dlG2HR3rQjavP1LShPncN',
            'code' => 'incorrect_number',
            'doc_url' => 'https://stripe.com/docs/error-codes/incorrect-number',
            'message' => 'Your card number is incorrect.',
            'param' => 'number',
            'payment_method' => 
            array (
              'id' => 'pm_1M9dlD2HR3rQjavPOkR1uqdt',
              'object' => 'payment_method',
              'billing_details' => 
              array (
                'address' => 
                array (
                  'city' => '(redacted)',
                  'country' => '(redacted)',
                  'line1' => '(redacted)',
                  'line2' => '(redacted)',
                  'postal_code' => '(redacted)',
                  'state' => '(redacted)',
                ),
                'email' => '(redacted)',
                'name' => '(redacted)',
                'phone' => '(redacted)',
              ),
              'card' => 
              array (
                'brand' => 'mastercard',
                'checks' => 
                array (
                  'address_line1_check' => 'unavailable',
                  'address_postal_code_check' => 'unavailable',
                  'cvc_check' => 'unavailable',
                ),
                'country' => '(redacted)',
                'exp_month' => 3,
                'exp_year' => 2025,
                'fingerprint' => 'Gn5gIghVKNYg4W1B',
                'funding' => 'debit',
                'generated_from' => NULL,
                'last4' => '3381',
                'networks' => 
                array (
                  'available' => 
                  array (
                    0 => 'mastercard',
                  ),
                  'preferred' => NULL,
                ),
                'three_d_secure_usage' => 
                array (
                  'supported' => true,
                ),
                'wallet' => NULL,
              ),
              'created' => 1669766567,
              'customer' => NULL,
              'livemode' => true,
              'metadata' => 
              array (
              ),
              'type' => 'card',
            ),
            'type' => 'card_error',
          ),
          'livemode' => true,
          'metadata' => 
          array (
            'order_key' => 'wc_order_omOVtDmi94tnX',
            'fraud_prevention_data_available' => '1',
            'site_url' => 'https://www.fifthelementdayspa.com.au',
            'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
            'customer_email' => '(redacted)',
            'fraud_prevention_data_shopper_ip_hash' => '8e641a14c0fc9bed8cb2bfcc16e2a7dd735940b456a5f0feae5f95f4cfeb3fe3a58dd8d765516e9adb74e5259acfb0f59467442c5b0fe79a397f573b6ff2479c',
            'order_number' => '11268',
            'customer_name' => '(redacted)',
            'order_id' => '11268',
            'payment_type' => 'single',
          ),
          'next_action' => NULL,
          'on_behalf_of' => NULL,
          'payment_method' => NULL,
          'payment_method_options' => 
          array (
            'card' => 
            array (
              'installments' => NULL,
              'mandate_options' => NULL,
              'network' => NULL,
              'request_three_d_secure' => 'automatic',
            ),
          ),
          'payment_method_types' => 
          array (
            0 => 'card',
          ),
          'processing' => NULL,
          'receipt_email' => NULL,
          'review' => NULL,
          'setup_future_usage' => NULL,
          'shipping' => NULL,
          'source' => NULL,
          'statement_descriptor' => NULL,
          'statement_descriptor_suffix' => NULL,
          'status' => 'requires_payment_method',
          'transfer_data' => NULL,
          'transfer_group' => NULL,
          'amount_subtotal' => 100,
          'level3' => NULL,
          'total_details' => 
          array (
            'amount_discount' => 0,
            'amount_tax' => 0,
          ),
        ),
      ),
    )
    2022-11-30T00:02:56+00:00 INFO RESPONSE: array (
      'id' => 'cus_MoAwHgL5Ao8l2O',
      'object' => 'customer',
      'address' => 
      array (
        'city' => '(redacted)',
        'country' => '(redacted)',
        'line1' => '(redacted)',
        'line2' => '(redacted)',
        'postal_code' => '(redacted)',
        'state' => '(redacted)',
      ),
      'balance' => 0,
      'created' => 1668555022,
      'currency' => NULL,
      'default_currency' => NULL,
      'default_source' => NULL,
      'delinquent' => false,
      'description' => 'Name: Goop Digital, Username: fe-administrator',
      'discount' => NULL,
      'email' => '(redacted)',
      'invoice_prefix' => 'B7FBA32E',
      'invoice_settings' => 
      array (
        'custom_fields' => NULL,
        'default_payment_method' => 'pm_1M9JAw2HR3rQjavPKWRZCzLL',
        'footer' => NULL,
        'rendering_options' => NULL,
      ),
      'livemode' => true,
      'metadata' => 'stdClass()',
      'name' => '(redacted)',
      'next_invoice_sequence' => 1,
      'phone' => '(redacted)',
      'preferred_locales' => 
      array (
      ),
      'shipping' => NULL,
      'tax_exempt' => 'none',
      'test_clock' => NULL,
    )
    2022-11-30T00:03:33+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/wp-cron.php?doing_wp_cron=1669766612.5355610847473144531250',
      'HTTP_USER_AGENT' => 'WordPress/6.1.1; https://www.fifthelementdayspa.com.au',
      'REQUEST_URI' => '/wp-cron.php?doing_wp_cron=1669766612.5355610847473144531250',
      'DOING_AJAX' => false,
      'DOING_CRON' => true,
      'WP_CLI' => false,
    )
    2022-11-30T00:03:33+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/tracking/order
    2022-11-30T00:03:33+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => '38a4d8d1-2e9a-4811-9603-e8a9fa6b9753',
    )
    2022-11-30T00:03:33+00:00 INFO BODY: array (
      'test_mode' => false,
      'order_data' => 
      array (
        'id' => 11268,
        'parent_id' => 0,
        'status' => 'failed',
        'currency' => 'AUD',
        'version' => '7.1.0',
        'prices_include_tax' => false,
        'date_created' => 'WC_DateTime()',
        'date_modified' => 'WC_DateTime()',
        'discount_total' => '0',
        'discount_tax' => '0',
        'shipping_total' => '0',
        'shipping_tax' => '0',
        'cart_tax' => '0',
        'total' => '1.00',
        'total_tax' => '0',
        'customer_id' => 3,
        'order_key' => 'wc_order_omOVtDmi94tnX',
        'billing' => 
        array (
          'first_name' => 'Goop',
          'last_name' => 'Digital',
          'company' => '',
          'address_1' => '123 Fake Street',
          'address_2' => 'Goop Digital',
          'city' => '(redacted)',
          'state' => '(redacted)',
          'postcode' => '3228',
          'country' => '(redacted)',
          'email' => '(redacted)',
          'phone' => '(redacted)',
        ),
        'shipping' => 
        array (
          'first_name' => '',
          'last_name' => '',
          'company' => '',
          'address_1' => '',
          'address_2' => '',
          'city' => '(redacted)',
          'state' => '(redacted)',
          'postcode' => '',
          'country' => '(redacted)',
          'phone' => '(redacted)',
        ),
        'payment_method' => 'woocommerce_payments',
        'payment_method_title' => 'Credit card / debit card',
        'transaction_id' => '',
        'customer_ip_address' => '180.150.21.49',
        'customer_user_agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
        'created_via' => 'checkout',
        'customer_note' => '',
        'date_completed' => NULL,
        'date_paid' => NULL,
        'cart_hash' => '545958a198a1c800d4c833aeb86511fd',
        'order_stock_reduced' => false,
        'download_permissions_granted' => false,
        'new_order_email_sent' => false,
        'recorded_sales' => false,
        'recorded_coupon_usage_counts' => false,
        'number' => '11268',
        'meta_data' => 
        array (
          0 => 'WC_Meta_Data()',
          1 => 'WC_Meta_Data()',
          2 => 'WC_Meta_Data()',
          3 => 'WC_Meta_Data()',
        ),
        'line_items' => 
        array (
          19571 => 'WC_Order_Item_Product()',
        ),
        'tax_lines' => 
        array (
        ),
        'shipping_lines' => 
        array (
        ),
        'fee_lines' => 
        array (
        ),
        'coupon_lines' => 
        array (
        ),
        '_payment_method_id' => 'pm_1M9dlD2HR3rQjavPOkR1uqdt',
        '_stripe_customer_id' => 'cus_MoAwHgL5Ao8l2O',
        '_wcpay_mode' => 'prod',
      ),
      'update' => false,
    )
    2022-11-30T00:03:34+00:00 INFO RESPONSE: array (
      'result' => 'success',
    )
    2022-11-30T00:03:50+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'fe-administrator',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/?wc-ajax=checkout',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T00:03:50+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions
    2022-11-30T00:03:50+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => '8e15511d-832c-4193-8f24-1e91709d55ef',
    )
    2022-11-30T00:03:50+00:00 INFO BODY: array (
      'test_mode' => false,
      'amount' => 100,
      'currency' => 'aud',
      'confirm' => 'true',
      'payment_method' => 'pm_1M9dmD2HR3rQjavPgIBhqAJL',
      'customer' => 'cus_MoAwHgL5Ao8l2O',
      'capture_method' => 'automatic',
      'metadata' => 
      array (
        'customer_name' => '(redacted)',
        'customer_email' => '(redacted)',
        'site_url' => 'https://www.fifthelementdayspa.com.au',
        'order_id' => 11268,
        'order_number' => '11268',
        'order_key' => 'wc_order_omOVtDmi94tnX',
        'payment_type' => 'WCPay\\Constants\\Payment_Type()',
        'fraud_prevention_data_shopper_ip_hash' => '8e641a14c0fc9bed8cb2bfcc16e2a7dd735940b456a5f0feae5f95f4cfeb3fe3a58dd8d765516e9adb74e5259acfb0f59467442c5b0fe79a397f573b6ff2479c',
        'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
        'fraud_prevention_data_available' => true,
      ),
      'level3' => 
      array (
      ),
      'description' => 'Online Payment for Order #11268 for www.fifthelementdayspa.com.au blog_id 208137982',
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'is_platform_payment_method' => false,
    )
    2022-11-30T00:03:53+00:00 INFO RESPONSE: array (
      'id' => 'pi_3M9dmF2HR3rQjavP01N1rXOQ',
      'object' => 'payment_intent',
      'amount' => 100,
      'amount_capturable' => 0,
      'amount_details' => 
      array (
        'tip' => 
        array (
        ),
      ),
      'amount_received' => 100,
      'amount_subtotal' => 100,
      'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
      'application_fee_amount' => 32,
      'automatic_payment_methods' => NULL,
      'canceled_at' => NULL,
      'cancellation_reason' => NULL,
      'capture_method' => 'automatic',
      'charges' => 
      array (
        'object' => 'list',
        'data' => 
        array (
          0 => 
          array (
            'id' => 'ch_3M9dmF2HR3rQjavP0fwZdjVl',
            'object' => 'charge',
            'amount' => 100,
            'amount_captured' => 100,
            'amount_refunded' => 0,
            'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
            'application_fee' => 'fee_1M9dmG2HR3rQjavPYLYXjot6',
            'application_fee_amount' => 32,
            'balance_transaction' => 
            array (
              'id' => 'txn_3M9dmF2HR3rQjavP0srUVtnH',
              'object' => 'balance_transaction',
              'amount' => 100,
              'available_on' => 1669939200,
              'created' => 1669766631,
              'currency' => 'aud',
              'description' => 'Online Payment for Order #11268 for www.fifthelementdayspa.com.au blog_id 208137982',
              'exchange_rate' => NULL,
              'fee' => 32,
              'fee_details' => 
              array (
                0 => 
                array (
                  'amount' => 32,
                  'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
                  'currency' => 'aud',
                  'description' => 'WooCommerce Payments application fee',
                  'type' => 'application_fee',
                ),
              ),
              'net' => 68,
              'reporting_category' => 'charge',
              'source' => 'ch_3M9dmF2HR3rQjavP0fwZdjVl',
              'status' => 'pending',
              'type' => 'charge',
            ),
            'billing_details' => 
            array (
              'address' => 
              array (
                'city' => '(redacted)',
                'country' => '(redacted)',
                'line1' => '(redacted)',
                'line2' => '(redacted)',
                'postal_code' => '(redacted)',
                'state' => '(redacted)',
              ),
              'email' => '(redacted)',
              'name' => '(redacted)',
              'phone' => '(redacted)',
            ),
            'calculated_statement_descriptor' => 'FIFTHELEMENTDAYSPA',
            'captured' => true,
            'created' => 1669766631,
            'currency' => 'aud',
            'customer' => 'cus_MoAwHgL5Ao8l2O',
            'description' => 'Online Payment for Order #11268 for www.fifthelementdayspa.com.au blog_id 208137982',
            'destination' => NULL,
            'dispute' => NULL,
            'disputed' => false,
            'failure_balance_transaction' => NULL,
            'failure_code' => NULL,
            'failure_message' => NULL,
            'fraud_details' => 
            array (
            ),
            'invoice' => NULL,
            'livemode' => true,
            'metadata' => 
            array (
              'customer_email' => '(redacted)',
              'customer_name' => '(redacted)',
              'fraud_prevention_data_available' => '1',
              'fraud_prevention_data_shopper_ip_hash' => '8e641a14c0fc9bed8cb2bfcc16e2a7dd735940b456a5f0feae5f95f4cfeb3fe3a58dd8d765516e9adb74e5259acfb0f59467442c5b0fe79a397f573b6ff2479c',
              'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
              'order_id' => '11268',
              'order_key' => 'wc_order_omOVtDmi94tnX',
              'order_number' => '11268',
              'payment_type' => 'single',
              'site_url' => 'https://www.fifthelementdayspa.com.au',
            ),
            'on_behalf_of' => NULL,
            'order' => NULL,
            'outcome' => 
            array (
              'network_status' => 'approved_by_network',
              'reason' => NULL,
              'risk_level' => 'normal',
              'seller_message' => 'Payment complete.',
              'type' => 'authorized',
            ),
            'paid' => true,
            'payment_intent' => 'pi_3M9dmF2HR3rQjavP01N1rXOQ',
            'payment_method' => 'pm_1M9dmD2HR3rQjavPgIBhqAJL',
            'payment_method_details' => 
            array (
              'card' => 
              array (
                'brand' => 'mastercard',
                'checks' => 
                array (
                  'address_line1_check' => 'unavailable',
                  'address_postal_code_check' => 'unavailable',
                  'cvc_check' => 'pass',
                ),
                'country' => '(redacted)',
                'exp_month' => 3,
                'exp_year' => 2025,
                'fingerprint' => 'PC1sND2f7GCS7t6s',
                'funding' => 'debit',
                'installments' => NULL,
                'last4' => '3381',
                'mandate' => NULL,
                'network' => 'mastercard',
                'three_d_secure' => NULL,
                'wallet' => NULL,
              ),
              'type' => 'card',
            ),
            'receipt_email' => NULL,
            'receipt_number' => NULL,
            'receipt_url' => 'https://pay.stripe.com/receipts/payment/CAcQARoXChVhY2N0XzFMREpqUDJIUjNyUWphdlAo6buanAYyBua6AI1gKzosFubO4lOHJ-lMAe7FXfNUEC579VXWHXVffxIN6oKI9wKEu59wD2bI2iAp9SE',
            'refunded' => false,
            'refunds' => 
            array (
              'object' => 'list',
              'data' => 
              array (
              ),
              'has_more' => false,
              'total_count' => 0,
              'url' => '/v1/charges/ch_3M9dmF2HR3rQjavP0fwZdjVl/refunds',
            ),
            'review' => NULL,
            'shipping' => NULL,
            'source' => NULL,
            'source_transfer' => NULL,
            'statement_descriptor' => NULL,
            'statement_descriptor_suffix' => NULL,
            'status' => 'succeeded',
            'transfer_data' => NULL,
            'transfer_group' => NULL,
          ),
        ),
        'has_more' => false,
        'total_count' => 1,
        'url' => '/v1/charges?payment_intent=pi_3M9dmF2HR3rQjavP01N1rXOQ',
      ),
      'client_secret' => '(redacted)',
      'confirmation_method' => 'automatic',
      'created' => 1669766631,
      'currency' => 'aud',
      'customer' => 'cus_MoAwHgL5Ao8l2O',
      'description' => 'Online Payment for Order #11268 for www.fifthelementdayspa.com.au blog_id 208137982',
      'invoice' => NULL,
      'last_payment_error' => NULL,
      'level3' => NULL,
      'livemode' => true,
      'metadata' => 
      array (
        'customer_email' => '(redacted)',
        'customer_name' => '(redacted)',
        'fraud_prevention_data_available' => '1',
        'fraud_prevention_data_shopper_ip_hash' => '8e641a14c0fc9bed8cb2bfcc16e2a7dd735940b456a5f0feae5f95f4cfeb3fe3a58dd8d765516e9adb74e5259acfb0f59467442c5b0fe79a397f573b6ff2479c',
        'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
        'order_id' => '11268',
        'order_key' => 'wc_order_omOVtDmi94tnX',
        'order_number' => '11268',
        'payment_type' => 'single',
        'site_url' => 'https://www.fifthelementdayspa.com.au',
      ),
      'next_action' => NULL,
      'on_behalf_of' => NULL,
      'payment_method' => 'pm_1M9dmD2HR3rQjavPgIBhqAJL',
      'payment_method_options' => 
      array (
        'card' => 
        array (
          'installments' => NULL,
          'mandate_options' => NULL,
          'network' => NULL,
          'request_three_d_secure' => 'automatic',
        ),
      ),
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'processing' => NULL,
      'receipt_email' => NULL,
      'review' => NULL,
      'setup_future_usage' => NULL,
      'shipping' => NULL,
      'source' => NULL,
      'statement_descriptor' => NULL,
      'statement_descriptor_suffix' => NULL,
      'status' => 'succeeded',
      'total_details' => 
      array (
        'amount_discount' => 0,
        'amount_tax' => 0,
      ),
      'transfer_data' => NULL,
      'transfer_group' => NULL,
      'fee_history' => 
      array (
        0 => 
        array (
          'type' => 'base',
          'fee_id' => 'base-au-fee',
          'percentage_rate' => 0.0175,
          'fixed_rate' => 30,
          'currency' => 'aud',
        ),
      ),
    )
    2022-11-30T00:03:56+00:00 DEBUG Webhook received: payment_intent.succeeded
    2022-11-30T00:03:56+00:00 DEBUG Webhook body: array (
      'id' => 'evt_3M9dmF2HR3rQjavP0989jBep',
      'type' => 'payment_intent.succeeded',
      'livemode' => true,
      'account' => 'acct_1LDJjP2HR3rQjavP',
      'data' => 
      array (
        'object' => 
        array (
          'id' => 'pi_3M9dmF2HR3rQjavP01N1rXOQ',
          'object' => 'payment_intent',
          'amount' => 100,
          'amount_capturable' => 0,
          'amount_details' => 
          array (
            'tip' => 
            array (
            ),
          ),
          'amount_received' => 100,
          'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
          'application_fee_amount' => 32,
          'automatic_payment_methods' => NULL,
          'canceled_at' => NULL,
          'cancellation_reason' => NULL,
          'capture_method' => 'automatic',
          'charges' => 
          array (
            'object' => 'list',
            'data' => 
            array (
              0 => 
              array (
                'id' => 'ch_3M9dmF2HR3rQjavP0fwZdjVl',
                'object' => 'charge',
                'amount' => 100,
                'amount_captured' => 100,
                'amount_refunded' => 0,
                'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
                'application_fee' => 'fee_1M9dmG2HR3rQjavPYLYXjot6',
                'application_fee_amount' => 32,
                'balance_transaction' => 'txn_3M9dmF2HR3rQjavP0srUVtnH',
                'billing_details' => 
                array (
                  'address' => 
                  array (
                    'city' => '(redacted)',
                    'country' => '(redacted)',
                    'line1' => '(redacted)',
                    'line2' => '(redacted)',
                    'postal_code' => '(redacted)',
                    'state' => '(redacted)',
                  ),
                  'email' => '(redacted)',
                  'name' => '(redacted)',
                  'phone' => '(redacted)',
                ),
                'calculated_statement_descriptor' => 'FIFTHELEMENTDAYSPA',
                'captured' => true,
                'created' => 1669766631,
                'currency' => 'aud',
                'customer' => 'cus_MoAwHgL5Ao8l2O',
                'description' => 'Online Payment for Order #11268 for www.fifthelementdayspa.com.au blog_id 208137982',
                'destination' => NULL,
                'dispute' => NULL,
                'disputed' => false,
                'failure_balance_transaction' => NULL,
                'failure_code' => NULL,
                'failure_message' => NULL,
                'fraud_details' => 
                array (
                ),
                'invoice' => NULL,
                'livemode' => true,
                'metadata' => 
                array (
                  'order_key' => 'wc_order_omOVtDmi94tnX',
                  'fraud_prevention_data_available' => '1',
                  'site_url' => 'https://www.fifthelementdayspa.com.au',
                  'customer_email' => '(redacted)',
                  'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
                  'fraud_prevention_data_shopper_ip_hash' => '8e641a14c0fc9bed8cb2bfcc16e2a7dd735940b456a5f0feae5f95f4cfeb3fe3a58dd8d765516e9adb74e5259acfb0f59467442c5b0fe79a397f573b6ff2479c',
                  'order_number' => '11268',
                  'customer_name' => '(redacted)',
                  'order_id' => '11268',
                  'payment_type' => 'single',
                ),
                'on_behalf_of' => NULL,
                'order' => NULL,
                'outcome' => 
                array (
                  'network_status' => 'approved_by_network',
                  'reason' => NULL,
                  'risk_level' => 'normal',
                  'seller_message' => 'Payment complete.',
                  'type' => 'authorized',
                ),
                'paid' => true,
                'payment_intent' => 'pi_3M9dmF2HR3rQjavP01N1rXOQ',
                'payment_method' => 'pm_1M9dmD2HR3rQjavPgIBhqAJL',
                'payment_method_details' => 
                array (
                  'card' => 
                  array (
                    'brand' => 'mastercard',
                    'checks' => 
                    array (
                      'address_line1_check' => 'unavailable',
                      'address_postal_code_check' => 'unavailable',
                      'cvc_check' => 'pass',
                    ),
                    'country' => '(redacted)',
                    'exp_month' => 3,
                    'exp_year' => 2025,
                    'fingerprint' => 'PC1sND2f7GCS7t6s',
                    'funding' => 'debit',
                    'installments' => NULL,
                    'last4' => '3381',
                    'mandate' => NULL,
                    'network' => 'mastercard',
                    'three_d_secure' => NULL,
                    'wallet' => NULL,
                  ),
                  'type' => 'card',
                ),
                'receipt_email' => NULL,
                'receipt_number' => NULL,
                'receipt_url' => 'https://pay.stripe.com/receipts/payment/CAcQARoXChVhY2N0XzFMREpqUDJIUjNyUWphdlAo6buanAYyBqSjD5e6ozosFrAXLD8VjC7Mmg1_uZL8f1t7DB-sUvmYGkIuGZCxqdVEJTIZPfSgFBSUTTQ',
                'refunded' => false,
                'refunds' => 
                array (
                  'object' => 'list',
                  'data' => 
                  array (
                  ),
                  'has_more' => false,
                  'total_count' => 0,
                  'url' => '/v1/charges/ch_3M9dmF2HR3rQjavP0fwZdjVl/refunds',
                ),
                'review' => NULL,
                'shipping' => NULL,
                'source' => NULL,
                'source_transfer' => NULL,
                'statement_descriptor' => NULL,
                'statement_descriptor_suffix' => NULL,
                'status' => 'succeeded',
                'transfer_data' => NULL,
                'transfer_group' => NULL,
              ),
            ),
            'has_more' => false,
            'total_count' => 1,
            'url' => '/v1/charges?payment_intent=pi_3M9dmF2HR3rQjavP01N1rXOQ',
          ),
          'client_secret' => '(redacted)',
          'confirmation_method' => 'automatic',
          'created' => 1669766631,
          'currency' => 'aud',
          'customer' => 'cus_MoAwHgL5Ao8l2O',
          'description' => 'Online Payment for Order #11268 for www.fifthelementdayspa.com.au blog_id 208137982',
          'invoice' => NULL,
          'last_payment_error' => NULL,
          'livemode' => true,
          'metadata' => 
          array (
            'order_key' => 'wc_order_omOVtDmi94tnX',
            'fraud_prevention_data_available' => '1',
            'site_url' => 'https://www.fifthelementdayspa.com.au',
            'customer_email' => '(redacted)',
            'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
            'fraud_prevention_data_shopper_ip_hash' => '8e641a14c0fc9bed8cb2bfcc16e2a7dd735940b456a5f0feae5f95f4cfeb3fe3a58dd8d765516e9adb74e5259acfb0f59467442c5b0fe79a397f573b6ff2479c',
            'order_number' => '11268',
            'customer_name' => '(redacted)',
            'order_id' => '11268',
            'payment_type' => 'single',
          ),
          'next_action' => NULL,
          'on_behalf_of' => NULL,
          'payment_method' => 'pm_1M9dmD2HR3rQjavPgIBhqAJL',
          'payment_method_options' => 
          array (
            'card' => 
            array (
              'installments' => NULL,
              'mandate_options' => NULL,
              'network' => NULL,
              'request_three_d_secure' => 'automatic',
            ),
          ),
          'payment_method_types' => 
          array (
            0 => 'card',
          ),
          'processing' => NULL,
          'receipt_email' => NULL,
          'review' => NULL,
          'setup_future_usage' => NULL,
          'shipping' => NULL,
          'source' => NULL,
          'statement_descriptor' => NULL,
          'statement_descriptor_suffix' => NULL,
          'status' => 'succeeded',
          'transfer_data' => NULL,
          'transfer_group' => NULL,
          'amount_subtotal' => 100,
          'level3' => NULL,
          'total_details' => 
          array (
            'amount_discount' => 0,
            'amount_tax' => 0,
          ),
        ),
      ),
    )
    2022-11-30T00:04:42+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/wp-cron.php?doing_wp_cron=1669766681.9652879238128662109375',
      'HTTP_USER_AGENT' => 'WordPress/6.1.1; https://www.fifthelementdayspa.com.au',
      'REQUEST_URI' => '/wp-cron.php?doing_wp_cron=1669766681.9652879238128662109375',
      'DOING_AJAX' => false,
      'DOING_CRON' => true,
      'WP_CLI' => false,
    )
    2022-11-30T00:04:42+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/customers/cus_MoAwHgL5Ao8l2O
    2022-11-30T00:04:42+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => 'bdc753a6-2f21-44ad-90cb-767600a70a50',
    )
    2022-11-30T00:04:42+00:00 INFO BODY: array (
      'test_mode' => false,
      'name' => '(redacted)',
      'description' => 'Name: Goop Digital, Username: fe-administrator',
      'email' => '(redacted)',
      'phone' => '(redacted)',
      'address' => 
      array (
        'line1' => '(redacted)',
        'line2' => '(redacted)',
        'postal_code' => '(redacted)',
        'city' => '(redacted)',
        'state' => '(redacted)',
        'country' => '(redacted)',
      ),
    )
    2022-11-30T00:04:43+00:00 INFO RESPONSE: array (
      'id' => 'cus_MoAwHgL5Ao8l2O',
      'object' => 'customer',
      'address' => 
      array (
        'city' => '(redacted)',
        'country' => '(redacted)',
        'line1' => '(redacted)',
        'line2' => '(redacted)',
        'postal_code' => '(redacted)',
        'state' => '(redacted)',
      ),
      'balance' => 0,
      'created' => 1668555022,
      'currency' => NULL,
      'default_currency' => NULL,
      'default_source' => NULL,
      'delinquent' => false,
      'description' => 'Name: Goop Digital, Username: fe-administrator',
      'discount' => NULL,
      'email' => '(redacted)',
      'invoice_prefix' => 'B7FBA32E',
      'invoice_settings' => 
      array (
        'custom_fields' => NULL,
        'default_payment_method' => 'pm_1M9JAw2HR3rQjavPKWRZCzLL',
        'footer' => NULL,
        'rendering_options' => NULL,
      ),
      'livemode' => true,
      'metadata' => 'stdClass()',
      'name' => '(redacted)',
      'next_invoice_sequence' => 1,
      'phone' => '(redacted)',
      'preferred_locales' => 
      array (
      ),
      'shipping' => NULL,
      'tax_exempt' => 'none',
      'test_clock' => NULL,
    )
    2022-11-30T00:04:43+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/wp-cron.php?doing_wp_cron=1669766681.9652879238128662109375',
      'HTTP_USER_AGENT' => 'WordPress/6.1.1; https://www.fifthelementdayspa.com.au',
      'REQUEST_URI' => '/wp-cron.php?doing_wp_cron=1669766681.9652879238128662109375',
      'DOING_AJAX' => false,
      'DOING_CRON' => true,
      'WP_CLI' => false,
    )
    2022-11-30T00:04:43+00:00 INFO REQUEST GET https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/timeline/pi_3M9dmF2HR3rQjavP01N1rXOQ?test_mode=0
    2022-11-30T00:04:43+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
    )
    2022-11-30T00:04:44+00:00 INFO RESPONSE: array (
      'data' => 
      array (
        0 => 
        array (
          'type' => 'captured',
          'amount' => 100,
          'fee' => 32,
          'fee_rates' => 
          array (
            'percentage' => 0.0175,
            'fixed' => 30,
            'fixed_currency' => 'AUD',
            'history' => 
            array (
              0 => 
              array (
                'type' => 'base',
                'fee_id' => 'base-au-fee',
                'percentage_rate' => 0.0175,
                'fixed_rate' => 30,
                'currency' => 'aud',
              ),
            ),
          ),
          'currency' => 'AUD',
          'datetime' => 1669766631,
          'deposit' => 
          array (
            'id' => 'wcpay_estimated_daily_aud_1669939200',
            'arrival_date' => '1669939200',
          ),
          'transaction_id' => 'txn_3M9dmF2HR3rQjavP0srUVtnH',
          'transaction_details' => 
          array (
            'customer_currency' => 'AUD',
            'customer_amount' => 100,
            'customer_fee' => 32,
            'store_currency' => 'AUD',
            'store_amount' => 100,
            'store_fee' => 32,
          ),
        ),
        1 => 
        array (
          'type' => 'authorized',
          'datetime' => 1669766631,
          'amount' => 100,
          'currency' => 'AUD',
        ),
      ),
    )
    2022-11-30T00:04:45+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/wp-cron.php?doing_wp_cron=1669766681.9652879238128662109375',
      'HTTP_USER_AGENT' => 'WordPress/6.1.1; https://www.fifthelementdayspa.com.au',
      'REQUEST_URI' => '/wp-cron.php?doing_wp_cron=1669766681.9652879238128662109375',
      'DOING_AJAX' => false,
      'DOING_CRON' => true,
      'WP_CLI' => false,
    )
    2022-11-30T00:04:45+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/tracking/order
    2022-11-30T00:04:45+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => '99b02bfe-bfa8-4194-acf4-29cf0abc6751',
    )
    2022-11-30T00:04:45+00:00 INFO BODY: array (
      'test_mode' => false,
      'order_data' => 
      array (
        'id' => 11268,
        'parent_id' => 0,
        'status' => 'processing',
        'currency' => 'AUD',
        'version' => '7.1.0',
        'prices_include_tax' => false,
        'date_created' => 'WC_DateTime()',
        'date_modified' => 'WC_DateTime()',
        'discount_total' => '0',
        'discount_tax' => '0',
        'shipping_total' => '0',
        'shipping_tax' => '0',
        'cart_tax' => '0',
        'total' => '1.00',
        'total_tax' => '0',
        'customer_id' => 3,
        'order_key' => 'wc_order_omOVtDmi94tnX',
        'billing' => 
        array (
          'first_name' => 'Goop',
          'last_name' => 'Digital',
          'company' => '',
          'address_1' => '123 Fake Street',
          'address_2' => 'Goop Digital',
          'city' => '(redacted)',
          'state' => '(redacted)',
          'postcode' => '3228',
          'country' => '(redacted)',
          'email' => '(redacted)',
          'phone' => '(redacted)',
        ),
        'shipping' => 
        array (
          'first_name' => '',
          'last_name' => '',
          'company' => '',
          'address_1' => '',
          'address_2' => '',
          'city' => '(redacted)',
          'state' => '(redacted)',
          'postcode' => '',
          'country' => '(redacted)',
          'phone' => '(redacted)',
        ),
        'payment_method' => 'woocommerce_payments',
        'payment_method_title' => 'Credit card / debit card',
        'transaction_id' => 'pi_3M9dmF2HR3rQjavP01N1rXOQ',
        'customer_ip_address' => '180.150.21.49',
        'customer_user_agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
        'created_via' => 'checkout',
        'customer_note' => '',
        'date_completed' => NULL,
        'date_paid' => 'WC_DateTime()',
        'cart_hash' => '545958a198a1c800d4c833aeb86511fd',
        'order_stock_reduced' => true,
        'download_permissions_granted' => true,
        'new_order_email_sent' => true,
        'recorded_sales' => true,
        'recorded_coupon_usage_counts' => true,
        'number' => '11268',
        'meta_data' => 
        array (
          0 => 'WC_Meta_Data()',
          1 => 'WC_Meta_Data()',
          2 => 'WC_Meta_Data()',
          3 => 'WC_Meta_Data()',
          4 => 'WC_Meta_Data()',
          5 => 'WC_Meta_Data()',
          6 => 'WC_Meta_Data()',
          7 => 'WC_Meta_Data()',
          8 => 'WC_Meta_Data()',
          9 => 'WC_Meta_Data()',
          10 => 'WC_Meta_Data()',
        ),
        'line_items' => 
        array (
          19572 => 'WC_Order_Item_Product()',
        ),
        'tax_lines' => 
        array (
        ),
        'shipping_lines' => 
        array (
        ),
        'fee_lines' => 
        array (
        ),
        'coupon_lines' => 
        array (
        ),
        '_payment_method_id' => 'pm_1M9dmD2HR3rQjavPgIBhqAJL',
        '_stripe_customer_id' => 'cus_MoAwHgL5Ao8l2O',
        '_wcpay_mode' => 'prod',
      ),
      'update' => true,
    )
    2022-11-30T00:04:45+00:00 INFO RESPONSE: array (
      'result' => 'success',
    )
    2022-11-30T00:04:58+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'fe-administrator',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/wp-admin/post.php?post=11268&action=edit',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/wp-admin/admin-ajax.php',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T00:04:58+00:00 INFO REQUEST GET https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/payment_methods/pm_1M9dmD2HR3rQjavPgIBhqAJL?test_mode=0
    2022-11-30T00:04:58+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
    )
    2022-11-30T00:04:59+00:00 INFO RESPONSE: array (
      'id' => 'pm_1M9dmD2HR3rQjavPgIBhqAJL',
      'object' => 'payment_method',
      'billing_details' => 
      array (
        'address' => 
        array (
          'city' => '(redacted)',
          'country' => '(redacted)',
          'line1' => '(redacted)',
          'line2' => '(redacted)',
          'postal_code' => '(redacted)',
          'state' => '(redacted)',
        ),
        'email' => '(redacted)',
        'name' => '(redacted)',
        'phone' => '(redacted)',
      ),
      'card' => 
      array (
        'brand' => 'mastercard',
        'checks' => 
        array (
          'address_line1_check' => 'unavailable',
          'address_postal_code_check' => 'unavailable',
          'cvc_check' => 'pass',
        ),
        'country' => '(redacted)',
        'exp_month' => 3,
        'exp_year' => 2025,
        'fingerprint' => 'PC1sND2f7GCS7t6s',
        'funding' => 'debit',
        'generated_from' => NULL,
        'last4' => '3381',
        'networks' => 
        array (
          'available' => 
          array (
            0 => 'mastercard',
          ),
          'preferred' => NULL,
        ),
        'three_d_secure_usage' => 
        array (
          'supported' => true,
        ),
        'wallet' => NULL,
      ),
      'created' => 1669766629,
      'customer' => NULL,
      'livemode' => true,
      'metadata' => 'stdClass()',
      'type' => 'card',
    )
    2022-11-30T00:04:59+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'fe-administrator',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/wp-admin/post.php?post=11268&action=edit',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/wp-admin/admin-ajax.php',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T00:04:59+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/refunds
    2022-11-30T00:04:59+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => '6773d822-2617-4207-a7b2-f018a6a99779',
    )
    2022-11-30T00:04:59+00:00 INFO BODY: array (
      'test_mode' => false,
      'charge' => 'ch_3M9dmF2HR3rQjavP0fwZdjVl',
      'amount' => 100,
    )
    2022-11-30T00:05:01+00:00 INFO RESPONSE: array (
      'id' => 're_3M9dmF2HR3rQjavP0rAHMr76',
      'object' => 'refund',
      'amount' => 100,
      'balance_transaction' => 'txn_3M9dmF2HR3rQjavP0SvCcJiC',
      'charge' => 'ch_3M9dmF2HR3rQjavP0fwZdjVl',
      'created' => 1669766700,
      'currency' => 'aud',
      'metadata' => 'stdClass()',
      'payment_intent' => 
      array (
        'id' => 'pi_3M9dmF2HR3rQjavP01N1rXOQ',
        'object' => 'payment_intent',
        'amount' => 100,
        'amount_capturable' => 0,
        'amount_details' => 
        array (
          'tip' => 
          array (
          ),
        ),
        'amount_received' => 100,
        'amount_subtotal' => 100,
        'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
        'application_fee_amount' => 32,
        'automatic_payment_methods' => NULL,
        'canceled_at' => NULL,
        'cancellation_reason' => NULL,
        'capture_method' => 'automatic',
        'charges' => 
        array (
          'object' => 'list',
          'data' => 
          array (
            0 => 
            array (
              'id' => 'ch_3M9dmF2HR3rQjavP0fwZdjVl',
              'object' => 'charge',
              'amount' => 100,
              'amount_captured' => 100,
              'amount_refunded' => 100,
              'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
              'application_fee' => 'fee_1M9dmG2HR3rQjavPYLYXjot6',
              'application_fee_amount' => 32,
              'balance_transaction' => 'txn_3M9dmF2HR3rQjavP0srUVtnH',
              'billing_details' => 
              array (
                'address' => 
                array (
                  'city' => '(redacted)',
                  'country' => '(redacted)',
                  'line1' => '(redacted)',
                  'line2' => '(redacted)',
                  'postal_code' => '(redacted)',
                  'state' => '(redacted)',
                ),
                'email' => '(redacted)',
                'name' => '(redacted)',
                'phone' => '(redacted)',
              ),
              'calculated_statement_descriptor' => 'FIFTHELEMENTDAYSPA',
              'captured' => true,
              'created' => 1669766631,
              'currency' => 'aud',
              'customer' => 'cus_MoAwHgL5Ao8l2O',
              'description' => 'Online Payment for Order #11268 for www.fifthelementdayspa.com.au blog_id 208137982',
              'destination' => NULL,
              'dispute' => NULL,
              'disputed' => false,
              'failure_balance_transaction' => NULL,
              'failure_code' => NULL,
              'failure_message' => NULL,
              'fraud_details' => 
              array (
              ),
              'invoice' => NULL,
              'livemode' => true,
              'metadata' => 
              array (
                'customer_email' => '(redacted)',
                'customer_name' => '(redacted)',
                'fraud_prevention_data_available' => '1',
                'fraud_prevention_data_shopper_ip_hash' => '8e641a14c0fc9bed8cb2bfcc16e2a7dd735940b456a5f0feae5f95f4cfeb3fe3a58dd8d765516e9adb74e5259acfb0f59467442c5b0fe79a397f573b6ff2479c',
                'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
                'order_id' => '11268',
                'order_key' => 'wc_order_omOVtDmi94tnX',
                'order_number' => '11268',
                'payment_type' => 'single',
                'site_url' => 'https://www.fifthelementdayspa.com.au',
              ),
              'on_behalf_of' => NULL,
              'order' => NULL,
              'outcome' => 
              array (
                'network_status' => 'approved_by_network',
                'reason' => NULL,
                'risk_level' => 'normal',
                'seller_message' => 'Payment complete.',
                'type' => 'authorized',
              ),
              'paid' => true,
              'payment_intent' => 'pi_3M9dmF2HR3rQjavP01N1rXOQ',
              'payment_method' => 'pm_1M9dmD2HR3rQjavPgIBhqAJL',
              'payment_method_details' => 
              array (
                'card' => 
                array (
                  'brand' => 'mastercard',
                  'checks' => 
                  array (
                    'address_line1_check' => 'unavailable',
                    'address_postal_code_check' => 'unavailable',
                    'cvc_check' => 'pass',
                  ),
                  'country' => '(redacted)',
                  'exp_month' => 3,
                  'exp_year' => 2025,
                  'fingerprint' => 'PC1sND2f7GCS7t6s',
                  'funding' => 'debit',
                  'installments' => NULL,
                  'last4' => '3381',
                  'mandate' => NULL,
                  'network' => 'mastercard',
                  'three_d_secure' => NULL,
                  'wallet' => NULL,
                ),
                'type' => 'card',
              ),
              'receipt_email' => NULL,
              'receipt_number' => NULL,
              'receipt_url' => 'https://pay.stripe.com/receipts/payment/CAcQARoXChVhY2N0XzFMREpqUDJIUjNyUWphdlAorLyanAYyBrwvVKC7pTosFo2xnNGMYsgt_vTFKwnPdteS5rvfQNTqDd0Xj8EjzCEgh81GwRS_7tanBMc',
              'refunded' => true,
              'refunds' => 
              array (
                'object' => 'list',
                'data' => 
                array (
                  0 => 
                  array (
                    'id' => 're_3M9dmF2HR3rQjavP0rAHMr76',
                    'object' => 'refund',
                    'amount' => 100,
                    'balance_transaction' => 'txn_3M9dmF2HR3rQjavP0SvCcJiC',
                    'charge' => 'ch_3M9dmF2HR3rQjavP0fwZdjVl',
                    'created' => 1669766700,
                    'currency' => 'aud',
                    'metadata' => 
                    array (
                    ),
                    'payment_intent' => 'pi_3M9dmF2HR3rQjavP01N1rXOQ',
                    'payment_method_details' => 
                    array (
                      'card' => 
                      array (
                        'acquirer_reference_number' => NULL,
                        'acquirer_reference_number_status' => 'unavailable',
                      ),
                      'type' => 'card',
                    ),
                    'reason' => NULL,
                    'receipt_number' => NULL,
                    'source_transfer_reversal' => NULL,
                    'status' => 'succeeded',
                    'transfer_reversal' => NULL,
                  ),
                ),
                'has_more' => false,
                'total_count' => 1,
                'url' => '/v1/charges/ch_3M9dmF2HR3rQjavP0fwZdjVl/refunds',
              ),
              'review' => NULL,
              'shipping' => NULL,
              'source' => NULL,
              'source_transfer' => NULL,
              'statement_descriptor' => NULL,
              'statement_descriptor_suffix' => NULL,
              'status' => 'succeeded',
              'transfer_data' => NULL,
              'transfer_group' => NULL,
            ),
          ),
          'has_more' => false,
          'total_count' => 1,
          'url' => '/v1/charges?payment_intent=pi_3M9dmF2HR3rQjavP01N1rXOQ',
        ),
        'client_secret' => '(redacted)',
        'confirmation_method' => 'automatic',
        'created' => 1669766631,
        'currency' => 'aud',
        'customer' => 'cus_MoAwHgL5Ao8l2O',
        'description' => 'Online Payment for Order #11268 for www.fifthelementdayspa.com.au blog_id 208137982',
        'invoice' => NULL,
        'last_payment_error' => NULL,
        'level3' => NULL,
        'livemode' => true,
        'metadata' => 
        array (
          'customer_email' => '(redacted)',
          'customer_name' => '(redacted)',
          'fraud_prevention_data_available' => '1',
          'fraud_prevention_data_shopper_ip_hash' => '8e641a14c0fc9bed8cb2bfcc16e2a7dd735940b456a5f0feae5f95f4cfeb3fe3a58dd8d765516e9adb74e5259acfb0f59467442c5b0fe79a397f573b6ff2479c',
          'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
          'order_id' => '11268',
          'order_key' => 'wc_order_omOVtDmi94tnX',
          'order_number' => '11268',
          'payment_type' => 'single',
          'site_url' => 'https://www.fifthelementdayspa.com.au',
        ),
        'next_action' => NULL,
        'on_behalf_of' => NULL,
        'payment_method' => 'pm_1M9dmD2HR3rQjavPgIBhqAJL',
        'payment_method_options' => 
        array (
          'card' => 
          array (
            'installments' => NULL,
            'mandate_options' => NULL,
            'network' => NULL,
            'request_three_d_secure' => 'automatic',
          ),
        ),
        'payment_method_types' => 
        array (
          0 => 'card',
        ),
        'processing' => NULL,
        'receipt_email' => NULL,
        'review' => NULL,
        'setup_future_usage' => NULL,
        'shipping' => NULL,
        'source' => NULL,
        'statement_descriptor' => NULL,
        'statement_descriptor_suffix' => NULL,
        'status' => 'succeeded',
        'total_details' => 
        array (
          'amount_discount' => 0,
          'amount_tax' => 0,
        ),
        'transfer_data' => NULL,
        'transfer_group' => NULL,
      ),
      'payment_method_details' => 
      array (
        'card' => 
        array (
          'acquirer_reference_number' => NULL,
          'acquirer_reference_number_status' => 'unavailable',
        ),
        'type' => 'card',
      ),
      'reason' => NULL,
      'receipt_number' => NULL,
      'source_transfer_reversal' => NULL,
      'status' => 'succeeded',
      'transfer_reversal' => NULL,
    )
    2022-11-30T00:05:03+00:00 DEBUG Webhook received: charge.refunded
    2022-11-30T00:05:03+00:00 DEBUG Webhook body: array (
      'id' => 'evt_3M9dmF2HR3rQjavP0BLUEJbE',
      'type' => 'charge.refunded',
      'livemode' => true,
      'account' => 'acct_1LDJjP2HR3rQjavP',
      'data' => 
      array (
        'object' => 
        array (
          'id' => 'ch_3M9dmF2HR3rQjavP0fwZdjVl',
          'object' => 'charge',
          'amount' => 100,
          'amount_captured' => 100,
          'amount_refunded' => 100,
          'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
          'application_fee' => 'fee_1M9dmG2HR3rQjavPYLYXjot6',
          'application_fee_amount' => 32,
          'balance_transaction' => 'txn_3M9dmF2HR3rQjavP0srUVtnH',
          'billing_details' => 
          array (
            'address' => 
            array (
              'city' => '(redacted)',
              'country' => '(redacted)',
              'line1' => '(redacted)',
              'line2' => '(redacted)',
              'postal_code' => '(redacted)',
              'state' => '(redacted)',
            ),
            'email' => '(redacted)',
            'name' => '(redacted)',
            'phone' => '(redacted)',
          ),
          'calculated_statement_descriptor' => 'FIFTHELEMENTDAYSPA',
          'captured' => true,
          'created' => 1669766631,
          'currency' => 'aud',
          'customer' => 'cus_MoAwHgL5Ao8l2O',
          'description' => 'Online Payment for Order #11268 for www.fifthelementdayspa.com.au blog_id 208137982',
          'destination' => NULL,
          'dispute' => NULL,
          'disputed' => false,
          'failure_balance_transaction' => NULL,
          'failure_code' => NULL,
          'failure_message' => NULL,
          'fraud_details' => 
          array (
          ),
          'invoice' => NULL,
          'livemode' => true,
          'metadata' => 
          array (
            'order_key' => 'wc_order_omOVtDmi94tnX',
            'fraud_prevention_data_available' => '1',
            'site_url' => 'https://www.fifthelementdayspa.com.au',
            'customer_email' => '(redacted)',
            'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
            'fraud_prevention_data_shopper_ip_hash' => '8e641a14c0fc9bed8cb2bfcc16e2a7dd735940b456a5f0feae5f95f4cfeb3fe3a58dd8d765516e9adb74e5259acfb0f59467442c5b0fe79a397f573b6ff2479c',
            'order_number' => '11268',
            'customer_name' => '(redacted)',
            'order_id' => '11268',
            'payment_type' => 'single',
          ),
          'on_behalf_of' => NULL,
          'order' => NULL,
          'outcome' => 
          array (
            'network_status' => 'approved_by_network',
            'reason' => NULL,
            'risk_level' => 'normal',
            'seller_message' => 'Payment complete.',
            'type' => 'authorized',
          ),
          'paid' => true,
          'payment_intent' => 'pi_3M9dmF2HR3rQjavP01N1rXOQ',
          'payment_method' => 'pm_1M9dmD2HR3rQjavPgIBhqAJL',
          'payment_method_details' => 
          array (
            'card' => 
            array (
              'brand' => 'mastercard',
              'checks' => 
              array (
                'address_line1_check' => 'unavailable',
                'address_postal_code_check' => 'unavailable',
                'cvc_check' => 'pass',
              ),
              'country' => '(redacted)',
              'exp_month' => 3,
              'exp_year' => 2025,
              'fingerprint' => 'PC1sND2f7GCS7t6s',
              'funding' => 'debit',
              'installments' => NULL,
              'last4' => '3381',
              'mandate' => NULL,
              'network' => 'mastercard',
              'three_d_secure' => NULL,
              'wallet' => NULL,
            ),
            'type' => 'card',
          ),
          'receipt_email' => NULL,
          'receipt_number' => NULL,
          'receipt_url' => 'https://pay.stripe.com/receipts/payment/CAcQARoXChVhY2N0XzFMREpqUDJIUjNyUWphdlAorLyanAYyBs4FACP-MTosFmHg1NM14-ARuIxwUbCxzRHCW4pf6BjghJE0UmLTCwV4VWLGKuMxkKps5a0',
          'refunded' => true,
          'refunds' => 
          array (
            'object' => 'list',
            'data' => 
            array (
              0 => 
              array (
                'id' => 're_3M9dmF2HR3rQjavP0rAHMr76',
                'object' => 'refund',
                'amount' => 100,
                'balance_transaction' => 'txn_3M9dmF2HR3rQjavP0SvCcJiC',
                'charge' => 'ch_3M9dmF2HR3rQjavP0fwZdjVl',
                'created' => 1669766700,
                'currency' => 'aud',
                'metadata' => 
                array (
                ),
                'payment_intent' => 'pi_3M9dmF2HR3rQjavP01N1rXOQ',
                'payment_method_details' => 
                array (
                  'card' => 
                  array (
                    'acquirer_reference_number' => NULL,
                    'acquirer_reference_number_status' => 'unavailable',
                  ),
                  'type' => 'card',
                ),
                'reason' => NULL,
                'receipt_number' => NULL,
                'source_transfer_reversal' => NULL,
                'status' => 'succeeded',
                'transfer_reversal' => NULL,
              ),
            ),
            'has_more' => false,
            'total_count' => 1,
            'url' => '/v1/charges/ch_3M9dmF2HR3rQjavP0fwZdjVl/refunds',
          ),
          'review' => NULL,
          'shipping' => NULL,
          'source' => NULL,
          'source_transfer' => NULL,
          'statement_descriptor' => NULL,
          'statement_descriptor_suffix' => NULL,
          'status' => 'succeeded',
          'transfer_data' => NULL,
          'transfer_group' => NULL,
        ),
      ),
    )
    2022-11-30T00:05:08+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/wp-cron.php?doing_wp_cron=1669766707.5104360580444335937500',
      'HTTP_USER_AGENT' => 'WordPress/6.1.1; https://www.fifthelementdayspa.com.au',
      'REQUEST_URI' => '/wp-cron.php?doing_wp_cron=1669766707.5104360580444335937500',
      'DOING_AJAX' => false,
      'DOING_CRON' => true,
      'WP_CLI' => false,
    )
    2022-11-30T00:05:08+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/tracking/order
    2022-11-30T00:05:08+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => 'c98b23f7-5682-4d7d-b400-df0f3efb17a7',
    )
    2022-11-30T00:05:08+00:00 INFO BODY: array (
      'test_mode' => false,
      'order_data' => 
      array (
        'id' => 11268,
        'parent_id' => 0,
        'status' => 'refunded',
        'currency' => 'AUD',
        'version' => '7.1.0',
        'prices_include_tax' => false,
        'date_created' => 'WC_DateTime()',
        'date_modified' => 'WC_DateTime()',
        'discount_total' => '0',
        'discount_tax' => '0',
        'shipping_total' => '0',
        'shipping_tax' => '0',
        'cart_tax' => '0',
        'total' => '1.00',
        'total_tax' => '0',
        'customer_id' => 3,
        'order_key' => 'wc_order_omOVtDmi94tnX',
        'billing' => 
        array (
          'first_name' => 'Goop',
          'last_name' => 'Digital',
          'company' => '',
          'address_1' => '123 Fake Street',
          'address_2' => 'Goop Digital',
          'city' => '(redacted)',
          'state' => '(redacted)',
          'postcode' => '3228',
          'country' => '(redacted)',
          'email' => '(redacted)',
          'phone' => '(redacted)',
        ),
        'shipping' => 
        array (
          'first_name' => '',
          'last_name' => '',
          'company' => '',
          'address_1' => '',
          'address_2' => '',
          'city' => '(redacted)',
          'state' => '(redacted)',
          'postcode' => '',
          'country' => '(redacted)',
          'phone' => '(redacted)',
        ),
        'payment_method' => 'woocommerce_payments',
        'payment_method_title' => 'Credit card / debit card',
        'transaction_id' => 'pi_3M9dmF2HR3rQjavP01N1rXOQ',
        'customer_ip_address' => '180.150.21.49',
        'customer_user_agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
        'created_via' => 'checkout',
        'customer_note' => '',
        'date_completed' => NULL,
        'date_paid' => 'WC_DateTime()',
        'cart_hash' => '545958a198a1c800d4c833aeb86511fd',
        'order_stock_reduced' => true,
        'download_permissions_granted' => true,
        'new_order_email_sent' => true,
        'recorded_sales' => true,
        'recorded_coupon_usage_counts' => true,
        'number' => '11268',
        'meta_data' => 
        array (
          0 => 'WC_Meta_Data()',
          1 => 'WC_Meta_Data()',
          2 => 'WC_Meta_Data()',
          3 => 'WC_Meta_Data()',
          4 => 'WC_Meta_Data()',
          5 => 'WC_Meta_Data()',
          6 => 'WC_Meta_Data()',
          7 => 'WC_Meta_Data()',
          8 => 'WC_Meta_Data()',
          9 => 'WC_Meta_Data()',
          10 => 'WC_Meta_Data()',
          11 => 'WC_Meta_Data()',
        ),
        'line_items' => 
        array (
          19572 => 'WC_Order_Item_Product()',
        ),
        'tax_lines' => 
        array (
        ),
        'shipping_lines' => 
        array (
        ),
        'fee_lines' => 
        array (
        ),
        'coupon_lines' => 
        array (
        ),
        '_payment_method_id' => 'pm_1M9dmD2HR3rQjavPgIBhqAJL',
        '_stripe_customer_id' => 'cus_MoAwHgL5Ao8l2O',
        '_wcpay_mode' => 'prod',
      ),
      'update' => true,
    )
    2022-11-30T00:05:09+00:00 INFO RESPONSE: array (
      'result' => 'success',
    )
    2022-11-30T00:15:57+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'fe-administrator',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/wp-admin/theme-editor.php?file=header.php&theme=fifthelementtheme',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/wp-admin/edit.php?post_type=shop_order',
      'DOING_AJAX' => false,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T00:15:57+00:00 INFO REQUEST GET https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/accounts?test_mode=0
    2022-11-30T00:15:57+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
    )
    2022-11-30T00:15:58+00:00 INFO RESPONSE: array (
      'account_id' => 'acct_1LDJjP2HR3rQjavP',
      'email' => '(redacted)',
      'live_publishable_key' => 'pk_live_iBIpeqzKOOx2Y8PFCRBfyMU000Q7xVG4Sn',
      'test_publishable_key' => 'pk_test_51ETDmyFuiXB5oUVxwSobQMW5Tno1GclIq7ePZWzLeW4q8oa7Zb8hI5VfwI5sNT5nXuKYinLukNvGCXmsQXAoDGHG00MqHqlYHR',
      'is_live' => true,
      'has_pending_requirements' => false,
      'has_overdue_requirements' => false,
      'current_deadline' => NULL,
      'status' => 'complete',
      'capabilities' => 
      array (
        'bancontact_payments' => 'active',
        'card_payments' => 'active',
        'eps_payments' => 'active',
        'giropay_payments' => 'active',
        'ideal_payments' => 'active',
        'p24_payments' => 'active',
        'sofort_payments' => 'active',
        'transfers' => 'active',
        'afterpay_clearpay_payments' => 'unrequested',
        'au_becs_debit_payments' => 'unrequested',
        'sepa_debit_payments' => 'unrequested',
      ),
      'capability_requirements' => 
      array (
        'afterpay_clearpay_payments' => 
        array (
          0 => 'business_profile.support_phone',
        ),
        'au_becs_debit_payments' => 
        array (
        ),
        'bancontact_payments' => 
        array (
        ),
        'card_payments' => 
        array (
        ),
        'eps_payments' => 
        array (
        ),
        'giropay_payments' => 
        array (
        ),
        'ideal_payments' => 
        array (
        ),
        'p24_payments' => 
        array (
        ),
        'sepa_debit_payments' => 
        array (
        ),
        'sofort_payments' => 
        array (
        ),
        'transfers' => 
        array (
        ),
      ),
      'payments_enabled' => true,
      'deposits' => 
      array (
        'status' => 'enabled',
        'interval' => 'daily',
        'weekly_anchor' => '',
        'monthly_anchor' => NULL,
        'delay_days' => 2,
        'completed_waiting_period' => true,
        'minimum_deposit_amounts' => 
        array (
          'aud' => 500,
          'cad' => 500,
          'chf' => 500,
          'dkk' => 5000,
          'eur' => 500,
          'gbp' => 500,
          'hkd' => 5000,
          'nok' => 5000,
          'nzd' => 500,
          'sek' => 5000,
          'sgd' => 500,
          'usd' => 500,
        ),
      ),
      'statement_descriptor' => 'FIFTHELEMENTDAYSPA',
      'latest_tos_agreement' => 
      array (
        'date' => '2022-06-22 02:55:53',
        'source' => 'signup',
        'is_current_version' => true,
      ),
      'fees' => 
      array (
        'base' => 
        array (
          'percentage_rate' => 0.0175,
          'fixed_rate' => 30,
          'currency' => 'aud',
        ),
        'discount' => 
        array (
        ),
        'card' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.0175,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'bancontact' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'eps' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.018,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'ideal' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0,
            'fixed_rate' => 80,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'giropay' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'p24' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.022,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'sofort' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
      ),
      'capital' => 
      array (
        'has_active_loan' => false,
        'has_previous_loans' => false,
        'loans' => 
        array (
        ),
      ),
      'fraud_services' => 
      array (
        'stripe' => 
        array (
        ),
        'sift' => 
        array (
          'beacon_key' => 'affbdadb36',
          'sandbox_beacon_key' => '6ad0ad748b',
        ),
      ),
      'store_currencies' => 
      array (
        'default' => 'aud',
        'supported' => 
        array (
          0 => 'aud',
        ),
      ),
      'customer_currencies' => 
      array (
        'supported' => 
        array (
          0 => 'usd',
          1 => 'aed',
          2 => 'afn',
          3 => 'all',
          4 => 'amd',
          5 => 'ang',
          6 => 'aoa',
          7 => 'ars',
          8 => 'aud',
          9 => 'awg',
          10 => 'azn',
          11 => 'bam',
          12 => 'bbd',
          13 => 'bdt',
          14 => 'bgn',
          15 => 'bif',
          16 => 'bmd',
          17 => 'bnd',
          18 => 'bob',
          19 => 'brl',
          20 => 'bsd',
          21 => 'bwp',
          22 => 'byn',
          23 => 'bzd',
          24 => 'cad',
          25 => 'cdf',
          26 => 'chf',
          27 => 'clp',
          28 => 'cny',
          29 => 'cop',
          30 => 'crc',
          31 => 'cve',
          32 => 'czk',
          33 => 'djf',
          34 => 'dkk',
          35 => 'dop',
          36 => 'dzd',
          37 => 'egp',
          38 => 'etb',
          39 => 'eur',
          40 => 'fjd',
          41 => 'fkp',
          42 => 'gbp',
          43 => 'gel',
          44 => 'gip',
          45 => 'gmd',
          46 => 'gnf',
          47 => 'gtq',
          48 => 'gyd',
          49 => 'hkd',
          50 => 'hnl',
          51 => 'hrk',
          52 => 'htg',
          53 => 'huf',
          54 => 'idr',
          55 => 'ils',
          56 => 'inr',
          57 => 'isk',
          58 => 'jmd',
          59 => 'jpy',
          60 => 'kes',
          61 => 'kgs',
          62 => 'khr',
          63 => 'kmf',
          64 => 'krw',
          65 => 'kyd',
          66 => 'kzt',
          67 => 'lak',
          68 => 'lbp',
          69 => 'lkr',
          70 => 'lrd',
          71 => 'lsl',
          72 => 'mad',
          73 => 'mdl',
          74 => 'mga',
          75 => 'mkd',
          76 => 'mmk',
          77 => 'mnt',
          78 => 'mop',
          79 => 'mro',
          80 => 'mur',
          81 => 'mvr',
          82 => 'mwk',
          83 => 'mxn',
          84 => 'myr',
          85 => 'mzn',
          86 => 'nad',
          87 => 'ngn',
          88 => 'nio',
          89 => 'nok',
          90 => 'npr',
          91 => 'nzd',
          92 => 'pab',
          93 => 'pen',
          94 => 'pgk',
          95 => 'php',
          96 => 'pkr',
          97 => 'pln',
          98 => 'pyg',
          99 => 'qar',
          100 => 'ron',
          101 => 'rsd',
          102 => 'rub',
          103 => 'rwf',
          104 => 'sar',
          105 => 'sbd',
          106 => 'scr',
          107 => 'sek',
          108 => 'sgd',
          109 => 'shp',
          110 => 'sle',
          111 => 'sll',
          112 => 'sos',
          113 => 'srd',
          114 => 'std',
          115 => 'szl',
          116 => 'thb',
          117 => 'tjs',
          118 => 'top',
          119 => 'try',
          120 => 'ttd',
          121 => 'twd',
          122 => 'tzs',
          123 => 'uah',
          124 => 'ugx',
          125 => 'uyu',
          126 => 'uzs',
          127 => 'vnd',
          128 => 'vuv',
          129 => 'wst',
          130 => 'xaf',
          131 => 'xcd',
          132 => 'xof',
          133 => 'xpf',
          134 => 'yer',
          135 => 'zar',
          136 => 'zmw',
        ),
      ),
      'country' => '(redacted)',
      'instant_deposits_eligible' => false,
      'card_present_eligible' => false,
      'has_card_readers_available' => false,
      'platform_checkout_eligible' => false,
      'business_profile' => 
      array (
        'name' => '(redacted)',
        'url' => 'https://www.fifthelementdayspa.com.au',
        'support_address' => 
        array (
        ),
        'support_email' => NULL,
        'support_phone' => NULL,
      ),
      'branding' => 
      array (
        'icon' => NULL,
        'logo' => NULL,
        'primary_color' => NULL,
        'secondary_color' => NULL,
      ),
      'locale' => 'en_US',
      'has_more_failed_events' => false,
      'has_submitted_vat_data' => false,
      'is_documents_enabled' => false,
      'card_testing_protection_eligible' => true,
      'progressive_onboarding' => 
      array (
        'is_enabled' => false,
        'is_complete' => false,
      ),
    )
    2022-11-30T01:28:40+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/?wc-ajax=checkout',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T01:28:40+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/customers
    2022-11-30T01:28:40+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => '4fb7dfcb-29ac-4bef-bc20-695af52f05ad',
    )
    2022-11-30T01:28:40+00:00 INFO BODY: array (
      'test_mode' => false,
      'name' => '(redacted)',
      'description' => 'Name: Rosa Garcia, Guest',
      'email' => '(redacted)',
      'phone' => '(redacted)',
      'address' => 
      array (
        'line1' => '(redacted)',
        'line2' => '(redacted)',
        'postal_code' => '(redacted)',
        'city' => '(redacted)',
        'state' => '(redacted)',
        'country' => '(redacted)',
      ),
      'session_id' => '208137982_t_171d3b73b02a41eea0ea336727de77',
    )
    2022-11-30T01:28:41+00:00 INFO RESPONSE: array (
      'id' => 'cus_MtS0VGUuRAS41L',
      'object' => 'customer',
      'address' => 
      array (
        'city' => '(redacted)',
        'country' => '(redacted)',
        'line1' => '(redacted)',
        'line2' => '(redacted)',
        'postal_code' => '(redacted)',
        'state' => '(redacted)',
      ),
      'balance' => 0,
      'created' => 1669771721,
      'currency' => NULL,
      'default_currency' => NULL,
      'default_source' => NULL,
      'delinquent' => false,
      'description' => 'Name: Rosa Garcia, Guest',
      'discount' => NULL,
      'email' => '(redacted)',
      'invoice_prefix' => 'BBC84EBE',
      'invoice_settings' => 
      array (
        'custom_fields' => NULL,
        'default_payment_method' => NULL,
        'footer' => NULL,
        'rendering_options' => NULL,
      ),
      'livemode' => true,
      'metadata' => 'stdClass()',
      'name' => '(redacted)',
      'next_invoice_sequence' => 1,
      'phone' => '(redacted)',
      'preferred_locales' => 
      array (
      ),
      'shipping' => NULL,
      'tax_exempt' => 'none',
      'test_clock' => NULL,
    )
    2022-11-30T01:28:41+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/?wc-ajax=checkout',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T01:28:41+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions
    2022-11-30T01:28:41+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => '7ce5fb94-b78a-41e3-bfff-91cc8b0f92b1',
    )
    2022-11-30T01:28:41+00:00 INFO BODY: array (
      'test_mode' => false,
      'amount' => 10000,
      'currency' => 'aud',
      'confirm' => 'true',
      'payment_method' => 'pm_1M9f6I2HR3rQjavPlblvXLxC',
      'customer' => 'cus_MtS0VGUuRAS41L',
      'capture_method' => 'automatic',
      'metadata' => 
      array (
        'customer_name' => '(redacted)',
        'customer_email' => '(redacted)',
        'site_url' => 'https://www.fifthelementdayspa.com.au',
        'order_id' => 11271,
        'order_number' => '11271',
        'order_key' => 'wc_order_m27miC87NfblP',
        'payment_type' => 'WCPay\\Constants\\Payment_Type()',
        'fraud_prevention_data_shopper_ip_hash' => '6fdcd755957974f4ec04e57ce1a5da753fc5aa9e024af41d825cdcf7fcf19df4601a4bd6010906b4d0cf5aad976b47db9e63afef67c10a755588ac97d99d75c0',
        'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
        'fraud_prevention_data_available' => true,
      ),
      'level3' => 
      array (
      ),
      'description' => 'Online Payment for Order #11271 for www.fifthelementdayspa.com.au blog_id 208137982',
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'is_platform_payment_method' => false,
    )
    2022-11-30T01:28:45+00:00 INFO RESPONSE: array (
      'id' => 'pi_3M9f6M2HR3rQjavP0JgxKcle',
      'object' => 'payment_intent',
      'amount' => 10000,
      'amount_capturable' => 0,
      'amount_details' => 
      array (
        'tip' => 
        array (
        ),
      ),
      'amount_received' => 10000,
      'amount_subtotal' => 10000,
      'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
      'application_fee_amount' => 205,
      'automatic_payment_methods' => NULL,
      'canceled_at' => NULL,
      'cancellation_reason' => NULL,
      'capture_method' => 'automatic',
      'charges' => 
      array (
        'object' => 'list',
        'data' => 
        array (
          0 => 
          array (
            'id' => 'ch_3M9f6M2HR3rQjavP0rhAPl8O',
            'object' => 'charge',
            'amount' => 10000,
            'amount_captured' => 10000,
            'amount_refunded' => 0,
            'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
            'application_fee' => 'fee_1M9f6O2HR3rQjavPdsv9Wfhu',
            'application_fee_amount' => 205,
            'balance_transaction' => 
            array (
              'id' => 'txn_3M9f6M2HR3rQjavP0lOIeJcU',
              'object' => 'balance_transaction',
              'amount' => 10000,
              'available_on' => 1669939200,
              'created' => 1669771722,
              'currency' => 'aud',
              'description' => 'Online Payment for Order #11271 for www.fifthelementdayspa.com.au blog_id 208137982',
              'exchange_rate' => NULL,
              'fee' => 205,
              'fee_details' => 
              array (
                0 => 
                array (
                  'amount' => 205,
                  'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
                  'currency' => 'aud',
                  'description' => 'WooCommerce Payments application fee',
                  'type' => 'application_fee',
                ),
              ),
              'net' => 9795,
              'reporting_category' => 'charge',
              'source' => 'ch_3M9f6M2HR3rQjavP0rhAPl8O',
              'status' => 'pending',
              'type' => 'charge',
            ),
            'billing_details' => 
            array (
              'address' => 
              array (
                'city' => '(redacted)',
                'country' => '(redacted)',
                'line1' => '(redacted)',
                'line2' => '(redacted)',
                'postal_code' => '(redacted)',
                'state' => '(redacted)',
              ),
              'email' => '(redacted)',
              'name' => '(redacted)',
              'phone' => '(redacted)',
            ),
            'calculated_statement_descriptor' => 'FIFTHELEMENTDAYSPA',
            'captured' => true,
            'created' => 1669771722,
            'currency' => 'aud',
            'customer' => 'cus_MtS0VGUuRAS41L',
            'description' => 'Online Payment for Order #11271 for www.fifthelementdayspa.com.au blog_id 208137982',
            'destination' => NULL,
            'dispute' => NULL,
            'disputed' => false,
            'failure_balance_transaction' => NULL,
            'failure_code' => NULL,
            'failure_message' => NULL,
            'fraud_details' => 
            array (
            ),
            'invoice' => NULL,
            'livemode' => true,
            'metadata' => 
            array (
              'customer_email' => '(redacted)',
              'customer_name' => '(redacted)',
              'fraud_prevention_data_available' => '1',
              'fraud_prevention_data_shopper_ip_hash' => '6fdcd755957974f4ec04e57ce1a5da753fc5aa9e024af41d825cdcf7fcf19df4601a4bd6010906b4d0cf5aad976b47db9e63afef67c10a755588ac97d99d75c0',
              'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
              'order_id' => '11271',
              'order_key' => 'wc_order_m27miC87NfblP',
              'order_number' => '11271',
              'payment_type' => 'single',
              'site_url' => 'https://www.fifthelementdayspa.com.au',
            ),
            'on_behalf_of' => NULL,
            'order' => NULL,
            'outcome' => 
            array (
              'network_status' => 'approved_by_network',
              'reason' => NULL,
              'risk_level' => 'normal',
              'seller_message' => 'Payment complete.',
              'type' => 'authorized',
            ),
            'paid' => true,
            'payment_intent' => 'pi_3M9f6M2HR3rQjavP0JgxKcle',
            'payment_method' => 'pm_1M9f6I2HR3rQjavPlblvXLxC',
            'payment_method_details' => 
            array (
              'card' => 
              array (
                'brand' => 'mastercard',
                'checks' => 
                array (
                  'address_line1_check' => 'unavailable',
                  'address_postal_code_check' => 'unavailable',
                  'cvc_check' => 'pass',
                ),
                'country' => '(redacted)',
                'exp_month' => 9,
                'exp_year' => 2024,
                'fingerprint' => 'v816m2D8OJ0Tp6nC',
                'funding' => 'debit',
                'installments' => NULL,
                'last4' => '1203',
                'mandate' => NULL,
                'network' => 'mastercard',
                'three_d_secure' => NULL,
                'wallet' => NULL,
              ),
              'type' => 'card',
            ),
            'receipt_email' => NULL,
            'receipt_number' => NULL,
            'receipt_url' => 'https://pay.stripe.com/receipts/payment/CAcQARoXChVhY2N0XzFMREpqUDJIUjNyUWphdlAozeOanAYyBn--fD_bozosFi-36gBE2f973Je0m3fNEup1Qkdg9BPFM_9u7w639OPJoexOCm1B1hI2Lag',
            'refunded' => false,
            'refunds' => 
            array (
              'object' => 'list',
              'data' => 
              array (
              ),
              'has_more' => false,
              'total_count' => 0,
              'url' => '/v1/charges/ch_3M9f6M2HR3rQjavP0rhAPl8O/refunds',
            ),
            'review' => NULL,
            'shipping' => NULL,
            'source' => NULL,
            'source_transfer' => NULL,
            'statement_descriptor' => NULL,
            'statement_descriptor_suffix' => NULL,
            'status' => 'succeeded',
            'transfer_data' => NULL,
            'transfer_group' => NULL,
          ),
        ),
        'has_more' => false,
        'total_count' => 1,
        'url' => '/v1/charges?payment_intent=pi_3M9f6M2HR3rQjavP0JgxKcle',
      ),
      'client_secret' => '(redacted)',
      'confirmation_method' => 'automatic',
      'created' => 1669771722,
      'currency' => 'aud',
      'customer' => 'cus_MtS0VGUuRAS41L',
      'description' => 'Online Payment for Order #11271 for www.fifthelementdayspa.com.au blog_id 208137982',
      'invoice' => NULL,
      'last_payment_error' => NULL,
      'level3' => NULL,
      'livemode' => true,
      'metadata' => 
      array (
        'customer_email' => '(redacted)',
        'customer_name' => '(redacted)',
        'fraud_prevention_data_available' => '1',
        'fraud_prevention_data_shopper_ip_hash' => '6fdcd755957974f4ec04e57ce1a5da753fc5aa9e024af41d825cdcf7fcf19df4601a4bd6010906b4d0cf5aad976b47db9e63afef67c10a755588ac97d99d75c0',
        'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
        'order_id' => '11271',
        'order_key' => 'wc_order_m27miC87NfblP',
        'order_number' => '11271',
        'payment_type' => 'single',
        'site_url' => 'https://www.fifthelementdayspa.com.au',
      ),
      'next_action' => NULL,
      'on_behalf_of' => NULL,
      'payment_method' => 'pm_1M9f6I2HR3rQjavPlblvXLxC',
      'payment_method_options' => 
      array (
        'card' => 
        array (
          'installments' => NULL,
          'mandate_options' => NULL,
          'network' => NULL,
          'request_three_d_secure' => 'automatic',
        ),
      ),
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'processing' => NULL,
      'receipt_email' => NULL,
      'review' => NULL,
      'setup_future_usage' => NULL,
      'shipping' => NULL,
      'source' => NULL,
      'statement_descriptor' => NULL,
      'statement_descriptor_suffix' => NULL,
      'status' => 'succeeded',
      'total_details' => 
      array (
        'amount_discount' => 0,
        'amount_tax' => 0,
      ),
      'transfer_data' => NULL,
      'transfer_group' => NULL,
      'fee_history' => 
      array (
        0 => 
        array (
          'type' => 'base',
          'fee_id' => 'base-au-fee',
          'percentage_rate' => 0.0175,
          'fixed_rate' => 30,
          'currency' => 'aud',
        ),
      ),
    )
    2022-11-30T01:28:48+00:00 DEBUG Webhook received: payment_intent.succeeded
    2022-11-30T01:28:48+00:00 DEBUG Webhook body: array (
      'id' => 'evt_3M9f6M2HR3rQjavP0ELLZQhr',
      'type' => 'payment_intent.succeeded',
      'livemode' => true,
      'account' => 'acct_1LDJjP2HR3rQjavP',
      'data' => 
      array (
        'object' => 
        array (
          'id' => 'pi_3M9f6M2HR3rQjavP0JgxKcle',
          'object' => 'payment_intent',
          'amount' => 10000,
          'amount_capturable' => 0,
          'amount_details' => 
          array (
            'tip' => 
            array (
            ),
          ),
          'amount_received' => 10000,
          'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
          'application_fee_amount' => 205,
          'automatic_payment_methods' => NULL,
          'canceled_at' => NULL,
          'cancellation_reason' => NULL,
          'capture_method' => 'automatic',
          'charges' => 
          array (
            'object' => 'list',
            'data' => 
            array (
              0 => 
              array (
                'id' => 'ch_3M9f6M2HR3rQjavP0rhAPl8O',
                'object' => 'charge',
                'amount' => 10000,
                'amount_captured' => 10000,
                'amount_refunded' => 0,
                'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
                'application_fee' => 'fee_1M9f6O2HR3rQjavPdsv9Wfhu',
                'application_fee_amount' => 205,
                'balance_transaction' => 'txn_3M9f6M2HR3rQjavP0lOIeJcU',
                'billing_details' => 
                array (
                  'address' => 
                  array (
                    'city' => '(redacted)',
                    'country' => '(redacted)',
                    'line1' => '(redacted)',
                    'line2' => '(redacted)',
                    'postal_code' => '(redacted)',
                    'state' => '(redacted)',
                  ),
                  'email' => '(redacted)',
                  'name' => '(redacted)',
                  'phone' => '(redacted)',
                ),
                'calculated_statement_descriptor' => 'FIFTHELEMENTDAYSPA',
                'captured' => true,
                'created' => 1669771722,
                'currency' => 'aud',
                'customer' => 'cus_MtS0VGUuRAS41L',
                'description' => 'Online Payment for Order #11271 for www.fifthelementdayspa.com.au blog_id 208137982',
                'destination' => NULL,
                'dispute' => NULL,
                'disputed' => false,
                'failure_balance_transaction' => NULL,
                'failure_code' => NULL,
                'failure_message' => NULL,
                'fraud_details' => 
                array (
                ),
                'invoice' => NULL,
                'livemode' => true,
                'metadata' => 
                array (
                  'order_key' => 'wc_order_m27miC87NfblP',
                  'fraud_prevention_data_available' => '1',
                  'site_url' => 'https://www.fifthelementdayspa.com.au',
                  'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
                  'customer_email' => '(redacted)',
                  'fraud_prevention_data_shopper_ip_hash' => '6fdcd755957974f4ec04e57ce1a5da753fc5aa9e024af41d825cdcf7fcf19df4601a4bd6010906b4d0cf5aad976b47db9e63afef67c10a755588ac97d99d75c0',
                  'order_number' => '11271',
                  'customer_name' => '(redacted)',
                  'order_id' => '11271',
                  'payment_type' => 'single',
                ),
                'on_behalf_of' => NULL,
                'order' => NULL,
                'outcome' => 
                array (
                  'network_status' => 'approved_by_network',
                  'reason' => NULL,
                  'risk_level' => 'normal',
                  'seller_message' => 'Payment complete.',
                  'type' => 'authorized',
                ),
                'paid' => true,
                'payment_intent' => 'pi_3M9f6M2HR3rQjavP0JgxKcle',
                'payment_method' => 'pm_1M9f6I2HR3rQjavPlblvXLxC',
                'payment_method_details' => 
                array (
                  'card' => 
                  array (
                    'brand' => 'mastercard',
                    'checks' => 
                    array (
                      'address_line1_check' => 'unavailable',
                      'address_postal_code_check' => 'unavailable',
                      'cvc_check' => 'pass',
                    ),
                    'country' => '(redacted)',
                    'exp_month' => 9,
                    'exp_year' => 2024,
                    'fingerprint' => 'v816m2D8OJ0Tp6nC',
                    'funding' => 'debit',
                    'installments' => NULL,
                    'last4' => '1203',
                    'mandate' => NULL,
                    'network' => 'mastercard',
                    'three_d_secure' => NULL,
                    'wallet' => NULL,
                  ),
                  'type' => 'card',
                ),
                'receipt_email' => NULL,
                'receipt_number' => NULL,
                'receipt_url' => 'https://pay.stripe.com/receipts/payment/CAcQARoXChVhY2N0XzFMREpqUDJIUjNyUWphdlAozeOanAYyBsO-kuuhTTosFiRAcyVzDV5oyNM13rqOlkfv56rbKoEN0o9-rCHvgj125d-nH0Bm3iAePnQ',
                'refunded' => false,
                'refunds' => 
                array (
                  'object' => 'list',
                  'data' => 
                  array (
                  ),
                  'has_more' => false,
                  'total_count' => 0,
                  'url' => '/v1/charges/ch_3M9f6M2HR3rQjavP0rhAPl8O/refunds',
                ),
                'review' => NULL,
                'shipping' => NULL,
                'source' => NULL,
                'source_transfer' => NULL,
                'statement_descriptor' => NULL,
                'statement_descriptor_suffix' => NULL,
                'status' => 'succeeded',
                'transfer_data' => NULL,
                'transfer_group' => NULL,
              ),
            ),
            'has_more' => false,
            'total_count' => 1,
            'url' => '/v1/charges?payment_intent=pi_3M9f6M2HR3rQjavP0JgxKcle',
          ),
          'client_secret' => '(redacted)',
          'confirmation_method' => 'automatic',
          'created' => 1669771722,
          'currency' => 'aud',
          'customer' => 'cus_MtS0VGUuRAS41L',
          'description' => 'Online Payment for Order #11271 for www.fifthelementdayspa.com.au blog_id 208137982',
          'invoice' => NULL,
          'last_payment_error' => NULL,
          'livemode' => true,
          'metadata' => 
          array (
            'order_key' => 'wc_order_m27miC87NfblP',
            'fraud_prevention_data_available' => '1',
            'site_url' => 'https://www.fifthelementdayspa.com.au',
            'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
            'customer_email' => '(redacted)',
            'fraud_prevention_data_shopper_ip_hash' => '6fdcd755957974f4ec04e57ce1a5da753fc5aa9e024af41d825cdcf7fcf19df4601a4bd6010906b4d0cf5aad976b47db9e63afef67c10a755588ac97d99d75c0',
            'order_number' => '11271',
            'customer_name' => '(redacted)',
            'order_id' => '11271',
            'payment_type' => 'single',
          ),
          'next_action' => NULL,
          'on_behalf_of' => NULL,
          'payment_method' => 'pm_1M9f6I2HR3rQjavPlblvXLxC',
          'payment_method_options' => 
          array (
            'card' => 
            array (
              'installments' => NULL,
              'mandate_options' => NULL,
              'network' => NULL,
              'request_three_d_secure' => 'automatic',
            ),
          ),
          'payment_method_types' => 
          array (
            0 => 'card',
          ),
          'processing' => NULL,
          'receipt_email' => NULL,
          'review' => NULL,
          'setup_future_usage' => NULL,
          'shipping' => NULL,
          'source' => NULL,
          'statement_descriptor' => NULL,
          'statement_descriptor_suffix' => NULL,
          'status' => 'succeeded',
          'transfer_data' => NULL,
          'transfer_group' => NULL,
          'amount_subtotal' => 10000,
          'level3' => NULL,
          'total_details' => 
          array (
            'amount_discount' => 0,
            'amount_tax' => 0,
          ),
        ),
      ),
    )
    2022-11-30T01:30:27+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/wp-cron.php?doing_wp_cron=1669771826.0999150276184082031250',
      'HTTP_USER_AGENT' => 'WordPress/6.1.1; https://www.fifthelementdayspa.com.au',
      'REQUEST_URI' => '/wp-cron.php?doing_wp_cron=1669771826.0999150276184082031250',
      'DOING_AJAX' => false,
      'DOING_CRON' => true,
      'WP_CLI' => false,
    )
    2022-11-30T01:30:27+00:00 INFO REQUEST GET https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/timeline/pi_3M9f6M2HR3rQjavP0JgxKcle?test_mode=0
    2022-11-30T01:30:27+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
    )
    2022-11-30T01:30:28+00:00 INFO RESPONSE: array (
      'data' => 
      array (
        0 => 
        array (
          'type' => 'captured',
          'amount' => 10000,
          'fee' => 205,
          'fee_rates' => 
          array (
            'percentage' => 0.0175,
            'fixed' => 30,
            'fixed_currency' => 'AUD',
            'history' => 
            array (
              0 => 
              array (
                'type' => 'base',
                'fee_id' => 'base-au-fee',
                'percentage_rate' => 0.0175,
                'fixed_rate' => 30,
                'currency' => 'aud',
              ),
            ),
          ),
          'currency' => 'AUD',
          'datetime' => 1669771722,
          'deposit' => 
          array (
            'id' => 'wcpay_estimated_daily_aud_1669939200',
            'arrival_date' => '1669939200',
          ),
          'transaction_id' => 'txn_3M9f6M2HR3rQjavP0lOIeJcU',
          'transaction_details' => 
          array (
            'customer_currency' => 'AUD',
            'customer_amount' => 10000,
            'customer_fee' => 205,
            'store_currency' => 'AUD',
            'store_amount' => 10000,
            'store_fee' => 205,
          ),
        ),
        1 => 
        array (
          'type' => 'authorized',
          'datetime' => 1669771722,
          'amount' => 10000,
          'currency' => 'AUD',
        ),
      ),
    )
    2022-11-30T01:30:28+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/wp-cron.php?doing_wp_cron=1669771826.0999150276184082031250',
      'HTTP_USER_AGENT' => 'WordPress/6.1.1; https://www.fifthelementdayspa.com.au',
      'REQUEST_URI' => '/wp-cron.php?doing_wp_cron=1669771826.0999150276184082031250',
      'DOING_AJAX' => false,
      'DOING_CRON' => true,
      'WP_CLI' => false,
    )
    2022-11-30T01:30:28+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/tracking/order
    2022-11-30T01:30:28+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => 'ebd66d81-8609-48b9-a21b-f47f7dbdd8d4',
    )
    2022-11-30T01:30:28+00:00 INFO BODY: array (
      'test_mode' => false,
      'order_data' => 
      array (
        'id' => 11271,
        'parent_id' => 0,
        'status' => 'processing',
        'currency' => 'AUD',
        'version' => '7.1.0',
        'prices_include_tax' => false,
        'date_created' => 'WC_DateTime()',
        'date_modified' => 'WC_DateTime()',
        'discount_total' => '0',
        'discount_tax' => '0',
        'shipping_total' => '0',
        'shipping_tax' => '0',
        'cart_tax' => '0',
        'total' => '100.00',
        'total_tax' => '0',
        'customer_id' => 0,
        'order_key' => 'wc_order_m27miC87NfblP',
        'billing' => 
        array (
          'first_name' => 'Rosa',
          'last_name' => 'Garcia',
          'company' => '',
          'address_1' => '17 Rayment Street',
          'address_2' => '',
          'city' => '(redacted)',
          'state' => '(redacted)',
          'postcode' => '3071',
          'country' => '(redacted)',
          'email' => '(redacted)',
          'phone' => '(redacted)',
        ),
        'shipping' => 
        array (
          'first_name' => '',
          'last_name' => '',
          'company' => '',
          'address_1' => '',
          'address_2' => '',
          'city' => '(redacted)',
          'state' => '(redacted)',
          'postcode' => '',
          'country' => '(redacted)',
          'phone' => '(redacted)',
        ),
        'payment_method' => 'woocommerce_payments',
        'payment_method_title' => 'Credit card / debit card',
        'transaction_id' => 'pi_3M9f6M2HR3rQjavP0JgxKcle',
        'customer_ip_address' => '203.2.94.202',
        'customer_user_agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
        'created_via' => 'checkout',
        'customer_note' => '',
        'date_completed' => NULL,
        'date_paid' => 'WC_DateTime()',
        'cart_hash' => '5594a2b16b71d608d5a5ee850aa7be99',
        'order_stock_reduced' => true,
        'download_permissions_granted' => true,
        'new_order_email_sent' => true,
        'recorded_sales' => true,
        'recorded_coupon_usage_counts' => true,
        'number' => '11271',
        'meta_data' => 
        array (
          0 => 'WC_Meta_Data()',
          1 => 'WC_Meta_Data()',
          2 => 'WC_Meta_Data()',
          3 => 'WC_Meta_Data()',
          4 => 'WC_Meta_Data()',
          5 => 'WC_Meta_Data()',
          6 => 'WC_Meta_Data()',
          7 => 'WC_Meta_Data()',
          8 => 'WC_Meta_Data()',
          9 => 'WC_Meta_Data()',
        ),
        'line_items' => 
        array (
          19573 => 'WC_Order_Item_Product()',
        ),
        'tax_lines' => 
        array (
        ),
        'shipping_lines' => 
        array (
        ),
        'fee_lines' => 
        array (
        ),
        'coupon_lines' => 
        array (
        ),
        '_payment_method_id' => 'pm_1M9f6I2HR3rQjavPlblvXLxC',
        '_stripe_customer_id' => 'cus_MtS0VGUuRAS41L',
        '_wcpay_mode' => 'prod',
      ),
      'update' => false,
    )
    2022-11-30T01:30:28+00:00 INFO RESPONSE: array (
      'result' => 'success',
    )
    2022-11-30T02:42:26+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'fe-administrator',
      'HTTP_REFERER' => '--',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/wp-admin/',
      'DOING_AJAX' => false,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T02:42:26+00:00 INFO REQUEST GET https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/accounts?test_mode=0
    2022-11-30T02:42:26+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
    )
    2022-11-30T02:42:28+00:00 INFO RESPONSE: array (
      'account_id' => 'acct_1LDJjP2HR3rQjavP',
      'email' => '(redacted)',
      'live_publishable_key' => 'pk_live_iBIpeqzKOOx2Y8PFCRBfyMU000Q7xVG4Sn',
      'test_publishable_key' => 'pk_test_51ETDmyFuiXB5oUVxwSobQMW5Tno1GclIq7ePZWzLeW4q8oa7Zb8hI5VfwI5sNT5nXuKYinLukNvGCXmsQXAoDGHG00MqHqlYHR',
      'is_live' => true,
      'has_pending_requirements' => false,
      'has_overdue_requirements' => false,
      'current_deadline' => NULL,
      'status' => 'complete',
      'capabilities' => 
      array (
        'bancontact_payments' => 'active',
        'card_payments' => 'active',
        'eps_payments' => 'active',
        'giropay_payments' => 'active',
        'ideal_payments' => 'active',
        'p24_payments' => 'active',
        'sofort_payments' => 'active',
        'transfers' => 'active',
        'afterpay_clearpay_payments' => 'unrequested',
        'au_becs_debit_payments' => 'unrequested',
        'sepa_debit_payments' => 'unrequested',
      ),
      'capability_requirements' => 
      array (
        'afterpay_clearpay_payments' => 
        array (
          0 => 'business_profile.support_phone',
        ),
        'au_becs_debit_payments' => 
        array (
        ),
        'bancontact_payments' => 
        array (
        ),
        'card_payments' => 
        array (
        ),
        'eps_payments' => 
        array (
        ),
        'giropay_payments' => 
        array (
        ),
        'ideal_payments' => 
        array (
        ),
        'p24_payments' => 
        array (
        ),
        'sepa_debit_payments' => 
        array (
        ),
        'sofort_payments' => 
        array (
        ),
        'transfers' => 
        array (
        ),
      ),
      'payments_enabled' => true,
      'deposits' => 
      array (
        'status' => 'enabled',
        'interval' => 'daily',
        'weekly_anchor' => '',
        'monthly_anchor' => NULL,
        'delay_days' => 2,
        'completed_waiting_period' => true,
        'minimum_deposit_amounts' => 
        array (
          'aud' => 500,
          'cad' => 500,
          'chf' => 500,
          'dkk' => 5000,
          'eur' => 500,
          'gbp' => 500,
          'hkd' => 5000,
          'nok' => 5000,
          'nzd' => 500,
          'sek' => 5000,
          'sgd' => 500,
          'usd' => 500,
        ),
      ),
      'statement_descriptor' => 'FIFTHELEMENTDAYSPA',
      'latest_tos_agreement' => 
      array (
        'date' => '2022-06-22 02:55:53',
        'source' => 'signup',
        'is_current_version' => true,
      ),
      'fees' => 
      array (
        'base' => 
        array (
          'percentage_rate' => 0.0175,
          'fixed_rate' => 30,
          'currency' => 'aud',
        ),
        'discount' => 
        array (
        ),
        'card' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.0175,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'bancontact' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'eps' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.018,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'ideal' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0,
            'fixed_rate' => 80,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'giropay' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'p24' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.022,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'sofort' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
      ),
      'capital' => 
      array (
        'has_active_loan' => false,
        'has_previous_loans' => false,
        'loans' => 
        array (
        ),
      ),
      'fraud_services' => 
      array (
        'stripe' => 
        array (
        ),
        'sift' => 
        array (
          'beacon_key' => 'affbdadb36',
          'sandbox_beacon_key' => '6ad0ad748b',
        ),
      ),
      'store_currencies' => 
      array (
        'default' => 'aud',
        'supported' => 
        array (
          0 => 'aud',
        ),
      ),
      'customer_currencies' => 
      array (
        'supported' => 
        array (
          0 => 'usd',
          1 => 'aed',
          2 => 'afn',
          3 => 'all',
          4 => 'amd',
          5 => 'ang',
          6 => 'aoa',
          7 => 'ars',
          8 => 'aud',
          9 => 'awg',
          10 => 'azn',
          11 => 'bam',
          12 => 'bbd',
          13 => 'bdt',
          14 => 'bgn',
          15 => 'bif',
          16 => 'bmd',
          17 => 'bnd',
          18 => 'bob',
          19 => 'brl',
          20 => 'bsd',
          21 => 'bwp',
          22 => 'byn',
          23 => 'bzd',
          24 => 'cad',
          25 => 'cdf',
          26 => 'chf',
          27 => 'clp',
          28 => 'cny',
          29 => 'cop',
          30 => 'crc',
          31 => 'cve',
          32 => 'czk',
          33 => 'djf',
          34 => 'dkk',
          35 => 'dop',
          36 => 'dzd',
          37 => 'egp',
          38 => 'etb',
          39 => 'eur',
          40 => 'fjd',
          41 => 'fkp',
          42 => 'gbp',
          43 => 'gel',
          44 => 'gip',
          45 => 'gmd',
          46 => 'gnf',
          47 => 'gtq',
          48 => 'gyd',
          49 => 'hkd',
          50 => 'hnl',
          51 => 'hrk',
          52 => 'htg',
          53 => 'huf',
          54 => 'idr',
          55 => 'ils',
          56 => 'inr',
          57 => 'isk',
          58 => 'jmd',
          59 => 'jpy',
          60 => 'kes',
          61 => 'kgs',
          62 => 'khr',
          63 => 'kmf',
          64 => 'krw',
          65 => 'kyd',
          66 => 'kzt',
          67 => 'lak',
          68 => 'lbp',
          69 => 'lkr',
          70 => 'lrd',
          71 => 'lsl',
          72 => 'mad',
          73 => 'mdl',
          74 => 'mga',
          75 => 'mkd',
          76 => 'mmk',
          77 => 'mnt',
          78 => 'mop',
          79 => 'mro',
          80 => 'mur',
          81 => 'mvr',
          82 => 'mwk',
          83 => 'mxn',
          84 => 'myr',
          85 => 'mzn',
          86 => 'nad',
          87 => 'ngn',
          88 => 'nio',
          89 => 'nok',
          90 => 'npr',
          91 => 'nzd',
          92 => 'pab',
          93 => 'pen',
          94 => 'pgk',
          95 => 'php',
          96 => 'pkr',
          97 => 'pln',
          98 => 'pyg',
          99 => 'qar',
          100 => 'ron',
          101 => 'rsd',
          102 => 'rub',
          103 => 'rwf',
          104 => 'sar',
          105 => 'sbd',
          106 => 'scr',
          107 => 'sek',
          108 => 'sgd',
          109 => 'shp',
          110 => 'sle',
          111 => 'sll',
          112 => 'sos',
          113 => 'srd',
          114 => 'std',
          115 => 'szl',
          116 => 'thb',
          117 => 'tjs',
          118 => 'top',
          119 => 'try',
          120 => 'ttd',
          121 => 'twd',
          122 => 'tzs',
          123 => 'uah',
          124 => 'ugx',
          125 => 'uyu',
          126 => 'uzs',
          127 => 'vnd',
          128 => 'vuv',
          129 => 'wst',
          130 => 'xaf',
          131 => 'xcd',
          132 => 'xof',
          133 => 'xpf',
          134 => 'yer',
          135 => 'zar',
          136 => 'zmw',
        ),
      ),
      'country' => '(redacted)',
      'instant_deposits_eligible' => false,
      'card_present_eligible' => false,
      'has_card_readers_available' => false,
      'platform_checkout_eligible' => false,
      'business_profile' => 
      array (
        'name' => '(redacted)',
        'url' => 'https://www.fifthelementdayspa.com.au',
        'support_address' => 
        array (
        ),
        'support_email' => NULL,
        'support_phone' => NULL,
      ),
      'branding' => 
      array (
        'icon' => NULL,
        'logo' => NULL,
        'primary_color' => NULL,
        'secondary_color' => NULL,
      ),
      'locale' => 'en_US',
      'has_more_failed_events' => false,
      'has_submitted_vat_data' => false,
      'is_documents_enabled' => false,
      'card_testing_protection_eligible' => true,
      'progressive_onboarding' => 
      array (
        'is_enabled' => false,
        'is_complete' => false,
      ),
    )
    2022-11-30T03:15:50+00:00 DEBUG Webhook received: payout.created
    2022-11-30T03:15:50+00:00 DEBUG Webhook body: array (
      'id' => 'evt_1M9glz2HR3rQjavPyVxNwOQO',
      'type' => 'payout.created',
      'livemode' => true,
      'account' => 'acct_1LDJjP2HR3rQjavP',
      'data' => 
      array (
        'object' => 
        array (
          'id' => 'po_1M9gh72HR3rQjavPqu3QODqy',
          'object' => 'payout',
          'amount' => 14677,
          'arrival_date' => 1669766400,
          'automatic' => true,
          'balance_transaction' => 'txn_1M9gh82HR3rQjavPmEF1pHhN',
          'created' => 1669777845,
          'currency' => 'aud',
          'description' => 'STRIPE PAYOUT',
          'destination' => 'ba_1LDJmf2HR3rQjavP1YcwQMUl',
          'failure_balance_transaction' => NULL,
          'failure_code' => NULL,
          'failure_message' => NULL,
          'livemode' => true,
          'metadata' => 
          array (
          ),
          'method' => 'standard',
          'original_payout' => NULL,
          'reversed_by' => NULL,
          'source_type' => 'card',
          'statement_descriptor' => 'WooCommerce Payments',
          'status' => 'in_transit',
          'type' => 'bank_account',
        ),
      ),
    )
    2022-11-30T03:21:51+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'fe-administrator',
      'HTTP_REFERER' => 'https://orion.managewp.com/',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/wp-admin/index.php',
      'DOING_AJAX' => false,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T03:21:51+00:00 INFO REQUEST GET https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/disputes/status_counts?test_mode=0
    2022-11-30T03:21:51+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
    )
    2022-11-30T03:21:52+00:00 INFO RESPONSE: array (
    )
    2022-11-30T03:30:16+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'fe-administrator',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/cart',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/checkout',
      'DOING_AJAX' => false,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T03:30:16+00:00 INFO REQUEST GET https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/payment_methods?test_mode=0&customer=cus_MoAwHgL5Ao8l2O&type=card&limit=100
    2022-11-30T03:30:16+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
    )
    2022-11-30T03:30:17+00:00 INFO RESPONSE: array (
      'object' => 'list',
      'data' => 
      array (
        0 => 
        array (
          'id' => 'pm_1M9JAw2HR3rQjavPKWRZCzLL',
          'object' => 'payment_method',
          'billing_details' => 
          array (
            'address' => 
            array (
              'city' => '(redacted)',
              'country' => '(redacted)',
              'line1' => '(redacted)',
              'line2' => '(redacted)',
              'postal_code' => '(redacted)',
              'state' => '(redacted)',
            ),
            'email' => '(redacted)',
            'name' => '(redacted)',
            'phone' => '(redacted)',
          ),
          'card' => 
          array (
            'brand' => 'mastercard',
            'checks' => 
            array (
              'address_line1_check' => 'unavailable',
              'address_postal_code_check' => 'unavailable',
              'cvc_check' => 'pass',
            ),
            'country' => '(redacted)',
            'exp_month' => 2,
            'exp_year' => 2026,
            'fingerprint' => 'RreyNbhXROuOmLPZ',
            'funding' => 'debit',
            'generated_from' => NULL,
            'last4' => '7796',
            'networks' => 
            array (
              'available' => 
              array (
                0 => 'mastercard',
              ),
              'preferred' => NULL,
            ),
            'three_d_secure_usage' => 
            array (
              'supported' => true,
            ),
            'wallet' => NULL,
          ),
          'created' => 1669687438,
          'customer' => 'cus_MoAwHgL5Ao8l2O',
          'livemode' => true,
          'metadata' => 
          array (
          ),
          'type' => 'card',
        ),
      ),
      'has_more' => false,
      'url' => '/v1/payment_methods',
    )
    2022-11-30T03:47:03+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'fe-administrator',
      'HTTP_REFERER' => '--',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&wcpay-login=1&_wpnonce=f5c14fcd9f',
      'DOING_AJAX' => false,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T03:47:03+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/accounts/login_links
    2022-11-30T03:47:03+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => '33ce5063-a07f-4876-a392-af95dd704a51',
    )
    2022-11-30T03:47:03+00:00 INFO BODY: array (
      'test_mode' => false,
      'redirect_url' => 'https://www.fifthelementdayspa.com.au/wp-admin/admin.php?page=wc-admin&path=/payments/overview',
    )
    2022-11-30T03:47:04+00:00 INFO RESPONSE: array (
      'object' => 'login_link',
      'created' => 1669780023,
      'url' => 'https://connect.stripe.com/express/gzLk4p37Plhy',
    )
    2022-11-30T03:49:18+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/treatments/massage',
      'DOING_AJAX' => false,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T03:49:18+00:00 INFO REQUEST GET https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/accounts?test_mode=0
    2022-11-30T03:49:18+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
    )
    2022-11-30T03:49:19+00:00 INFO RESPONSE: array (
      'account_id' => 'acct_1LDJjP2HR3rQjavP',
      'email' => '(redacted)',
      'live_publishable_key' => 'pk_live_iBIpeqzKOOx2Y8PFCRBfyMU000Q7xVG4Sn',
      'test_publishable_key' => 'pk_test_51ETDmyFuiXB5oUVxwSobQMW5Tno1GclIq7ePZWzLeW4q8oa7Zb8hI5VfwI5sNT5nXuKYinLukNvGCXmsQXAoDGHG00MqHqlYHR',
      'is_live' => true,
      'has_pending_requirements' => false,
      'has_overdue_requirements' => false,
      'current_deadline' => NULL,
      'status' => 'complete',
      'capabilities' => 
      array (
        'bancontact_payments' => 'active',
        'card_payments' => 'active',
        'eps_payments' => 'active',
        'giropay_payments' => 'active',
        'ideal_payments' => 'active',
        'p24_payments' => 'active',
        'sofort_payments' => 'active',
        'transfers' => 'active',
        'afterpay_clearpay_payments' => 'unrequested',
        'au_becs_debit_payments' => 'unrequested',
        'sepa_debit_payments' => 'unrequested',
      ),
      'capability_requirements' => 
      array (
        'afterpay_clearpay_payments' => 
        array (
          0 => 'business_profile.support_phone',
        ),
        'au_becs_debit_payments' => 
        array (
        ),
        'bancontact_payments' => 
        array (
        ),
        'card_payments' => 
        array (
        ),
        'eps_payments' => 
        array (
        ),
        'giropay_payments' => 
        array (
        ),
        'ideal_payments' => 
        array (
        ),
        'p24_payments' => 
        array (
        ),
        'sepa_debit_payments' => 
        array (
        ),
        'sofort_payments' => 
        array (
        ),
        'transfers' => 
        array (
        ),
      ),
      'payments_enabled' => true,
      'deposits' => 
      array (
        'status' => 'enabled',
        'interval' => 'daily',
        'weekly_anchor' => '',
        'monthly_anchor' => NULL,
        'delay_days' => 2,
        'completed_waiting_period' => true,
        'minimum_deposit_amounts' => 
        array (
          'aud' => 500,
          'cad' => 500,
          'chf' => 500,
          'dkk' => 5000,
          'eur' => 500,
          'gbp' => 500,
          'hkd' => 5000,
          'nok' => 5000,
          'nzd' => 500,
          'sek' => 5000,
          'sgd' => 500,
          'usd' => 500,
        ),
      ),
      'statement_descriptor' => 'FIFTHELEMENTDAYSPA',
      'latest_tos_agreement' => 
      array (
        'date' => '2022-06-22 02:55:53',
        'source' => 'signup',
        'is_current_version' => true,
      ),
      'fees' => 
      array (
        'base' => 
        array (
          'percentage_rate' => 0.0175,
          'fixed_rate' => 30,
          'currency' => 'aud',
        ),
        'discount' => 
        array (
        ),
        'card' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.0175,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'bancontact' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'eps' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.018,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'ideal' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0,
            'fixed_rate' => 80,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'giropay' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'p24' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.022,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'sofort' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
      ),
      'capital' => 
      array (
        'has_active_loan' => false,
        'has_previous_loans' => false,
        'loans' => 
        array (
        ),
      ),
      'fraud_services' => 
      array (
        'stripe' => 
        array (
        ),
        'sift' => 
        array (
          'beacon_key' => 'affbdadb36',
          'sandbox_beacon_key' => '6ad0ad748b',
        ),
      ),
      'store_currencies' => 
      array (
        'default' => 'aud',
        'supported' => 
        array (
          0 => 'aud',
        ),
      ),
      'customer_currencies' => 
      array (
        'supported' => 
        array (
          0 => 'usd',
          1 => 'aed',
          2 => 'afn',
          3 => 'all',
          4 => 'amd',
          5 => 'ang',
          6 => 'aoa',
          7 => 'ars',
          8 => 'aud',
          9 => 'awg',
          10 => 'azn',
          11 => 'bam',
          12 => 'bbd',
          13 => 'bdt',
          14 => 'bgn',
          15 => 'bif',
          16 => 'bmd',
          17 => 'bnd',
          18 => 'bob',
          19 => 'brl',
          20 => 'bsd',
          21 => 'bwp',
          22 => 'byn',
          23 => 'bzd',
          24 => 'cad',
          25 => 'cdf',
          26 => 'chf',
          27 => 'clp',
          28 => 'cny',
          29 => 'cop',
          30 => 'crc',
          31 => 'cve',
          32 => 'czk',
          33 => 'djf',
          34 => 'dkk',
          35 => 'dop',
          36 => 'dzd',
          37 => 'egp',
          38 => 'etb',
          39 => 'eur',
          40 => 'fjd',
          41 => 'fkp',
          42 => 'gbp',
          43 => 'gel',
          44 => 'gip',
          45 => 'gmd',
          46 => 'gnf',
          47 => 'gtq',
          48 => 'gyd',
          49 => 'hkd',
          50 => 'hnl',
          51 => 'hrk',
          52 => 'htg',
          53 => 'huf',
          54 => 'idr',
          55 => 'ils',
          56 => 'inr',
          57 => 'isk',
          58 => 'jmd',
          59 => 'jpy',
          60 => 'kes',
          61 => 'kgs',
          62 => 'khr',
          63 => 'kmf',
          64 => 'krw',
          65 => 'kyd',
          66 => 'kzt',
          67 => 'lak',
          68 => 'lbp',
          69 => 'lkr',
          70 => 'lrd',
          71 => 'lsl',
          72 => 'mad',
          73 => 'mdl',
          74 => 'mga',
          75 => 'mkd',
          76 => 'mmk',
          77 => 'mnt',
          78 => 'mop',
          79 => 'mro',
          80 => 'mur',
          81 => 'mvr',
          82 => 'mwk',
          83 => 'mxn',
          84 => 'myr',
          85 => 'mzn',
          86 => 'nad',
          87 => 'ngn',
          88 => 'nio',
          89 => 'nok',
          90 => 'npr',
          91 => 'nzd',
          92 => 'pab',
          93 => 'pen',
          94 => 'pgk',
          95 => 'php',
          96 => 'pkr',
          97 => 'pln',
          98 => 'pyg',
          99 => 'qar',
          100 => 'ron',
          101 => 'rsd',
          102 => 'rub',
          103 => 'rwf',
          104 => 'sar',
          105 => 'sbd',
          106 => 'scr',
          107 => 'sek',
          108 => 'sgd',
          109 => 'shp',
          110 => 'sle',
          111 => 'sll',
          112 => 'sos',
          113 => 'srd',
          114 => 'std',
          115 => 'szl',
          116 => 'thb',
          117 => 'tjs',
          118 => 'top',
          119 => 'try',
          120 => 'ttd',
          121 => 'twd',
          122 => 'tzs',
          123 => 'uah',
          124 => 'ugx',
          125 => 'uyu',
          126 => 'uzs',
          127 => 'vnd',
          128 => 'vuv',
          129 => 'wst',
          130 => 'xaf',
          131 => 'xcd',
          132 => 'xof',
          133 => 'xpf',
          134 => 'yer',
          135 => 'zar',
          136 => 'zmw',
        ),
      ),
      'country' => '(redacted)',
      'instant_deposits_eligible' => false,
      'card_present_eligible' => false,
      'has_card_readers_available' => false,
      'platform_checkout_eligible' => false,
      'business_profile' => 
      array (
        'name' => '(redacted)',
        'url' => 'https://www.fifthelementdayspa.com.au',
        'support_address' => 
        array (
        ),
        'support_email' => NULL,
        'support_phone' => NULL,
      ),
      'branding' => 
      array (
        'icon' => NULL,
        'logo' => NULL,
        'primary_color' => NULL,
        'secondary_color' => NULL,
      ),
      'locale' => 'en_US',
      'has_more_failed_events' => false,
      'has_submitted_vat_data' => false,
      'is_documents_enabled' => false,
      'card_testing_protection_eligible' => true,
      'progressive_onboarding' => 
      array (
        'is_enabled' => false,
        'is_complete' => false,
      ),
    )
    2022-11-30T03:54:52+00:00 DEBUG Webhook received: account.updated
    2022-11-30T03:54:52+00:00 DEBUG Webhook body: array (
      'id' => 'evt_1M9hNk2HR3rQjavPLBONTQE8',
      'type' => 'account.updated',
      'livemode' => true,
      'account' => 'acct_1LDJjP2HR3rQjavP',
    )
    2022-11-30T03:54:52+00:00 INFO ENVIRONMENT: array (
      'WP_User' => '[email protected]',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/?rest_route=wcv3paymentswebhook&_for=jetpack&token=TU8OMDzLiwrvXrM4bCLtM3qNrR8Ug12&timestamp=1669780490&nonce=OYiXIGghbX&body-hash=fV8gFBbaZdsOLTYKXM4Y83zhxgs&signature=0ywXDskJlT7XEufAYdSesYhbFI',
      'HTTP_USER_AGENT' => 'Jetpack by WordPress.com',
      'REQUEST_URI' => '/?rest_route=wcv3paymentswebhook&_for=jetpack&token=TU8OMDzLiwrvXrM4bCLtM3qNrR8Ug12&timestamp=1669780490&nonce=OYiXIGghbX&body-hash=fV8gFBbaZdsOLTYKXM4Y83zhxgs&signature=0ywXDskJlT7XEufAYdSesYhbFI',
      'DOING_AJAX' => false,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T03:54:52+00:00 INFO REQUEST GET https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/accounts?test_mode=0
    2022-11-30T03:54:52+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
    )
    2022-11-30T03:54:54+00:00 INFO RESPONSE: array (
      'account_id' => 'acct_1LDJjP2HR3rQjavP',
      'email' => '(redacted)',
      'live_publishable_key' => 'pk_live_iBIpeqzKOOx2Y8PFCRBfyMU000Q7xVG4Sn',
      'test_publishable_key' => 'pk_test_51ETDmyFuiXB5oUVxwSobQMW5Tno1GclIq7ePZWzLeW4q8oa7Zb8hI5VfwI5sNT5nXuKYinLukNvGCXmsQXAoDGHG00MqHqlYHR',
      'is_live' => true,
      'has_pending_requirements' => false,
      'has_overdue_requirements' => false,
      'current_deadline' => NULL,
      'status' => 'complete',
      'capabilities' => 
      array (
        'bancontact_payments' => 'active',
        'card_payments' => 'active',
        'eps_payments' => 'active',
        'giropay_payments' => 'active',
        'ideal_payments' => 'active',
        'p24_payments' => 'active',
        'sofort_payments' => 'active',
        'transfers' => 'active',
        'afterpay_clearpay_payments' => 'unrequested',
        'au_becs_debit_payments' => 'unrequested',
        'sepa_debit_payments' => 'unrequested',
      ),
      'capability_requirements' => 
      array (
        'afterpay_clearpay_payments' => 
        array (
          0 => 'business_profile.support_phone',
        ),
        'au_becs_debit_payments' => 
        array (
        ),
        'bancontact_payments' => 
        array (
        ),
        'card_payments' => 
        array (
        ),
        'eps_payments' => 
        array (
        ),
        'giropay_payments' => 
        array (
        ),
        'ideal_payments' => 
        array (
        ),
        'p24_payments' => 
        array (
        ),
        'sepa_debit_payments' => 
        array (
        ),
        'sofort_payments' => 
        array (
        ),
        'transfers' => 
        array (
        ),
      ),
      'payments_enabled' => true,
      'deposits' => 
      array (
        'status' => 'enabled',
        'interval' => 'daily',
        'weekly_anchor' => '',
        'monthly_anchor' => NULL,
        'delay_days' => 2,
        'completed_waiting_period' => true,
        'minimum_deposit_amounts' => 
        array (
          'aud' => 500,
          'cad' => 500,
          'chf' => 500,
          'dkk' => 5000,
          'eur' => 500,
          'gbp' => 500,
          'hkd' => 5000,
          'nok' => 5000,
          'nzd' => 500,
          'sek' => 5000,
          'sgd' => 500,
          'usd' => 500,
        ),
      ),
      'statement_descriptor' => 'FIFTHELEMENTDAYSPA',
      'latest_tos_agreement' => 
      array (
        'date' => '2022-06-22 02:55:53',
        'source' => 'signup',
        'is_current_version' => true,
      ),
      'fees' => 
      array (
        'base' => 
        array (
          'percentage_rate' => 0.0175,
          'fixed_rate' => 30,
          'currency' => 'aud',
        ),
        'discount' => 
        array (
        ),
        'card' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.0175,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'bancontact' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'eps' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.018,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'ideal' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0,
            'fixed_rate' => 80,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'giropay' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'p24' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.022,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'sofort' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
      ),
      'capital' => 
      array (
        'has_active_loan' => false,
        'has_previous_loans' => false,
        'loans' => 
        array (
        ),
      ),
      'fraud_services' => 
      array (
        'stripe' => 
        array (
        ),
        'sift' => 
        array (
          'beacon_key' => 'affbdadb36',
          'sandbox_beacon_key' => '6ad0ad748b',
        ),
      ),
      'store_currencies' => 
      array (
        'default' => 'aud',
        'supported' => 
        array (
          0 => 'aud',
        ),
      ),
      'customer_currencies' => 
      array (
        'supported' => 
        array (
          0 => 'usd',
          1 => 'aed',
          2 => 'afn',
          3 => 'all',
          4 => 'amd',
          5 => 'ang',
          6 => 'aoa',
          7 => 'ars',
          8 => 'aud',
          9 => 'awg',
          10 => 'azn',
          11 => 'bam',
          12 => 'bbd',
          13 => 'bdt',
          14 => 'bgn',
          15 => 'bif',
          16 => 'bmd',
          17 => 'bnd',
          18 => 'bob',
          19 => 'brl',
          20 => 'bsd',
          21 => 'bwp',
          22 => 'byn',
          23 => 'bzd',
          24 => 'cad',
          25 => 'cdf',
          26 => 'chf',
          27 => 'clp',
          28 => 'cny',
          29 => 'cop',
          30 => 'crc',
          31 => 'cve',
          32 => 'czk',
          33 => 'djf',
          34 => 'dkk',
          35 => 'dop',
          36 => 'dzd',
          37 => 'egp',
          38 => 'etb',
          39 => 'eur',
          40 => 'fjd',
          41 => 'fkp',
          42 => 'gbp',
          43 => 'gel',
          44 => 'gip',
          45 => 'gmd',
          46 => 'gnf',
          47 => 'gtq',
          48 => 'gyd',
          49 => 'hkd',
          50 => 'hnl',
          51 => 'hrk',
          52 => 'htg',
          53 => 'huf',
          54 => 'idr',
          55 => 'ils',
          56 => 'inr',
          57 => 'isk',
          58 => 'jmd',
          59 => 'jpy',
          60 => 'kes',
          61 => 'kgs',
          62 => 'khr',
          63 => 'kmf',
          64 => 'krw',
          65 => 'kyd',
          66 => 'kzt',
          67 => 'lak',
          68 => 'lbp',
          69 => 'lkr',
          70 => 'lrd',
          71 => 'lsl',
          72 => 'mad',
          73 => 'mdl',
          74 => 'mga',
          75 => 'mkd',
          76 => 'mmk',
          77 => 'mnt',
          78 => 'mop',
          79 => 'mro',
          80 => 'mur',
          81 => 'mvr',
          82 => 'mwk',
          83 => 'mxn',
          84 => 'myr',
          85 => 'mzn',
          86 => 'nad',
          87 => 'ngn',
          88 => 'nio',
          89 => 'nok',
          90 => 'npr',
          91 => 'nzd',
          92 => 'pab',
          93 => 'pen',
          94 => 'pgk',
          95 => 'php',
          96 => 'pkr',
          97 => 'pln',
          98 => 'pyg',
          99 => 'qar',
          100 => 'ron',
          101 => 'rsd',
          102 => 'rub',
          103 => 'rwf',
          104 => 'sar',
          105 => 'sbd',
          106 => 'scr',
          107 => 'sek',
          108 => 'sgd',
          109 => 'shp',
          110 => 'sle',
          111 => 'sll',
          112 => 'sos',
          113 => 'srd',
          114 => 'std',
          115 => 'szl',
          116 => 'thb',
          117 => 'tjs',
          118 => 'top',
          119 => 'try',
          120 => 'ttd',
          121 => 'twd',
          122 => 'tzs',
          123 => 'uah',
          124 => 'ugx',
          125 => 'uyu',
          126 => 'uzs',
          127 => 'vnd',
          128 => 'vuv',
          129 => 'wst',
          130 => 'xaf',
          131 => 'xcd',
          132 => 'xof',
          133 => 'xpf',
          134 => 'yer',
          135 => 'zar',
          136 => 'zmw',
        ),
      ),
      'country' => '(redacted)',
      'instant_deposits_eligible' => false,
      'card_present_eligible' => false,
      'has_card_readers_available' => false,
      'platform_checkout_eligible' => false,
      'business_profile' => 
      array (
        'name' => '(redacted)',
        'url' => 'https://www.fifthelementdayspa.com.au',
        'support_address' => 
        array (
        ),
        'support_email' => NULL,
        'support_phone' => NULL,
      ),
      'branding' => 
      array (
        'icon' => NULL,
        'logo' => NULL,
        'primary_color' => NULL,
        'secondary_color' => NULL,
      ),
      'locale' => 'en_US',
      'has_more_failed_events' => false,
      'has_submitted_vat_data' => false,
      'is_documents_enabled' => false,
      'card_testing_protection_eligible' => true,
      'progressive_onboarding' => 
      array (
        'is_enabled' => false,
        'is_complete' => false,
      ),
    )
    2022-11-30T06:09:09+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/wp-admin/',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/wp-admin/edit.php?post_type=shop_order',
      'DOING_AJAX' => false,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T06:09:09+00:00 INFO REQUEST GET https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/accounts?test_mode=0
    2022-11-30T06:09:09+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
    )
    2022-11-30T06:09:11+00:00 INFO RESPONSE: array (
      'account_id' => 'acct_1LDJjP2HR3rQjavP',
      'email' => '(redacted)',
      'live_publishable_key' => 'pk_live_iBIpeqzKOOx2Y8PFCRBfyMU000Q7xVG4Sn',
      'test_publishable_key' => 'pk_test_51ETDmyFuiXB5oUVxwSobQMW5Tno1GclIq7ePZWzLeW4q8oa7Zb8hI5VfwI5sNT5nXuKYinLukNvGCXmsQXAoDGHG00MqHqlYHR',
      'is_live' => true,
      'has_pending_requirements' => false,
      'has_overdue_requirements' => false,
      'current_deadline' => NULL,
      'status' => 'complete',
      'capabilities' => 
      array (
        'bancontact_payments' => 'active',
        'card_payments' => 'active',
        'eps_payments' => 'active',
        'giropay_payments' => 'active',
        'ideal_payments' => 'active',
        'p24_payments' => 'active',
        'sofort_payments' => 'active',
        'transfers' => 'active',
        'afterpay_clearpay_payments' => 'unrequested',
        'au_becs_debit_payments' => 'unrequested',
        'sepa_debit_payments' => 'unrequested',
      ),
      'capability_requirements' => 
      array (
        'afterpay_clearpay_payments' => 
        array (
          0 => 'business_profile.support_phone',
        ),
        'au_becs_debit_payments' => 
        array (
        ),
        'bancontact_payments' => 
        array (
        ),
        'card_payments' => 
        array (
        ),
        'eps_payments' => 
        array (
        ),
        'giropay_payments' => 
        array (
        ),
        'ideal_payments' => 
        array (
        ),
        'p24_payments' => 
        array (
        ),
        'sepa_debit_payments' => 
        array (
        ),
        'sofort_payments' => 
        array (
        ),
        'transfers' => 
        array (
        ),
      ),
      'payments_enabled' => true,
      'deposits' => 
      array (
        'status' => 'enabled',
        'interval' => 'daily',
        'weekly_anchor' => '',
        'monthly_anchor' => NULL,
        'delay_days' => 2,
        'completed_waiting_period' => true,
        'minimum_deposit_amounts' => 
        array (
          'aud' => 500,
          'cad' => 500,
          'chf' => 500,
          'dkk' => 5000,
          'eur' => 500,
          'gbp' => 500,
          'hkd' => 5000,
          'nok' => 5000,
          'nzd' => 500,
          'sek' => 5000,
          'sgd' => 500,
          'usd' => 500,
        ),
      ),
      'statement_descriptor' => 'FIFTHELEMENTDAYSPA',
      'latest_tos_agreement' => 
      array (
        'date' => '2022-06-22 02:55:53',
        'source' => 'signup',
        'is_current_version' => true,
      ),
      'fees' => 
      array (
        'base' => 
        array (
          'percentage_rate' => 0.0175,
          'fixed_rate' => 30,
          'currency' => 'aud',
        ),
        'discount' => 
        array (
        ),
        'card' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.0175,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'bancontact' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'eps' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.018,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'ideal' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0,
            'fixed_rate' => 80,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'giropay' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'p24' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.022,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'sofort' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
      ),
      'capital' => 
      array (
        'has_active_loan' => false,
        'has_previous_loans' => false,
        'loans' => 
        array (
        ),
      ),
      'fraud_services' => 
      array (
        'stripe' => 
        array (
        ),
        'sift' => 
        array (
          'beacon_key' => 'affbdadb36',
          'sandbox_beacon_key' => '6ad0ad748b',
        ),
      ),
      'store_currencies' => 
      array (
        'default' => 'aud',
        'supported' => 
        array (
          0 => 'aud',
        ),
      ),
      'customer_currencies' => 
      array (
        'supported' => 
        array (
          0 => 'usd',
          1 => 'aed',
          2 => 'afn',
          3 => 'all',
          4 => 'amd',
          5 => 'ang',
          6 => 'aoa',
          7 => 'ars',
          8 => 'aud',
          9 => 'awg',
          10 => 'azn',
          11 => 'bam',
          12 => 'bbd',
          13 => 'bdt',
          14 => 'bgn',
          15 => 'bif',
          16 => 'bmd',
          17 => 'bnd',
          18 => 'bob',
          19 => 'brl',
          20 => 'bsd',
          21 => 'bwp',
          22 => 'byn',
          23 => 'bzd',
          24 => 'cad',
          25 => 'cdf',
          26 => 'chf',
          27 => 'clp',
          28 => 'cny',
          29 => 'cop',
          30 => 'crc',
          31 => 'cve',
          32 => 'czk',
          33 => 'djf',
          34 => 'dkk',
          35 => 'dop',
          36 => 'dzd',
          37 => 'egp',
          38 => 'etb',
          39 => 'eur',
          40 => 'fjd',
          41 => 'fkp',
          42 => 'gbp',
          43 => 'gel',
          44 => 'gip',
          45 => 'gmd',
          46 => 'gnf',
          47 => 'gtq',
          48 => 'gyd',
          49 => 'hkd',
          50 => 'hnl',
          51 => 'hrk',
          52 => 'htg',
          53 => 'huf',
          54 => 'idr',
          55 => 'ils',
          56 => 'inr',
          57 => 'isk',
          58 => 'jmd',
          59 => 'jpy',
          60 => 'kes',
          61 => 'kgs',
          62 => 'khr',
          63 => 'kmf',
          64 => 'krw',
          65 => 'kyd',
          66 => 'kzt',
          67 => 'lak',
          68 => 'lbp',
          69 => 'lkr',
          70 => 'lrd',
          71 => 'lsl',
          72 => 'mad',
          73 => 'mdl',
          74 => 'mga',
          75 => 'mkd',
          76 => 'mmk',
          77 => 'mnt',
          78 => 'mop',
          79 => 'mro',
          80 => 'mur',
          81 => 'mvr',
          82 => 'mwk',
          83 => 'mxn',
          84 => 'myr',
          85 => 'mzn',
          86 => 'nad',
          87 => 'ngn',
          88 => 'nio',
          89 => 'nok',
          90 => 'npr',
          91 => 'nzd',
          92 => 'pab',
          93 => 'pen',
          94 => 'pgk',
          95 => 'php',
          96 => 'pkr',
          97 => 'pln',
          98 => 'pyg',
          99 => 'qar',
          100 => 'ron',
          101 => 'rsd',
          102 => 'rub',
          103 => 'rwf',
          104 => 'sar',
          105 => 'sbd',
          106 => 'scr',
          107 => 'sek',
          108 => 'sgd',
          109 => 'shp',
          110 => 'sle',
          111 => 'sll',
          112 => 'sos',
          113 => 'srd',
          114 => 'std',
          115 => 'szl',
          116 => 'thb',
          117 => 'tjs',
          118 => 'top',
          119 => 'try',
          120 => 'ttd',
          121 => 'twd',
          122 => 'tzs',
          123 => 'uah',
          124 => 'ugx',
          125 => 'uyu',
          126 => 'uzs',
          127 => 'vnd',
          128 => 'vuv',
          129 => 'wst',
          130 => 'xaf',
          131 => 'xcd',
          132 => 'xof',
          133 => 'xpf',
          134 => 'yer',
          135 => 'zar',
          136 => 'zmw',
        ),
      ),
      'country' => '(redacted)',
      'instant_deposits_eligible' => false,
      'card_present_eligible' => false,
      'has_card_readers_available' => false,
      'platform_checkout_eligible' => false,
      'business_profile' => 
      array (
        'name' => '(redacted)',
        'url' => 'https://www.fifthelementdayspa.com.au',
        'support_address' => 
        array (
        ),
        'support_email' => NULL,
        'support_phone' => NULL,
      ),
      'branding' => 
      array (
        'icon' => NULL,
        'logo' => NULL,
        'primary_color' => NULL,
        'secondary_color' => NULL,
      ),
      'locale' => 'en_US',
      'has_more_failed_events' => false,
      'has_submitted_vat_data' => false,
      'is_documents_enabled' => false,
      'card_testing_protection_eligible' => true,
      'progressive_onboarding' => 
      array (
        'is_enabled' => false,
        'is_complete' => false,
      ),
    )
    2022-11-30T06:34:00+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/?wc-ajax=wcpay_create_payment_intent',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T06:34:00+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions
    2022-11-30T06:34:00+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => '66b37da4-6b2b-4a1d-a9cb-54d3e0ed4aad',
    )
    2022-11-30T06:34:00+00:00 INFO BODY: array (
      'test_mode' => false,
      'amount' => 16000,
      'currency' => 'aud',
      'description' => 'Online Payment for www.fifthelementdayspa.com.au blog_id 208137982',
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'capture_method' => 'automatic',
      'metadata' => 
      array (
        'fraud_prevention_data_shopper_ip_hash' => 'ff63ce519cb188f8627e80c84a0338d280112a2d4164438cf8c05f01a36df71a03b61313fefaeff2c8c2541ff00e6f2a623bfa104ccb0ae4a4286996e67ec313',
        'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
        'fraud_prevention_data_available' => true,
      ),
    )
    2022-11-30T06:34:01+00:00 INFO RESPONSE: array (
      'id' => 'pi_3M9jrp2HR3rQjavP1A1zFwm6',
      'object' => 'payment_intent',
      'amount' => 16000,
      'amount_capturable' => 0,
      'amount_details' => 
      array (
        'tip' => 
        array (
        ),
      ),
      'amount_received' => 0,
      'amount_subtotal' => 16000,
      'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
      'application_fee_amount' => 310,
      'automatic_payment_methods' => NULL,
      'canceled_at' => NULL,
      'cancellation_reason' => NULL,
      'capture_method' => 'automatic',
      'charges' => 
      array (
        'object' => 'list',
        'data' => 
        array (
        ),
        'has_more' => false,
        'total_count' => 0,
        'url' => '/v1/charges?payment_intent=pi_3M9jrp2HR3rQjavP1A1zFwm6',
      ),
      'client_secret' => '(redacted)',
      'confirmation_method' => 'automatic',
      'created' => 1669790041,
      'currency' => 'aud',
      'customer' => NULL,
      'description' => 'Online Payment for www.fifthelementdayspa.com.au blog_id 208137982',
      'invoice' => NULL,
      'last_payment_error' => NULL,
      'level3' => NULL,
      'livemode' => true,
      'metadata' => 
      array (
        'fraud_prevention_data_available' => '1',
        'fraud_prevention_data_shopper_ip_hash' => 'ff63ce519cb188f8627e80c84a0338d280112a2d4164438cf8c05f01a36df71a03b61313fefaeff2c8c2541ff00e6f2a623bfa104ccb0ae4a4286996e67ec313',
        'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
      ),
      'next_action' => NULL,
      'on_behalf_of' => NULL,
      'payment_method' => NULL,
      'payment_method_options' => 
      array (
        'card' => 
        array (
          'installments' => NULL,
          'mandate_options' => NULL,
          'network' => NULL,
          'request_three_d_secure' => 'automatic',
        ),
      ),
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'processing' => NULL,
      'receipt_email' => NULL,
      'review' => NULL,
      'setup_future_usage' => NULL,
      'shipping' => NULL,
      'source' => NULL,
      'statement_descriptor' => NULL,
      'statement_descriptor_suffix' => NULL,
      'status' => 'requires_payment_method',
      'total_details' => 
      array (
        'amount_discount' => 0,
        'amount_tax' => 0,
      ),
      'transfer_data' => NULL,
      'transfer_group' => NULL,
      'fee_history' => 
      array (
        0 => 
        array (
          'type' => 'base',
          'fee_id' => 'base-au-fee',
          'percentage_rate' => 0.0175,
          'fixed_rate' => 30,
          'currency' => 'aud',
        ),
      ),
    )
    2022-11-30T06:59:41+00:00 DEBUG Webhook received: payout.paid
    2022-11-30T06:59:41+00:00 DEBUG Webhook body: array (
      'id' => 'evt_1M9kGb2HR3rQjavPWQXlG4v9',
      'type' => 'payout.paid',
      'livemode' => true,
      'account' => 'acct_1LDJjP2HR3rQjavP',
      'data' => 
      array (
        'object' => 
        array (
          'id' => 'po_1M9gh72HR3rQjavPqu3QODqy',
          'object' => 'payout',
          'amount' => 14677,
          'arrival_date' => 1669766400,
          'automatic' => true,
          'balance_transaction' => 'txn_1M9gh82HR3rQjavPmEF1pHhN',
          'created' => 1669777845,
          'currency' => 'aud',
          'description' => 'STRIPE PAYOUT',
          'destination' => 'ba_1LDJmf2HR3rQjavP1YcwQMUl',
          'failure_balance_transaction' => NULL,
          'failure_code' => NULL,
          'failure_message' => NULL,
          'livemode' => true,
          'metadata' => 
          array (
          ),
          'method' => 'standard',
          'original_payout' => NULL,
          'reversed_by' => NULL,
          'source_type' => 'card',
          'statement_descriptor' => 'WooCommerce Payments',
          'status' => 'paid',
          'type' => 'bank_account',
        ),
      ),
    )
    2022-11-30T10:50:26+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/?wc-ajax=wcpay_create_payment_intent',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T10:50:26+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions
    2022-11-30T10:50:26+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => '6d310b86-1eef-4595-9053-5545456cd3eb',
    )
    2022-11-30T10:50:26+00:00 INFO BODY: array (
      'test_mode' => false,
      'amount' => 16000,
      'currency' => 'aud',
      'description' => 'Online Payment for www.fifthelementdayspa.com.au blog_id 208137982',
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'capture_method' => 'automatic',
      'metadata' => 
      array (
        'fraud_prevention_data_shopper_ip_hash' => 'dfa9aa822b2f6408315a930469975efeb1d87e586e4f23faf665abf9337e6d918cd286486445507b4d34b2bc2bf201646a38450b6f747c34c0e5ebf319faeeca',
        'fraud_prevention_data_shopper_ua_hash' => '69cdbfd5a8f86e842c3352ab829c5de97104298a7ef979e314836ff70f982d41afe80b8111e8c4d76728d65c2430efc49e24595c5fb69d284a25ce38904751fe',
        'fraud_prevention_data_available' => true,
      ),
    )
    2022-11-30T10:50:27+00:00 INFO RESPONSE: array (
      'id' => 'pi_3M9nry2HR3rQjavP1w7pxKIK',
      'object' => 'payment_intent',
      'amount' => 16000,
      'amount_capturable' => 0,
      'amount_details' => 
      array (
        'tip' => 
        array (
        ),
      ),
      'amount_received' => 0,
      'amount_subtotal' => 16000,
      'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
      'application_fee_amount' => 310,
      'automatic_payment_methods' => NULL,
      'canceled_at' => NULL,
      'cancellation_reason' => NULL,
      'capture_method' => 'automatic',
      'charges' => 
      array (
        'object' => 'list',
        'data' => 
        array (
        ),
        'has_more' => false,
        'total_count' => 0,
        'url' => '/v1/charges?payment_intent=pi_3M9nry2HR3rQjavP1w7pxKIK',
      ),
      'client_secret' => '(redacted)',
      'confirmation_method' => 'automatic',
      'created' => 1669805426,
      'currency' => 'aud',
      'customer' => NULL,
      'description' => 'Online Payment for www.fifthelementdayspa.com.au blog_id 208137982',
      'invoice' => NULL,
      'last_payment_error' => NULL,
      'level3' => NULL,
      'livemode' => true,
      'metadata' => 
      array (
        'fraud_prevention_data_available' => '1',
        'fraud_prevention_data_shopper_ip_hash' => 'dfa9aa822b2f6408315a930469975efeb1d87e586e4f23faf665abf9337e6d918cd286486445507b4d34b2bc2bf201646a38450b6f747c34c0e5ebf319faeeca',
        'fraud_prevention_data_shopper_ua_hash' => '69cdbfd5a8f86e842c3352ab829c5de97104298a7ef979e314836ff70f982d41afe80b8111e8c4d76728d65c2430efc49e24595c5fb69d284a25ce38904751fe',
      ),
      'next_action' => NULL,
      'on_behalf_of' => NULL,
      'payment_method' => NULL,
      'payment_method_options' => 
      array (
        'card' => 
        array (
          'installments' => NULL,
          'mandate_options' => NULL,
          'network' => NULL,
          'request_three_d_secure' => 'automatic',
        ),
      ),
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'processing' => NULL,
      'receipt_email' => NULL,
      'review' => NULL,
      'setup_future_usage' => NULL,
      'shipping' => NULL,
      'source' => NULL,
      'statement_descriptor' => NULL,
      'statement_descriptor_suffix' => NULL,
      'status' => 'requires_payment_method',
      'total_details' => 
      array (
        'amount_discount' => 0,
        'amount_tax' => 0,
      ),
      'transfer_data' => NULL,
      'transfer_group' => NULL,
      'fee_history' => 
      array (
        0 => 
        array (
          'type' => 'base',
          'fee_id' => 'base-au-fee',
          'percentage_rate' => 0.0175,
          'fixed_rate' => 30,
          'currency' => 'aud',
        ),
      ),
    )
    2022-11-30T10:51:43+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/?wc-ajax=checkout',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T10:51:43+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/customers
    2022-11-30T10:51:43+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => '580c12c3-940e-49c1-a001-50adc2eff80c',
    )
    2022-11-30T10:51:43+00:00 INFO BODY: array (
      'test_mode' => false,
      'name' => '(redacted)',
      'description' => 'Name: Denise Tuite, Guest',
      'email' => '(redacted)',
      'phone' => '(redacted)',
      'address' => 
      array (
        'line1' => '(redacted)',
        'line2' => '(redacted)',
        'postal_code' => '(redacted)',
        'city' => '(redacted)',
        'state' => '(redacted)',
        'country' => '(redacted)',
      ),
      'shipping' => 
      array (
        'name' => '(redacted)',
        'address' => 
        array (
          'line1' => '(redacted)',
          'line2' => '(redacted)',
          'postal_code' => '(redacted)',
          'city' => '(redacted)',
          'state' => '(redacted)',
          'country' => '(redacted)',
        ),
      ),
      'session_id' => '208137982_t_fb12601f70809b0ec6da1cab1643b2',
    )
    2022-11-30T10:51:44+00:00 INFO RESPONSE: array (
      'id' => 'cus_Mtb5XLZv1Yw20g',
      'object' => 'customer',
      'address' => 
      array (
        'city' => '(redacted)',
        'country' => '(redacted)',
        'line1' => '(redacted)',
        'line2' => '(redacted)',
        'postal_code' => '(redacted)',
        'state' => '(redacted)',
      ),
      'balance' => 0,
      'created' => 1669805503,
      'currency' => NULL,
      'default_currency' => NULL,
      'default_source' => NULL,
      'delinquent' => false,
      'description' => 'Name: Denise Tuite, Guest',
      'discount' => NULL,
      'email' => '(redacted)',
      'invoice_prefix' => '918A5928',
      'invoice_settings' => 
      array (
        'custom_fields' => NULL,
        'default_payment_method' => NULL,
        'footer' => NULL,
        'rendering_options' => NULL,
      ),
      'livemode' => true,
      'metadata' => 'stdClass()',
      'name' => '(redacted)',
      'next_invoice_sequence' => 1,
      'phone' => '(redacted)',
      'preferred_locales' => 
      array (
      ),
      'shipping' => 
      array (
        'address' => 
        array (
          'city' => '(redacted)',
          'country' => '(redacted)',
          'line1' => '(redacted)',
          'line2' => '(redacted)',
          'postal_code' => '(redacted)',
          'state' => '(redacted)',
        ),
        'name' => '(redacted)',
        'phone' => '(redacted)',
      ),
      'tax_exempt' => 'none',
      'test_clock' => NULL,
    )
    2022-11-30T10:51:44+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/?wc-ajax=checkout',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T10:51:44+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions/pi_3M9nry2HR3rQjavP1w7pxKIK
    2022-11-30T10:51:44+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => '278502ef-e671-4518-9c48-db65034b2c5a',
    )
    2022-11-30T10:51:44+00:00 INFO BODY: array (
      'test_mode' => false,
      'amount' => 16000,
      'currency' => 'aud',
      'receipt_email' => '',
      'metadata' => 
      array (
        'customer_name' => '(redacted)',
        'customer_email' => '(redacted)',
        'site_url' => 'https://www.fifthelementdayspa.com.au',
        'order_id' => 11274,
        'order_number' => '11274',
        'order_key' => 'wc_order_fZq6K72z7cgQ0',
        'payment_type' => 'WCPay\\Constants\\Payment_Type()',
      ),
      'level3' => 
      array (
      ),
      'description' => 'Online Payment for Order #11274 for www.fifthelementdayspa.com.au blog_id 208137982',
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'payment_country' => 'AU',
      'customer' => 'cus_Mtb5XLZv1Yw20g',
    )
    2022-11-30T10:51:45+00:00 INFO RESPONSE: array (
      'id' => 'pi_3M9nry2HR3rQjavP1w7pxKIK',
      'object' => 'payment_intent',
      'amount' => 16000,
      'amount_capturable' => 0,
      'amount_details' => 
      array (
        'tip' => 
        array (
        ),
      ),
      'amount_received' => 0,
      'amount_subtotal' => 16000,
      'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
      'application_fee_amount' => 310,
      'automatic_payment_methods' => NULL,
      'canceled_at' => NULL,
      'cancellation_reason' => NULL,
      'capture_method' => 'automatic',
      'charges' => 
      array (
        'object' => 'list',
        'data' => 
        array (
        ),
        'has_more' => false,
        'total_count' => 0,
        'url' => '/v1/charges?payment_intent=pi_3M9nry2HR3rQjavP1w7pxKIK',
      ),
      'client_secret' => '(redacted)',
      'confirmation_method' => 'automatic',
      'created' => 1669805426,
      'currency' => 'aud',
      'customer' => 'cus_Mtb5XLZv1Yw20g',
      'description' => 'Online Payment for Order #11274 for www.fifthelementdayspa.com.au blog_id 208137982',
      'invoice' => NULL,
      'last_payment_error' => NULL,
      'level3' => NULL,
      'livemode' => true,
      'metadata' => 
      array (
        'customer_email' => '(redacted)',
        'customer_name' => '(redacted)',
        'fraud_prevention_data_available' => '1',
        'fraud_prevention_data_shopper_ip_hash' => 'dfa9aa822b2f6408315a930469975efeb1d87e586e4f23faf665abf9337e6d918cd286486445507b4d34b2bc2bf201646a38450b6f747c34c0e5ebf319faeeca',
        'fraud_prevention_data_shopper_ua_hash' => '69cdbfd5a8f86e842c3352ab829c5de97104298a7ef979e314836ff70f982d41afe80b8111e8c4d76728d65c2430efc49e24595c5fb69d284a25ce38904751fe',
        'order_id' => '11274',
        'order_key' => 'wc_order_fZq6K72z7cgQ0',
        'order_number' => '11274',
        'payment_type' => 'single',
        'site_url' => 'https://www.fifthelementdayspa.com.au',
      ),
      'next_action' => NULL,
      'on_behalf_of' => NULL,
      'payment_method' => NULL,
      'payment_method_options' => 
      array (
        'card' => 
        array (
          'installments' => NULL,
          'mandate_options' => NULL,
          'network' => NULL,
          'request_three_d_secure' => 'automatic',
        ),
      ),
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'processing' => NULL,
      'receipt_email' => NULL,
      'review' => NULL,
      'setup_future_usage' => NULL,
      'shipping' => NULL,
      'source' => NULL,
      'statement_descriptor' => NULL,
      'statement_descriptor_suffix' => NULL,
      'status' => 'requires_payment_method',
      'total_details' => 
      array (
        'amount_discount' => 0,
        'amount_tax' => 0,
      ),
      'transfer_data' => NULL,
      'transfer_group' => NULL,
      'fee_history' => 
      array (
        0 => 
        array (
          'type' => 'base',
          'fee_id' => 'base-au-fee',
          'percentage_rate' => 0.0175,
          'fixed_rate' => 30,
          'currency' => 'aud',
        ),
      ),
    )
    2022-11-30T10:51:51+00:00 INFO Begin processing UPE redirect payment for order 11274 for the amount of 160.00
    2022-11-30T10:51:51+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/checkout/order-received/11274?key=wc_order_fZq6K72z7cgQ0&order_id=11274&wc_payment_method=woocommerce_payments&_wpnonce=bb90d70b92&save_payment_method=no&payment_intent=pi_3M9nry2HR3rQjavP1w7pxKIK&payment_intent_client_secret=pi_3M9nry2HR3rQjavP1w7pxKIK_secret_LeWhWJJdGl8sE0BigGdLoLRrS&redirect_status=succeeded',
      'DOING_AJAX' => false,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T10:51:51+00:00 INFO REQUEST GET https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions/pi_3M9nry2HR3rQjavP1w7pxKIK?test_mode=0
    2022-11-30T10:51:51+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
    )
    2022-11-30T10:51:52+00:00 INFO RESPONSE: array (
      'id' => 'pi_3M9nry2HR3rQjavP1w7pxKIK',
      'object' => 'payment_intent',
      'amount' => 16000,
      'amount_capturable' => 0,
      'amount_details' => 
      array (
        'tip' => 
        array (
        ),
      ),
      'amount_received' => 16000,
      'amount_subtotal' => 16000,
      'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
      'application_fee_amount' => 310,
      'automatic_payment_methods' => NULL,
      'canceled_at' => NULL,
      'cancellation_reason' => NULL,
      'capture_method' => 'automatic',
      'charges' => 
      array (
        'object' => 'list',
        'data' => 
        array (
          0 => 
          array (
            'id' => 'ch_3M9nry2HR3rQjavP1VaXYuPh',
            'object' => 'charge',
            'amount' => 16000,
            'amount_captured' => 16000,
            'amount_refunded' => 0,
            'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
            'application_fee' => 'fee_1M9ntJ2HR3rQjavPwlcrDIfF',
            'application_fee_amount' => 310,
            'balance_transaction' => 
            array (
              'id' => 'txn_3M9nry2HR3rQjavP1TncJh5A',
              'object' => 'balance_transaction',
              'amount' => 16000,
              'available_on' => 1669939200,
              'created' => 1669805508,
              'currency' => 'aud',
              'description' => 'Online Payment for Order #11274 for www.fifthelementdayspa.com.au blog_id 208137982',
              'exchange_rate' => NULL,
              'fee' => 310,
              'fee_details' => 
              array (
                0 => 
                array (
                  'amount' => 310,
                  'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
                  'currency' => 'aud',
                  'description' => 'WooCommerce Payments application fee',
                  'type' => 'application_fee',
                ),
              ),
              'net' => 15690,
              'reporting_category' => 'charge',
              'source' => 'ch_3M9nry2HR3rQjavP1VaXYuPh',
              'status' => 'pending',
              'type' => 'charge',
            ),
            'billing_details' => 
            array (
              'address' => 
              array (
                'city' => '(redacted)',
                'country' => '(redacted)',
                'line1' => '(redacted)',
                'line2' => '(redacted)',
                'postal_code' => '(redacted)',
                'state' => '(redacted)',
              ),
              'email' => '(redacted)',
              'name' => '(redacted)',
              'phone' => '(redacted)',
            ),
            'calculated_statement_descriptor' => 'FIFTHELEMENTDAYSPA',
            'captured' => true,
            'created' => 1669805508,
            'currency' => 'aud',
            'customer' => 'cus_Mtb5XLZv1Yw20g',
            'description' => 'Online Payment for Order #11274 for www.fifthelementdayspa.com.au blog_id 208137982',
            'destination' => NULL,
            'dispute' => NULL,
            'disputed' => false,
            'failure_balance_transaction' => NULL,
            'failure_code' => NULL,
            'failure_message' => NULL,
            'fraud_details' => 
            array (
            ),
            'invoice' => NULL,
            'livemode' => true,
            'metadata' => 
            array (
              'customer_email' => '(redacted)',
              'customer_name' => '(redacted)',
              'fraud_prevention_data_available' => '1',
              'fraud_prevention_data_shopper_ip_hash' => 'dfa9aa822b2f6408315a930469975efeb1d87e586e4f23faf665abf9337e6d918cd286486445507b4d34b2bc2bf201646a38450b6f747c34c0e5ebf319faeeca',
              'fraud_prevention_data_shopper_ua_hash' => '69cdbfd5a8f86e842c3352ab829c5de97104298a7ef979e314836ff70f982d41afe80b8111e8c4d76728d65c2430efc49e24595c5fb69d284a25ce38904751fe',
              'order_id' => '11274',
              'order_key' => 'wc_order_fZq6K72z7cgQ0',
              'order_number' => '11274',
              'payment_type' => 'single',
              'site_url' => 'https://www.fifthelementdayspa.com.au',
            ),
            'on_behalf_of' => NULL,
            'order' => NULL,
            'outcome' => 
            array (
              'network_status' => 'approved_by_network',
              'reason' => NULL,
              'risk_level' => 'normal',
              'seller_message' => 'Payment complete.',
              'type' => 'authorized',
            ),
            'paid' => true,
            'payment_intent' => 'pi_3M9nry2HR3rQjavP1w7pxKIK',
            'payment_method' => 'pm_1M9ntH2HR3rQjavPblO6HTt3',
            'payment_method_details' => 
            array (
              'card' => 
              array (
                'brand' => 'mastercard',
                'checks' => 
                array (
                  'address_line1_check' => 'unavailable',
                  'address_postal_code_check' => 'unavailable',
                  'cvc_check' => 'pass',
                ),
                'country' => '(redacted)',
                'exp_month' => 9,
                'exp_year' => 2027,
                'fingerprint' => '3yYmo52BKM6K6q7C',
                'funding' => 'credit',
                'installments' => NULL,
                'last4' => '0105',
                'mandate' => NULL,
                'network' => 'mastercard',
                'three_d_secure' => NULL,
                'wallet' => NULL,
              ),
              'type' => 'card',
            ),
            'receipt_email' => NULL,
            'receipt_number' => NULL,
            'receipt_url' => 'https://pay.stripe.com/receipts/payment/CAcQARoXChVhY2N0XzFMREpqUDJIUjNyUWphdlAox-ucnAYyBjT1f8AojzosFlUlRs4157JY7vduFJlrgYLWUnmnZP36CjGD2fDoP3WhyS0-7XsYjKm-91U',
            'refunded' => false,
            'refunds' => 
            array (
              'object' => 'list',
              'data' => 
              array (
              ),
              'has_more' => false,
              'total_count' => 0,
              'url' => '/v1/charges/ch_3M9nry2HR3rQjavP1VaXYuPh/refunds',
            ),
            'review' => NULL,
            'shipping' => NULL,
            'source' => NULL,
            'source_transfer' => NULL,
            'statement_descriptor' => NULL,
            'statement_descriptor_suffix' => NULL,
            'status' => 'succeeded',
            'transfer_data' => NULL,
            'transfer_group' => NULL,
          ),
        ),
        'has_more' => false,
        'total_count' => 1,
        'url' => '/v1/charges?payment_intent=pi_3M9nry2HR3rQjavP1w7pxKIK',
      ),
      'client_secret' => '(redacted)',
      'confirmation_method' => 'automatic',
      'created' => 1669805426,
      'currency' => 'aud',
      'customer' => 'cus_Mtb5XLZv1Yw20g',
      'description' => 'Online Payment for Order #11274 for www.fifthelementdayspa.com.au blog_id 208137982',
      'invoice' => NULL,
      'last_payment_error' => NULL,
      'level3' => NULL,
      'livemode' => true,
      'metadata' => 
      array (
        'customer_email' => '(redacted)',
        'customer_name' => '(redacted)',
        'fraud_prevention_data_available' => '1',
        'fraud_prevention_data_shopper_ip_hash' => 'dfa9aa822b2f6408315a930469975efeb1d87e586e4f23faf665abf9337e6d918cd286486445507b4d34b2bc2bf201646a38450b6f747c34c0e5ebf319faeeca',
        'fraud_prevention_data_shopper_ua_hash' => '69cdbfd5a8f86e842c3352ab829c5de97104298a7ef979e314836ff70f982d41afe80b8111e8c4d76728d65c2430efc49e24595c5fb69d284a25ce38904751fe',
        'order_id' => '11274',
        'order_key' => 'wc_order_fZq6K72z7cgQ0',
        'order_number' => '11274',
        'payment_type' => 'single',
        'site_url' => 'https://www.fifthelementdayspa.com.au',
      ),
      'next_action' => NULL,
      'on_behalf_of' => NULL,
      'payment_method' => 'pm_1M9ntH2HR3rQjavPblO6HTt3',
      'payment_method_options' => 
      array (
        'card' => 
        array (
          'installments' => NULL,
          'mandate_options' => NULL,
          'network' => NULL,
          'request_three_d_secure' => 'automatic',
        ),
      ),
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'processing' => NULL,
      'receipt_email' => NULL,
      'review' => NULL,
      'setup_future_usage' => NULL,
      'shipping' => NULL,
      'source' => NULL,
      'statement_descriptor' => NULL,
      'statement_descriptor_suffix' => NULL,
      'status' => 'succeeded',
      'total_details' => 
      array (
        'amount_discount' => 0,
        'amount_tax' => 0,
      ),
      'transfer_data' => NULL,
      'transfer_group' => NULL,
    )
    2022-11-30T10:51:53+00:00 DEBUG Webhook received: payment_intent.succeeded
    2022-11-30T10:51:53+00:00 DEBUG Webhook body: array (
      'id' => 'evt_3M9nry2HR3rQjavP14Ivc6rJ',
      'type' => 'payment_intent.succeeded',
      'livemode' => true,
      'account' => 'acct_1LDJjP2HR3rQjavP',
      'data' => 
      array (
        'object' => 
        array (
          'id' => 'pi_3M9nry2HR3rQjavP1w7pxKIK',
          'object' => 'payment_intent',
          'amount' => 16000,
          'amount_capturable' => 0,
          'amount_details' => 
          array (
            'tip' => 
            array (
            ),
          ),
          'amount_received' => 16000,
          'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
          'application_fee_amount' => 310,
          'automatic_payment_methods' => NULL,
          'canceled_at' => NULL,
          'cancellation_reason' => NULL,
          'capture_method' => 'automatic',
          'charges' => 
          array (
            'object' => 'list',
            'data' => 
            array (
              0 => 
              array (
                'id' => 'ch_3M9nry2HR3rQjavP1VaXYuPh',
                'object' => 'charge',
                'amount' => 16000,
                'amount_captured' => 16000,
                'amount_refunded' => 0,
                'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
                'application_fee' => 'fee_1M9ntJ2HR3rQjavPwlcrDIfF',
                'application_fee_amount' => 310,
                'balance_transaction' => 'txn_3M9nry2HR3rQjavP1TncJh5A',
                'billing_details' => 
                array (
                  'address' => 
                  array (
                    'city' => '(redacted)',
                    'country' => '(redacted)',
                    'line1' => '(redacted)',
                    'line2' => '(redacted)',
                    'postal_code' => '(redacted)',
                    'state' => '(redacted)',
                  ),
                  'email' => '(redacted)',
                  'name' => '(redacted)',
                  'phone' => '(redacted)',
                ),
                'calculated_statement_descriptor' => 'FIFTHELEMENTDAYSPA',
                'captured' => true,
                'created' => 1669805508,
                'currency' => 'aud',
                'customer' => 'cus_Mtb5XLZv1Yw20g',
                'description' => 'Online Payment for Order #11274 for www.fifthelementdayspa.com.au blog_id 208137982',
                'destination' => NULL,
                'dispute' => NULL,
                'disputed' => false,
                'failure_balance_transaction' => NULL,
                'failure_code' => NULL,
                'failure_message' => NULL,
                'fraud_details' => 
                array (
                ),
                'invoice' => NULL,
                'livemode' => true,
                'metadata' => 
                array (
                  'fraud_prevention_data_available' => '1',
                  'fraud_prevention_data_shopper_ua_hash' => '69cdbfd5a8f86e842c3352ab829c5de97104298a7ef979e314836ff70f982d41afe80b8111e8c4d76728d65c2430efc49e24595c5fb69d284a25ce38904751fe',
                  'fraud_prevention_data_shopper_ip_hash' => 'dfa9aa822b2f6408315a930469975efeb1d87e586e4f23faf665abf9337e6d918cd286486445507b4d34b2bc2bf201646a38450b6f747c34c0e5ebf319faeeca',
                  'order_key' => 'wc_order_fZq6K72z7cgQ0',
                  'site_url' => 'https://www.fifthelementdayspa.com.au',
                  'customer_email' => '(redacted)',
                  'customer_name' => '(redacted)',
                  'order_number' => '11274',
                  'order_id' => '11274',
                  'payment_type' => 'single',
                ),
                'on_behalf_of' => NULL,
                'order' => NULL,
                'outcome' => 
                array (
                  'network_status' => 'approved_by_network',
                  'reason' => NULL,
                  'risk_level' => 'normal',
                  'seller_message' => 'Payment complete.',
                  'type' => 'authorized',
                ),
                'paid' => true,
                'payment_intent' => 'pi_3M9nry2HR3rQjavP1w7pxKIK',
                'payment_method' => 'pm_1M9ntH2HR3rQjavPblO6HTt3',
                'payment_method_details' => 
                array (
                  'card' => 
                  array (
                    'brand' => 'mastercard',
                    'checks' => 
                    array (
                      'address_line1_check' => 'unavailable',
                      'address_postal_code_check' => 'unavailable',
                      'cvc_check' => 'pass',
                    ),
                    'country' => '(redacted)',
                    'exp_month' => 9,
                    'exp_year' => 2027,
                    'fingerprint' => '3yYmo52BKM6K6q7C',
                    'funding' => 'credit',
                    'installments' => NULL,
                    'last4' => '0105',
                    'mandate' => NULL,
                    'network' => 'mastercard',
                    'three_d_secure' => NULL,
                    'wallet' => NULL,
                  ),
                  'type' => 'card',
                ),
                'receipt_email' => NULL,
                'receipt_number' => NULL,
                'receipt_url' => 'https://pay.stripe.com/receipts/payment/CAcQARoXChVhY2N0XzFMREpqUDJIUjNyUWphdlAoxuucnAYyBqaqTb8fADosFhbDJC41PoXeFh6re0dsQ1cJDGD74NuPx3u_YORovEqxIhbfZWKZPN0YXQQ',
                'refunded' => false,
                'refunds' => 
                array (
                  'object' => 'list',
                  'data' => 
                  array (
                  ),
                  'has_more' => false,
                  'total_count' => 0,
                  'url' => '/v1/charges/ch_3M9nry2HR3rQjavP1VaXYuPh/refunds',
                ),
                'review' => NULL,
                'shipping' => NULL,
                'source' => NULL,
                'source_transfer' => NULL,
                'statement_descriptor' => NULL,
                'statement_descriptor_suffix' => NULL,
                'status' => 'succeeded',
                'transfer_data' => NULL,
                'transfer_group' => NULL,
              ),
            ),
            'has_more' => false,
            'total_count' => 1,
            'url' => '/v1/charges?payment_intent=pi_3M9nry2HR3rQjavP1w7pxKIK',
          ),
          'client_secret' => '(redacted)',
          'confirmation_method' => 'automatic',
          'created' => 1669805426,
          'currency' => 'aud',
          'customer' => 'cus_Mtb5XLZv1Yw20g',
          'description' => 'Online Payment for Order #11274 for www.fifthelementdayspa.com.au blog_id 208137982',
          'invoice' => NULL,
          'last_payment_error' => NULL,
          'livemode' => true,
          'metadata' => 
          array (
            'fraud_prevention_data_available' => '1',
            'fraud_prevention_data_shopper_ua_hash' => '69cdbfd5a8f86e842c3352ab829c5de97104298a7ef979e314836ff70f982d41afe80b8111e8c4d76728d65c2430efc49e24595c5fb69d284a25ce38904751fe',
            'fraud_prevention_data_shopper_ip_hash' => 'dfa9aa822b2f6408315a930469975efeb1d87e586e4f23faf665abf9337e6d918cd286486445507b4d34b2bc2bf201646a38450b6f747c34c0e5ebf319faeeca',
            'order_key' => 'wc_order_fZq6K72z7cgQ0',
            'site_url' => 'https://www.fifthelementdayspa.com.au',
            'customer_email' => '(redacted)',
            'customer_name' => '(redacted)',
            'order_number' => '11274',
            'order_id' => '11274',
            'payment_type' => 'single',
          ),
          'next_action' => NULL,
          'on_behalf_of' => NULL,
          'payment_method' => 'pm_1M9ntH2HR3rQjavPblO6HTt3',
          'payment_method_options' => 
          array (
            'card' => 
            array (
              'installments' => NULL,
              'mandate_options' => NULL,
              'network' => NULL,
              'request_three_d_secure' => 'automatic',
            ),
          ),
          'payment_method_types' => 
          array (
            0 => 'card',
          ),
          'processing' => NULL,
          'receipt_email' => NULL,
          'review' => NULL,
          'setup_future_usage' => NULL,
          'shipping' => NULL,
          'source' => NULL,
          'statement_descriptor' => NULL,
          'statement_descriptor_suffix' => NULL,
          'status' => 'succeeded',
          'transfer_data' => NULL,
          'transfer_group' => NULL,
          'amount_subtotal' => 16000,
          'level3' => NULL,
          'total_details' => 
          array (
            'amount_discount' => 0,
            'amount_tax' => 0,
          ),
        ),
      ),
    )
    2022-11-30T10:52:18+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/wp-cron.php?doing_wp_cron=1669805538.1288239955902099609375',
      'HTTP_USER_AGENT' => 'WordPress/6.1.1; https://www.fifthelementdayspa.com.au',
      'REQUEST_URI' => '/wp-cron.php?doing_wp_cron=1669805538.1288239955902099609375',
      'DOING_AJAX' => false,
      'DOING_CRON' => true,
      'WP_CLI' => false,
    )
    2022-11-30T10:52:18+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/customers/cus_Mtb5XLZv1Yw20g
    2022-11-30T10:52:18+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => 'cef7217d-6a53-4513-8807-6d7ad2dcd94d',
    )
    2022-11-30T10:52:18+00:00 INFO BODY: array (
      'test_mode' => false,
      'name' => '(redacted)',
      'description' => 'Name: Denise Tuite, Guest',
      'email' => '(redacted)',
      'phone' => '(redacted)',
      'address' => 
      array (
        'line1' => '(redacted)',
        'line2' => '(redacted)',
        'postal_code' => '(redacted)',
        'city' => '(redacted)',
        'state' => '(redacted)',
        'country' => '(redacted)',
      ),
      'shipping' => 
      array (
        'name' => '(redacted)',
        'address' => 
        array (
          'line1' => '(redacted)',
          'line2' => '(redacted)',
          'postal_code' => '(redacted)',
          'city' => '(redacted)',
          'state' => '(redacted)',
          'country' => '(redacted)',
        ),
      ),
    )
    2022-11-30T10:52:19+00:00 INFO RESPONSE: array (
      'id' => 'cus_Mtb5XLZv1Yw20g',
      'object' => 'customer',
      'address' => 
      array (
        'city' => '(redacted)',
        'country' => '(redacted)',
        'line1' => '(redacted)',
        'line2' => '(redacted)',
        'postal_code' => '(redacted)',
        'state' => '(redacted)',
      ),
      'balance' => 0,
      'created' => 1669805503,
      'currency' => NULL,
      'default_currency' => NULL,
      'default_source' => NULL,
      'delinquent' => false,
      'description' => 'Name: Denise Tuite, Guest',
      'discount' => NULL,
      'email' => '(redacted)',
      'invoice_prefix' => '918A5928',
      'invoice_settings' => 
      array (
        'custom_fields' => NULL,
        'default_payment_method' => NULL,
        'footer' => NULL,
        'rendering_options' => NULL,
      ),
      'livemode' => true,
      'metadata' => 'stdClass()',
      'name' => '(redacted)',
      'next_invoice_sequence' => 1,
      'phone' => '(redacted)',
      'preferred_locales' => 
      array (
      ),
      'shipping' => 
      array (
        'address' => 
        array (
          'city' => '(redacted)',
          'country' => '(redacted)',
          'line1' => '(redacted)',
          'line2' => '(redacted)',
          'postal_code' => '(redacted)',
          'state' => '(redacted)',
        ),
        'name' => '(redacted)',
        'phone' => '(redacted)',
      ),
      'tax_exempt' => 'none',
      'test_clock' => NULL,
    )
    2022-11-30T10:52:19+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/wp-cron.php?doing_wp_cron=1669805538.1288239955902099609375',
      'HTTP_USER_AGENT' => 'WordPress/6.1.1; https://www.fifthelementdayspa.com.au',
      'REQUEST_URI' => '/wp-cron.php?doing_wp_cron=1669805538.1288239955902099609375',
      'DOING_AJAX' => false,
      'DOING_CRON' => true,
      'WP_CLI' => false,
    )
    2022-11-30T10:52:19+00:00 INFO REQUEST GET https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/timeline/pi_3M9nry2HR3rQjavP1w7pxKIK?test_mode=0
    2022-11-30T10:52:19+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
    )
    2022-11-30T10:52:21+00:00 INFO RESPONSE: array (
      'data' => 
      array (
        0 => 
        array (
          'type' => 'captured',
          'amount' => 16000,
          'fee' => 310,
          'fee_rates' => 
          array (
            'percentage' => 0.0175,
            'fixed' => 30,
            'fixed_currency' => 'AUD',
            'history' => 
            array (
              0 => 
              array (
                'type' => 'base',
                'fee_id' => 'base-au-fee',
                'percentage_rate' => 0.0175,
                'fixed_rate' => 30,
                'currency' => 'aud',
              ),
            ),
          ),
          'currency' => 'AUD',
          'datetime' => 1669805508,
          'deposit' => 
          array (
            'id' => 'wcpay_estimated_daily_aud_1669939200',
            'arrival_date' => '1669939200',
          ),
          'transaction_id' => 'txn_3M9nry2HR3rQjavP1TncJh5A',
          'transaction_details' => 
          array (
            'customer_currency' => 'AUD',
            'customer_amount' => 16000,
            'customer_fee' => 310,
            'store_currency' => 'AUD',
            'store_amount' => 16000,
            'store_fee' => 310,
          ),
        ),
        1 => 
        array (
          'type' => 'authorized',
          'datetime' => 1669805426,
          'amount' => 16000,
          'currency' => 'AUD',
        ),
      ),
    )
    2022-11-30T10:52:21+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/wp-cron.php?doing_wp_cron=1669805538.1288239955902099609375',
      'HTTP_USER_AGENT' => 'WordPress/6.1.1; https://www.fifthelementdayspa.com.au',
      'REQUEST_URI' => '/wp-cron.php?doing_wp_cron=1669805538.1288239955902099609375',
      'DOING_AJAX' => false,
      'DOING_CRON' => true,
      'WP_CLI' => false,
    )
    2022-11-30T10:52:21+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/tracking/order
    2022-11-30T10:52:21+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => '9e380818-eabf-483a-9cb4-4e55bc148e87',
    )
    2022-11-30T10:52:21+00:00 INFO BODY: array (
      'test_mode' => false,
      'order_data' => 
      array (
        'id' => 11274,
        'parent_id' => 0,
        'status' => 'processing',
        'currency' => 'AUD',
        'version' => '7.1.0',
        'prices_include_tax' => false,
        'date_created' => 'WC_DateTime()',
        'date_modified' => 'WC_DateTime()',
        'discount_total' => '0',
        'discount_tax' => '0',
        'shipping_total' => '0',
        'shipping_tax' => '0',
        'cart_tax' => '0',
        'total' => '160.00',
        'total_tax' => '0',
        'customer_id' => 0,
        'order_key' => 'wc_order_fZq6K72z7cgQ0',
        'billing' => 
        array (
          'first_name' => 'Denise',
          'last_name' => 'Tuite',
          'company' => '',
          'address_1' => '21 Waratah Drive',
          'address_2' => '',
          'city' => '(redacted)',
          'state' => '(redacted)',
          'postcode' => '3028',
          'country' => '(redacted)',
          'email' => '(redacted)',
          'phone' => '(redacted)',
        ),
        'shipping' => 
        array (
          'first_name' => 'Denise',
          'last_name' => 'Tuite',
          'company' => '',
          'address_1' => '21 Waratah Drive',
          'address_2' => '',
          'city' => '(redacted)',
          'state' => '(redacted)',
          'postcode' => '3028',
          'country' => '(redacted)',
          'phone' => '(redacted)',
        ),
        'payment_method' => 'woocommerce_payments',
        'payment_method_title' => 'Mastercard credit card',
        'transaction_id' => 'pi_3M9nry2HR3rQjavP1w7pxKIK',
        'customer_ip_address' => '115.70.19.209',
        'customer_user_agent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
        'created_via' => 'checkout',
        'customer_note' => '',
        'date_completed' => NULL,
        'date_paid' => 'WC_DateTime()',
        'cart_hash' => '12d395fb867a6fc18a081273e2f7c5ba',
        'order_stock_reduced' => true,
        'download_permissions_granted' => true,
        'new_order_email_sent' => true,
        'recorded_sales' => true,
        'recorded_coupon_usage_counts' => true,
        'number' => '11274',
        'meta_data' => 
        array (
          0 => 'WC_Meta_Data()',
          1 => 'WC_Meta_Data()',
          2 => 'WC_Meta_Data()',
          3 => 'WC_Meta_Data()',
          4 => 'WC_Meta_Data()',
          5 => 'WC_Meta_Data()',
          6 => 'WC_Meta_Data()',
        ),
        'line_items' => 
        array (
          19574 => 'WC_Order_Item_Product()',
        ),
        'tax_lines' => 
        array (
        ),
        'shipping_lines' => 
        array (
          19575 => 'WC_Order_Item_Shipping()',
        ),
        'fee_lines' => 
        array (
        ),
        'coupon_lines' => 
        array (
        ),
        '_payment_method_id' => 'pm_1M9ntH2HR3rQjavPblO6HTt3',
        '_stripe_customer_id' => 'cus_Mtb5XLZv1Yw20g',
        '_wcpay_mode' => '',
      ),
      'update' => false,
    )
    2022-11-30T10:52:21+00:00 INFO RESPONSE: array (
      'result' => 'success',
    )
    2022-11-30T20:35:22+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1',
      'REQUEST_URI' => '/?wc-ajax=wcpay_create_payment_intent',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T20:35:22+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions
    2022-11-30T20:35:22+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => 'afdc81f6-3a71-408e-80ad-9a224ce61369',
    )
    2022-11-30T20:35:22+00:00 INFO BODY: array (
      'test_mode' => false,
      'amount' => 20000,
      'currency' => 'aud',
      'description' => 'Online Payment for www.fifthelementdayspa.com.au blog_id 208137982',
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'capture_method' => 'automatic',
      'metadata' => 
      array (
        'fraud_prevention_data_shopper_ip_hash' => '0fef0ecad2acab68eb5e04356bad2163a51905ec215870d4bae645ffc2f22a215afda88ceefe20bdca607120c8da579fa757d12575d58795a4ed76b4ea8b0ace',
        'fraud_prevention_data_shopper_ua_hash' => '07b7a398fd07e5d202683c1686effd95003d83a02564616671a5e4a45c0d0eca71363775cd01875d7a6106304cfb02a4c847d6e4902728e48d83b763eaba9c1a',
        'fraud_prevention_data_available' => true,
      ),
    )
    2022-11-30T20:35:22+00:00 INFO RESPONSE: array (
      'id' => 'pi_3M9x022HR3rQjavP1JeFyu20',
      'object' => 'payment_intent',
      'amount' => 20000,
      'amount_capturable' => 0,
      'amount_details' => 
      array (
        'tip' => 
        array (
        ),
      ),
      'amount_received' => 0,
      'amount_subtotal' => 20000,
      'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
      'application_fee_amount' => 380,
      'automatic_payment_methods' => NULL,
      'canceled_at' => NULL,
      'cancellation_reason' => NULL,
      'capture_method' => 'automatic',
      'charges' => 
      array (
        'object' => 'list',
        'data' => 
        array (
        ),
        'has_more' => false,
        'total_count' => 0,
        'url' => '/v1/charges?payment_intent=pi_3M9x022HR3rQjavP1JeFyu20',
      ),
      'client_secret' => '(redacted)',
      'confirmation_method' => 'automatic',
      'created' => 1669840522,
      'currency' => 'aud',
      'customer' => NULL,
      'description' => 'Online Payment for www.fifthelementdayspa.com.au blog_id 208137982',
      'invoice' => NULL,
      'last_payment_error' => NULL,
      'level3' => NULL,
      'livemode' => true,
      'metadata' => 
      array (
        'fraud_prevention_data_available' => '1',
        'fraud_prevention_data_shopper_ip_hash' => '0fef0ecad2acab68eb5e04356bad2163a51905ec215870d4bae645ffc2f22a215afda88ceefe20bdca607120c8da579fa757d12575d58795a4ed76b4ea8b0ace',
        'fraud_prevention_data_shopper_ua_hash' => '07b7a398fd07e5d202683c1686effd95003d83a02564616671a5e4a45c0d0eca71363775cd01875d7a6106304cfb02a4c847d6e4902728e48d83b763eaba9c1a',
      ),
      'next_action' => NULL,
      'on_behalf_of' => NULL,
      'payment_method' => NULL,
      'payment_method_options' => 
      array (
        'card' => 
        array (
          'installments' => NULL,
          'mandate_options' => NULL,
          'network' => NULL,
          'request_three_d_secure' => 'automatic',
        ),
      ),
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'processing' => NULL,
      'receipt_email' => NULL,
      'review' => NULL,
      'setup_future_usage' => NULL,
      'shipping' => NULL,
      'source' => NULL,
      'statement_descriptor' => NULL,
      'statement_descriptor_suffix' => NULL,
      'status' => 'requires_payment_method',
      'total_details' => 
      array (
        'amount_discount' => 0,
        'amount_tax' => 0,
      ),
      'transfer_data' => NULL,
      'transfer_group' => NULL,
      'fee_history' => 
      array (
        0 => 
        array (
          'type' => 'base',
          'fee_id' => 'base-au-fee',
          'percentage_rate' => 0.0175,
          'fixed_rate' => 30,
          'currency' => 'aud',
        ),
      ),
    )
    2022-11-30T20:35:50+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1',
      'REQUEST_URI' => '/?wc-ajax=checkout',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T20:35:50+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions/pi_3M9x022HR3rQjavP1JeFyu20
    2022-11-30T20:35:50+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => 'ec3586d1-5bf6-4baa-94a3-f01e966a7b93',
    )
    2022-11-30T20:35:50+00:00 INFO BODY: array (
      'test_mode' => false,
      'amount' => 20000,
      'currency' => 'aud',
      'receipt_email' => '',
      'metadata' => 
      array (
        'customer_name' => '(redacted)',
        'customer_email' => '(redacted)',
        'site_url' => 'https://www.fifthelementdayspa.com.au',
        'order_id' => 11275,
        'order_number' => '11275',
        'order_key' => 'wc_order_FY3EHgadqOUlc',
        'payment_type' => 'WCPay\\Constants\\Payment_Type()',
      ),
      'level3' => 
      array (
      ),
      'description' => 'Online Payment for Order #11275 for www.fifthelementdayspa.com.au blog_id 208137982',
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'payment_country' => 'AU',
      'customer' => 'cus_MtPa2MVIzl8ICu',
    )
    2022-11-30T20:35:51+00:00 INFO RESPONSE: array (
      'id' => 'pi_3M9x022HR3rQjavP1JeFyu20',
      'object' => 'payment_intent',
      'amount' => 20000,
      'amount_capturable' => 0,
      'amount_details' => 
      array (
        'tip' => 
        array (
        ),
      ),
      'amount_received' => 0,
      'amount_subtotal' => 20000,
      'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
      'application_fee_amount' => 380,
      'automatic_payment_methods' => NULL,
      'canceled_at' => NULL,
      'cancellation_reason' => NULL,
      'capture_method' => 'automatic',
      'charges' => 
      array (
        'object' => 'list',
        'data' => 
        array (
        ),
        'has_more' => false,
        'total_count' => 0,
        'url' => '/v1/charges?payment_intent=pi_3M9x022HR3rQjavP1JeFyu20',
      ),
      'client_secret' => '(redacted)',
      'confirmation_method' => 'automatic',
      'created' => 1669840522,
      'currency' => 'aud',
      'customer' => 'cus_MtPa2MVIzl8ICu',
      'description' => 'Online Payment for Order #11275 for www.fifthelementdayspa.com.au blog_id 208137982',
      'invoice' => NULL,
      'last_payment_error' => NULL,
      'level3' => NULL,
      'livemode' => true,
      'metadata' => 
      array (
        'customer_email' => '(redacted)',
        'customer_name' => '(redacted)',
        'fraud_prevention_data_available' => '1',
        'fraud_prevention_data_shopper_ip_hash' => '0fef0ecad2acab68eb5e04356bad2163a51905ec215870d4bae645ffc2f22a215afda88ceefe20bdca607120c8da579fa757d12575d58795a4ed76b4ea8b0ace',
        'fraud_prevention_data_shopper_ua_hash' => '07b7a398fd07e5d202683c1686effd95003d83a02564616671a5e4a45c0d0eca71363775cd01875d7a6106304cfb02a4c847d6e4902728e48d83b763eaba9c1a',
        'order_id' => '11275',
        'order_key' => 'wc_order_FY3EHgadqOUlc',
        'order_number' => '11275',
        'payment_type' => 'single',
        'site_url' => 'https://www.fifthelementdayspa.com.au',
      ),
      'next_action' => NULL,
      'on_behalf_of' => NULL,
      'payment_method' => NULL,
      'payment_method_options' => 
      array (
        'card' => 
        array (
          'installments' => NULL,
          'mandate_options' => NULL,
          'network' => NULL,
          'request_three_d_secure' => 'automatic',
        ),
      ),
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'processing' => NULL,
      'receipt_email' => NULL,
      'review' => NULL,
      'setup_future_usage' => NULL,
      'shipping' => NULL,
      'source' => NULL,
      'statement_descriptor' => NULL,
      'statement_descriptor_suffix' => NULL,
      'status' => 'requires_payment_method',
      'total_details' => 
      array (
        'amount_discount' => 0,
        'amount_tax' => 0,
      ),
      'transfer_data' => NULL,
      'transfer_group' => NULL,
      'fee_history' => 
      array (
        0 => 
        array (
          'type' => 'base',
          'fee_id' => 'base-au-fee',
          'percentage_rate' => 0.0175,
          'fixed_rate' => 30,
          'currency' => 'aud',
        ),
      ),
    )
    2022-11-30T20:35:58+00:00 INFO Begin processing UPE redirect payment for order 11275 for the amount of 200.00
    2022-11-30T20:35:58+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1',
      'REQUEST_URI' => '/checkout/order-received/11275?key=wc_order_FY3EHgadqOUlc&order_id=11275&wc_payment_method=woocommerce_payments&_wpnonce=aa19c9c161&save_payment_method=no&payment_intent=pi_3M9x022HR3rQjavP1JeFyu20&payment_intent_client_secret=pi_3M9x022HR3rQjavP1JeFyu20_secret_9sX7VEaXZ0OpEWcxDS65VvNim&redirect_status=succeeded',
      'DOING_AJAX' => false,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T20:35:58+00:00 INFO REQUEST GET https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions/pi_3M9x022HR3rQjavP1JeFyu20?test_mode=0
    2022-11-30T20:35:58+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
    )
    2022-11-30T20:35:59+00:00 INFO RESPONSE: array (
      'id' => 'pi_3M9x022HR3rQjavP1JeFyu20',
      'object' => 'payment_intent',
      'amount' => 20000,
      'amount_capturable' => 0,
      'amount_details' => 
      array (
        'tip' => 
        array (
        ),
      ),
      'amount_received' => 20000,
      'amount_subtotal' => 20000,
      'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
      'application_fee_amount' => 380,
      'automatic_payment_methods' => NULL,
      'canceled_at' => NULL,
      'cancellation_reason' => NULL,
      'capture_method' => 'automatic',
      'charges' => 
      array (
        'object' => 'list',
        'data' => 
        array (
          0 => 
          array (
            'id' => 'ch_3M9x022HR3rQjavP1dHAQYXa',
            'object' => 'charge',
            'amount' => 20000,
            'amount_captured' => 20000,
            'amount_refunded' => 0,
            'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
            'application_fee' => 'fee_1M9x0a2HR3rQjavPPDQmxyAQ',
            'application_fee_amount' => 380,
            'balance_transaction' => 
            array (
              'id' => 'txn_3M9x022HR3rQjavP1xTFzmyh',
              'object' => 'balance_transaction',
              'amount' => 20000,
              'available_on' => 1669939200,
              'created' => 1669840555,
              'currency' => 'aud',
              'description' => 'Online Payment for Order #11275 for www.fifthelementdayspa.com.au blog_id 208137982',
              'exchange_rate' => NULL,
              'fee' => 380,
              'fee_details' => 
              array (
                0 => 
                array (
                  'amount' => 380,
                  'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
                  'currency' => 'aud',
                  'description' => 'WooCommerce Payments application fee',
                  'type' => 'application_fee',
                ),
              ),
              'net' => 19620,
              'reporting_category' => 'charge',
              'source' => 'ch_3M9x022HR3rQjavP1dHAQYXa',
              'status' => 'pending',
              'type' => 'charge',
            ),
            'billing_details' => 
            array (
              'address' => 
              array (
                'city' => '(redacted)',
                'country' => '(redacted)',
                'line1' => '(redacted)',
                'line2' => '(redacted)',
                'postal_code' => '(redacted)',
                'state' => '(redacted)',
              ),
              'email' => '(redacted)',
              'name' => '(redacted)',
              'phone' => '(redacted)',
            ),
            'calculated_statement_descriptor' => 'FIFTHELEMENTDAYSPA',
            'captured' => true,
            'created' => 1669840555,
            'currency' => 'aud',
            'customer' => 'cus_MtPa2MVIzl8ICu',
            'description' => 'Online Payment for Order #11275 for www.fifthelementdayspa.com.au blog_id 208137982',
            'destination' => NULL,
            'dispute' => NULL,
            'disputed' => false,
            'failure_balance_transaction' => NULL,
            'failure_code' => NULL,
            'failure_message' => NULL,
            'fraud_details' => 
            array (
            ),
            'invoice' => NULL,
            'livemode' => true,
            'metadata' => 
            array (
              'customer_email' => '(redacted)',
              'customer_name' => '(redacted)',
              'fraud_prevention_data_available' => '1',
              'fraud_prevention_data_shopper_ip_hash' => '0fef0ecad2acab68eb5e04356bad2163a51905ec215870d4bae645ffc2f22a215afda88ceefe20bdca607120c8da579fa757d12575d58795a4ed76b4ea8b0ace',
              'fraud_prevention_data_shopper_ua_hash' => '07b7a398fd07e5d202683c1686effd95003d83a02564616671a5e4a45c0d0eca71363775cd01875d7a6106304cfb02a4c847d6e4902728e48d83b763eaba9c1a',
              'order_id' => '11275',
              'order_key' => 'wc_order_FY3EHgadqOUlc',
              'order_number' => '11275',
              'payment_type' => 'single',
              'site_url' => 'https://www.fifthelementdayspa.com.au',
            ),
            'on_behalf_of' => NULL,
            'order' => NULL,
            'outcome' => 
            array (
              'network_status' => 'approved_by_network',
              'reason' => NULL,
              'risk_level' => 'normal',
              'seller_message' => 'Payment complete.',
              'type' => 'authorized',
            ),
            'paid' => true,
            'payment_intent' => 'pi_3M9x022HR3rQjavP1JeFyu20',
            'payment_method' => 'pm_1M9x0Y2HR3rQjavP1P1bTxUM',
            'payment_method_details' => 
            array (
              'card' => 
              array (
                'brand' => 'visa',
                'checks' => 
                array (
                  'address_line1_check' => 'unavailable',
                  'address_postal_code_check' => 'unavailable',
                  'cvc_check' => 'pass',
                ),
                'country' => '(redacted)',
                'exp_month' => 10,
                'exp_year' => 2025,
                'fingerprint' => 'u9z40igVUMNgpaF7',
                'funding' => 'credit',
                'installments' => NULL,
                'last4' => '2733',
                'mandate' => NULL,
                'network' => 'visa',
                'three_d_secure' => NULL,
                'wallet' => NULL,
              ),
              'type' => 'card',
            ),
            'receipt_email' => NULL,
            'receipt_number' => NULL,
            'receipt_url' => 'https://pay.stripe.com/receipts/payment/CAcQARoXChVhY2N0XzFMREpqUDJIUjNyUWphdlAorv2enAYyBsMFrP9UqjosFsV0VBcdHRsyvRPmcRhDj8HsCYQVvPYOes2aNrIuezAAkUjiZ26Pddv8yXE',
            'refunded' => false,
            'refunds' => 
            array (
              'object' => 'list',
              'data' => 
              array (
              ),
              'has_more' => false,
              'total_count' => 0,
              'url' => '/v1/charges/ch_3M9x022HR3rQjavP1dHAQYXa/refunds',
            ),
            'review' => NULL,
            'shipping' => NULL,
            'source' => NULL,
            'source_transfer' => NULL,
            'statement_descriptor' => NULL,
            'statement_descriptor_suffix' => NULL,
            'status' => 'succeeded',
            'transfer_data' => NULL,
            'transfer_group' => NULL,
          ),
        ),
        'has_more' => false,
        'total_count' => 1,
        'url' => '/v1/charges?payment_intent=pi_3M9x022HR3rQjavP1JeFyu20',
      ),
      'client_secret' => '(redacted)',
      'confirmation_method' => 'automatic',
      'created' => 1669840522,
      'currency' => 'aud',
      'customer' => 'cus_MtPa2MVIzl8ICu',
      'description' => 'Online Payment for Order #11275 for www.fifthelementdayspa.com.au blog_id 208137982',
      'invoice' => NULL,
      'last_payment_error' => NULL,
      'level3' => NULL,
      'livemode' => true,
      'metadata' => 
      array (
        'customer_email' => '(redacted)',
        'customer_name' => '(redacted)',
        'fraud_prevention_data_available' => '1',
        'fraud_prevention_data_shopper_ip_hash' => '0fef0ecad2acab68eb5e04356bad2163a51905ec215870d4bae645ffc2f22a215afda88ceefe20bdca607120c8da579fa757d12575d58795a4ed76b4ea8b0ace',
        'fraud_prevention_data_shopper_ua_hash' => '07b7a398fd07e5d202683c1686effd95003d83a02564616671a5e4a45c0d0eca71363775cd01875d7a6106304cfb02a4c847d6e4902728e48d83b763eaba9c1a',
        'order_id' => '11275',
        'order_key' => 'wc_order_FY3EHgadqOUlc',
        'order_number' => '11275',
        'payment_type' => 'single',
        'site_url' => 'https://www.fifthelementdayspa.com.au',
      ),
      'next_action' => NULL,
      'on_behalf_of' => NULL,
      'payment_method' => 'pm_1M9x0Y2HR3rQjavP1P1bTxUM',
      'payment_method_options' => 
      array (
        'card' => 
        array (
          'installments' => NULL,
          'mandate_options' => NULL,
          'network' => NULL,
          'request_three_d_secure' => 'automatic',
        ),
      ),
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'processing' => NULL,
      'receipt_email' => NULL,
      'review' => NULL,
      'setup_future_usage' => NULL,
      'shipping' => NULL,
      'source' => NULL,
      'statement_descriptor' => NULL,
      'statement_descriptor_suffix' => NULL,
      'status' => 'succeeded',
      'total_details' => 
      array (
        'amount_discount' => 0,
        'amount_tax' => 0,
      ),
      'transfer_data' => NULL,
      'transfer_group' => NULL,
    )
    2022-11-30T20:36:00+00:00 DEBUG Webhook received: payment_intent.succeeded
    2022-11-30T20:36:00+00:00 DEBUG Webhook body: array (
      'id' => 'evt_3M9x022HR3rQjavP1g4uq2BA',
      'type' => 'payment_intent.succeeded',
      'livemode' => true,
      'account' => 'acct_1LDJjP2HR3rQjavP',
      'data' => 
      array (
        'object' => 
        array (
          'id' => 'pi_3M9x022HR3rQjavP1JeFyu20',
          'object' => 'payment_intent',
          'amount' => 20000,
          'amount_capturable' => 0,
          'amount_details' => 
          array (
            'tip' => 
            array (
            ),
          ),
          'amount_received' => 20000,
          'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
          'application_fee_amount' => 380,
          'automatic_payment_methods' => NULL,
          'canceled_at' => NULL,
          'cancellation_reason' => NULL,
          'capture_method' => 'automatic',
          'charges' => 
          array (
            'object' => 'list',
            'data' => 
            array (
              0 => 
              array (
                'id' => 'ch_3M9x022HR3rQjavP1dHAQYXa',
                'object' => 'charge',
                'amount' => 20000,
                'amount_captured' => 20000,
                'amount_refunded' => 0,
                'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
                'application_fee' => 'fee_1M9x0a2HR3rQjavPPDQmxyAQ',
                'application_fee_amount' => 380,
                'balance_transaction' => 'txn_3M9x022HR3rQjavP1xTFzmyh',
                'billing_details' => 
                array (
                  'address' => 
                  array (
                    'city' => '(redacted)',
                    'country' => '(redacted)',
                    'line1' => '(redacted)',
                    'line2' => '(redacted)',
                    'postal_code' => '(redacted)',
                    'state' => '(redacted)',
                  ),
                  'email' => '(redacted)',
                  'name' => '(redacted)',
                  'phone' => '(redacted)',
                ),
                'calculated_statement_descriptor' => 'FIFTHELEMENTDAYSPA',
                'captured' => true,
                'created' => 1669840555,
                'currency' => 'aud',
                'customer' => 'cus_MtPa2MVIzl8ICu',
                'description' => 'Online Payment for Order #11275 for www.fifthelementdayspa.com.au blog_id 208137982',
                'destination' => NULL,
                'dispute' => NULL,
                'disputed' => false,
                'failure_balance_transaction' => NULL,
                'failure_code' => NULL,
                'failure_message' => NULL,
                'fraud_details' => 
                array (
                ),
                'invoice' => NULL,
                'livemode' => true,
                'metadata' => 
                array (
                  'fraud_prevention_data_available' => '1',
                  'fraud_prevention_data_shopper_ua_hash' => '07b7a398fd07e5d202683c1686effd95003d83a02564616671a5e4a45c0d0eca71363775cd01875d7a6106304cfb02a4c847d6e4902728e48d83b763eaba9c1a',
                  'fraud_prevention_data_shopper_ip_hash' => '0fef0ecad2acab68eb5e04356bad2163a51905ec215870d4bae645ffc2f22a215afda88ceefe20bdca607120c8da579fa757d12575d58795a4ed76b4ea8b0ace',
                  'order_key' => 'wc_order_FY3EHgadqOUlc',
                  'site_url' => 'https://www.fifthelementdayspa.com.au',
                  'customer_email' => '(redacted)',
                  'customer_name' => '(redacted)',
                  'order_number' => '11275',
                  'order_id' => '11275',
                  'payment_type' => 'single',
                ),
                'on_behalf_of' => NULL,
                'order' => NULL,
                'outcome' => 
                array (
                  'network_status' => 'approved_by_network',
                  'reason' => NULL,
                  'risk_level' => 'normal',
                  'seller_message' => 'Payment complete.',
                  'type' => 'authorized',
                ),
                'paid' => true,
                'payment_intent' => 'pi_3M9x022HR3rQjavP1JeFyu20',
                'payment_method' => 'pm_1M9x0Y2HR3rQjavP1P1bTxUM',
                'payment_method_details' => 
                array (
                  'card' => 
                  array (
                    'brand' => 'visa',
                    'checks' => 
                    array (
                      'address_line1_check' => 'unavailable',
                      'address_postal_code_check' => 'unavailable',
                      'cvc_check' => 'pass',
                    ),
                    'country' => '(redacted)',
                    'exp_month' => 10,
                    'exp_year' => 2025,
                    'fingerprint' => 'u9z40igVUMNgpaF7',
                    'funding' => 'credit',
                    'installments' => NULL,
                    'last4' => '2733',
                    'mandate' => NULL,
                    'network' => 'visa',
                    'three_d_secure' => NULL,
                    'wallet' => NULL,
                  ),
                  'type' => 'card',
                ),
                'receipt_email' => NULL,
                'receipt_number' => NULL,
                'receipt_url' => 'https://pay.stripe.com/receipts/payment/CAcQARoXChVhY2N0XzFMREpqUDJIUjNyUWphdlAorf2enAYyBjsIeMtITjosFo7Woq33TFNK79pRXmdFYAW6Odho00J-F5naPFPXY0RBL-9vShAXp2A0WBI',
                'refunded' => false,
                'refunds' => 
                array (
                  'object' => 'list',
                  'data' => 
                  array (
                  ),
                  'has_more' => false,
                  'total_count' => 0,
                  'url' => '/v1/charges/ch_3M9x022HR3rQjavP1dHAQYXa/refunds',
                ),
                'review' => NULL,
                'shipping' => NULL,
                'source' => NULL,
                'source_transfer' => NULL,
                'statement_descriptor' => NULL,
                'statement_descriptor_suffix' => NULL,
                'status' => 'succeeded',
                'transfer_data' => NULL,
                'transfer_group' => NULL,
              ),
            ),
            'has_more' => false,
            'total_count' => 1,
            'url' => '/v1/charges?payment_intent=pi_3M9x022HR3rQjavP1JeFyu20',
          ),
          'client_secret' => '(redacted)',
          'confirmation_method' => 'automatic',
          'created' => 1669840522,
          'currency' => 'aud',
          'customer' => 'cus_MtPa2MVIzl8ICu',
          'description' => 'Online Payment for Order #11275 for www.fifthelementdayspa.com.au blog_id 208137982',
          'invoice' => NULL,
          'last_payment_error' => NULL,
          'livemode' => true,
          'metadata' => 
          array (
            'fraud_prevention_data_available' => '1',
            'fraud_prevention_data_shopper_ua_hash' => '07b7a398fd07e5d202683c1686effd95003d83a02564616671a5e4a45c0d0eca71363775cd01875d7a6106304cfb02a4c847d6e4902728e48d83b763eaba9c1a',
            'fraud_prevention_data_shopper_ip_hash' => '0fef0ecad2acab68eb5e04356bad2163a51905ec215870d4bae645ffc2f22a215afda88ceefe20bdca607120c8da579fa757d12575d58795a4ed76b4ea8b0ace',
            'order_key' => 'wc_order_FY3EHgadqOUlc',
            'site_url' => 'https://www.fifthelementdayspa.com.au',
            'customer_email' => '(redacted)',
            'customer_name' => '(redacted)',
            'order_number' => '11275',
            'order_id' => '11275',
            'payment_type' => 'single',
          ),
          'next_action' => NULL,
          'on_behalf_of' => NULL,
          'payment_method' => 'pm_1M9x0Y2HR3rQjavP1P1bTxUM',
          'payment_method_options' => 
          array (
            'card' => 
            array (
              'installments' => NULL,
              'mandate_options' => NULL,
              'network' => NULL,
              'request_three_d_secure' => 'automatic',
            ),
          ),
          'payment_method_types' => 
          array (
            0 => 'card',
          ),
          'processing' => NULL,
          'receipt_email' => NULL,
          'review' => NULL,
          'setup_future_usage' => NULL,
          'shipping' => NULL,
          'source' => NULL,
          'statement_descriptor' => NULL,
          'statement_descriptor_suffix' => NULL,
          'status' => 'succeeded',
          'transfer_data' => NULL,
          'transfer_group' => NULL,
          'amount_subtotal' => 20000,
          'level3' => NULL,
          'total_details' => 
          array (
            'amount_discount' => 0,
            'amount_tax' => 0,
          ),
        ),
      ),
    )
    2022-11-30T20:36:23+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/wp-cron.php?doing_wp_cron=1669840582.9705040454864501953125',
      'HTTP_USER_AGENT' => 'WordPress/6.1.1; https://www.fifthelementdayspa.com.au',
      'REQUEST_URI' => '/wp-cron.php?doing_wp_cron=1669840582.9705040454864501953125',
      'DOING_AJAX' => false,
      'DOING_CRON' => true,
      'WP_CLI' => false,
    )
    2022-11-30T20:36:23+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/customers/cus_MtPa2MVIzl8ICu
    2022-11-30T20:36:23+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => 'b4c1f222-d74d-4ff6-b759-cb861ebbb616',
    )
    2022-11-30T20:36:23+00:00 INFO BODY: array (
      'test_mode' => false,
      'name' => '(redacted)',
      'description' => 'Name: Lauren Porter, Guest',
      'email' => '(redacted)',
      'phone' => '(redacted)',
      'address' => 
      array (
        'line1' => '(redacted)',
        'line2' => '(redacted)',
        'postal_code' => '(redacted)',
        'city' => '(redacted)',
        'state' => '(redacted)',
        'country' => '(redacted)',
      ),
      'shipping' => 
      array (
        'name' => '(redacted)',
        'address' => 
        array (
          'line1' => '(redacted)',
          'line2' => '(redacted)',
          'postal_code' => '(redacted)',
          'city' => '(redacted)',
          'state' => '(redacted)',
          'country' => '(redacted)',
        ),
      ),
    )
    2022-11-30T20:36:24+00:00 INFO RESPONSE: array (
      'id' => 'cus_MtPa2MVIzl8ICu',
      'object' => 'customer',
      'address' => 
      array (
        'city' => '(redacted)',
        'country' => '(redacted)',
        'line1' => '(redacted)',
        'line2' => '(redacted)',
        'postal_code' => '(redacted)',
        'state' => '(redacted)',
      ),
      'balance' => 0,
      'created' => 1669762705,
      'currency' => NULL,
      'default_currency' => NULL,
      'default_source' => NULL,
      'delinquent' => false,
      'description' => 'Name: Lauren Porter, Guest',
      'discount' => NULL,
      'email' => '(redacted)',
      'invoice_prefix' => 'A2EE3977',
      'invoice_settings' => 
      array (
        'custom_fields' => NULL,
        'default_payment_method' => NULL,
        'footer' => NULL,
        'rendering_options' => NULL,
      ),
      'livemode' => true,
      'metadata' => 'stdClass()',
      'name' => '(redacted)',
      'next_invoice_sequence' => 1,
      'phone' => '(redacted)',
      'preferred_locales' => 
      array (
      ),
      'shipping' => 
      array (
        'address' => 
        array (
          'city' => '(redacted)',
          'country' => '(redacted)',
          'line1' => '(redacted)',
          'line2' => '(redacted)',
          'postal_code' => '(redacted)',
          'state' => '(redacted)',
        ),
        'name' => '(redacted)',
        'phone' => '(redacted)',
      ),
      'tax_exempt' => 'none',
      'test_clock' => NULL,
    )
    2022-11-30T20:36:24+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/wp-cron.php?doing_wp_cron=1669840582.9705040454864501953125',
      'HTTP_USER_AGENT' => 'WordPress/6.1.1; https://www.fifthelementdayspa.com.au',
      'REQUEST_URI' => '/wp-cron.php?doing_wp_cron=1669840582.9705040454864501953125',
      'DOING_AJAX' => false,
      'DOING_CRON' => true,
      'WP_CLI' => false,
    )
    2022-11-30T20:36:24+00:00 INFO REQUEST GET https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/timeline/pi_3M9x022HR3rQjavP1JeFyu20?test_mode=0
    2022-11-30T20:36:24+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
    )
    2022-11-30T20:36:26+00:00 INFO RESPONSE: array (
      'data' => 
      array (
        0 => 
        array (
          'type' => 'captured',
          'amount' => 20000,
          'fee' => 380,
          'fee_rates' => 
          array (
            'percentage' => 0.0175,
            'fixed' => 30,
            'fixed_currency' => 'AUD',
            'history' => 
            array (
              0 => 
              array (
                'type' => 'base',
                'fee_id' => 'base-au-fee',
                'percentage_rate' => 0.0175,
                'fixed_rate' => 30,
                'currency' => 'aud',
              ),
            ),
          ),
          'currency' => 'AUD',
          'datetime' => 1669840555,
          'deposit' => 
          array (
            'id' => 'wcpay_estimated_daily_aud_1669939200',
            'arrival_date' => '1669939200',
          ),
          'transaction_id' => 'txn_3M9x022HR3rQjavP1xTFzmyh',
          'transaction_details' => 
          array (
            'customer_currency' => 'AUD',
            'customer_amount' => 20000,
            'customer_fee' => 380,
            'store_currency' => 'AUD',
            'store_amount' => 20000,
            'store_fee' => 380,
          ),
        ),
        1 => 
        array (
          'type' => 'authorized',
          'datetime' => 1669840522,
          'amount' => 20000,
          'currency' => 'AUD',
        ),
      ),
    )
    2022-11-30T20:36:26+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/wp-cron.php?doing_wp_cron=1669840582.9705040454864501953125',
      'HTTP_USER_AGENT' => 'WordPress/6.1.1; https://www.fifthelementdayspa.com.au',
      'REQUEST_URI' => '/wp-cron.php?doing_wp_cron=1669840582.9705040454864501953125',
      'DOING_AJAX' => false,
      'DOING_CRON' => true,
      'WP_CLI' => false,
    )
    2022-11-30T20:36:26+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/tracking/order
    2022-11-30T20:36:26+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => '1ca3af36-f6df-4e17-82a9-d70e4598802e',
    )
    2022-11-30T20:36:26+00:00 INFO BODY: array (
      'test_mode' => false,
      'order_data' => 
      array (
        'id' => 11275,
        'parent_id' => 0,
        'status' => 'processing',
        'currency' => 'AUD',
        'version' => '7.1.0',
        'prices_include_tax' => false,
        'date_created' => 'WC_DateTime()',
        'date_modified' => 'WC_DateTime()',
        'discount_total' => '0',
        'discount_tax' => '0',
        'shipping_total' => '0',
        'shipping_tax' => '0',
        'cart_tax' => '0',
        'total' => '200.00',
        'total_tax' => '0',
        'customer_id' => 0,
        'order_key' => 'wc_order_FY3EHgadqOUlc',
        'billing' => 
        array (
          'first_name' => 'Lauren',
          'last_name' => 'Porter',
          'company' => '',
          'address_1' => '18 McCauley Street',
          'address_2' => '',
          'city' => '(redacted)',
          'state' => '(redacted)',
          'postcode' => '3030',
          'country' => '(redacted)',
          'email' => '(redacted)',
          'phone' => '(redacted)',
        ),
        'shipping' => 
        array (
          'first_name' => 'Lauren',
          'last_name' => 'Porter',
          'company' => '',
          'address_1' => '18 McCauley Street',
          'address_2' => '',
          'city' => '(redacted)',
          'state' => '(redacted)',
          'postcode' => '3030',
          'country' => '(redacted)',
          'phone' => '(redacted)',
        ),
        'payment_method' => 'woocommerce_payments',
        'payment_method_title' => 'Visa credit card',
        'transaction_id' => 'pi_3M9x022HR3rQjavP1JeFyu20',
        'customer_ip_address' => '121.215.209.143',
        'customer_user_agent' => 'Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1',
        'created_via' => 'checkout',
        'customer_note' => '',
        'date_completed' => NULL,
        'date_paid' => 'WC_DateTime()',
        'cart_hash' => '28c8050bb2c5b8d658efedf6b6743116',
        'order_stock_reduced' => true,
        'download_permissions_granted' => true,
        'new_order_email_sent' => true,
        'recorded_sales' => true,
        'recorded_coupon_usage_counts' => true,
        'number' => '11275',
        'meta_data' => 
        array (
          0 => 'WC_Meta_Data()',
          1 => 'WC_Meta_Data()',
          2 => 'WC_Meta_Data()',
          3 => 'WC_Meta_Data()',
          4 => 'WC_Meta_Data()',
          5 => 'WC_Meta_Data()',
          6 => 'WC_Meta_Data()',
        ),
        'line_items' => 
        array (
          19576 => 'WC_Order_Item_Product()',
          19577 => 'WC_Order_Item_Product()',
          19578 => 'WC_Order_Item_Product()',
        ),
        'tax_lines' => 
        array (
        ),
        'shipping_lines' => 
        array (
          19579 => 'WC_Order_Item_Shipping()',
        ),
        'fee_lines' => 
        array (
        ),
        'coupon_lines' => 
        array (
        ),
        '_payment_method_id' => 'pm_1M9x0Y2HR3rQjavP1P1bTxUM',
        '_stripe_customer_id' => 'cus_MtPa2MVIzl8ICu',
        '_wcpay_mode' => '',
      ),
      'update' => false,
    )
    2022-11-30T20:36:26+00:00 INFO RESPONSE: array (
      'result' => 'success',
    )
    2022-11-30T22:10:21+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'fe-administrator',
      'HTTP_REFERER' => 'https://orion.managewp.com/',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/wp-admin/index.php',
      'DOING_AJAX' => false,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T22:10:21+00:00 INFO REQUEST GET https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/accounts?test_mode=0
    2022-11-30T22:10:21+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
    )
    2022-11-30T22:10:22+00:00 INFO RESPONSE: array (
      'account_id' => 'acct_1LDJjP2HR3rQjavP',
      'email' => '(redacted)',
      'live_publishable_key' => 'pk_live_iBIpeqzKOOx2Y8PFCRBfyMU000Q7xVG4Sn',
      'test_publishable_key' => 'pk_test_51ETDmyFuiXB5oUVxwSobQMW5Tno1GclIq7ePZWzLeW4q8oa7Zb8hI5VfwI5sNT5nXuKYinLukNvGCXmsQXAoDGHG00MqHqlYHR',
      'is_live' => true,
      'has_pending_requirements' => false,
      'has_overdue_requirements' => false,
      'current_deadline' => NULL,
      'status' => 'complete',
      'capabilities' => 
      array (
        'bancontact_payments' => 'active',
        'card_payments' => 'active',
        'eps_payments' => 'active',
        'giropay_payments' => 'active',
        'ideal_payments' => 'active',
        'p24_payments' => 'active',
        'sofort_payments' => 'active',
        'transfers' => 'active',
        'afterpay_clearpay_payments' => 'unrequested',
        'au_becs_debit_payments' => 'unrequested',
        'sepa_debit_payments' => 'unrequested',
      ),
      'capability_requirements' => 
      array (
        'afterpay_clearpay_payments' => 
        array (
          0 => 'business_profile.support_phone',
        ),
        'au_becs_debit_payments' => 
        array (
        ),
        'bancontact_payments' => 
        array (
        ),
        'card_payments' => 
        array (
        ),
        'eps_payments' => 
        array (
        ),
        'giropay_payments' => 
        array (
        ),
        'ideal_payments' => 
        array (
        ),
        'p24_payments' => 
        array (
        ),
        'sepa_debit_payments' => 
        array (
        ),
        'sofort_payments' => 
        array (
        ),
        'transfers' => 
        array (
        ),
      ),
      'payments_enabled' => true,
      'deposits' => 
      array (
        'status' => 'enabled',
        'interval' => 'daily',
        'weekly_anchor' => '',
        'monthly_anchor' => NULL,
        'delay_days' => 2,
        'completed_waiting_period' => true,
        'minimum_deposit_amounts' => 
        array (
          'aud' => 500,
          'cad' => 500,
          'chf' => 500,
          'dkk' => 5000,
          'eur' => 500,
          'gbp' => 500,
          'hkd' => 5000,
          'nok' => 5000,
          'nzd' => 500,
          'sek' => 5000,
          'sgd' => 500,
          'usd' => 500,
        ),
      ),
      'statement_descriptor' => 'FIFTHELEMENTDAYSPA',
      'latest_tos_agreement' => 
      array (
        'date' => '2022-06-22 02:55:53',
        'source' => 'signup',
        'is_current_version' => true,
      ),
      'fees' => 
      array (
        'base' => 
        array (
          'percentage_rate' => 0.0175,
          'fixed_rate' => 30,
          'currency' => 'aud',
        ),
        'discount' => 
        array (
        ),
        'card' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.0175,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'bancontact' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'eps' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.018,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'ideal' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0,
            'fixed_rate' => 80,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'giropay' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'p24' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.022,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'sofort' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
      ),
      'capital' => 
      array (
        'has_active_loan' => false,
        'has_previous_loans' => false,
        'loans' => 
        array (
        ),
      ),
      'fraud_services' => 
      array (
        'stripe' => 
        array (
        ),
        'sift' => 
        array (
          'beacon_key' => 'affbdadb36',
          'sandbox_beacon_key' => '6ad0ad748b',
        ),
      ),
      'store_currencies' => 
      array (
        'default' => 'aud',
        'supported' => 
        array (
          0 => 'aud',
        ),
      ),
      'customer_currencies' => 
      array (
        'supported' => 
        array (
          0 => 'usd',
          1 => 'aed',
          2 => 'afn',
          3 => 'all',
          4 => 'amd',
          5 => 'ang',
          6 => 'aoa',
          7 => 'ars',
          8 => 'aud',
          9 => 'awg',
          10 => 'azn',
          11 => 'bam',
          12 => 'bbd',
          13 => 'bdt',
          14 => 'bgn',
          15 => 'bif',
          16 => 'bmd',
          17 => 'bnd',
          18 => 'bob',
          19 => 'brl',
          20 => 'bsd',
          21 => 'bwp',
          22 => 'byn',
          23 => 'bzd',
          24 => 'cad',
          25 => 'cdf',
          26 => 'chf',
          27 => 'clp',
          28 => 'cny',
          29 => 'cop',
          30 => 'crc',
          31 => 'cve',
          32 => 'czk',
          33 => 'djf',
          34 => 'dkk',
          35 => 'dop',
          36 => 'dzd',
          37 => 'egp',
          38 => 'etb',
          39 => 'eur',
          40 => 'fjd',
          41 => 'fkp',
          42 => 'gbp',
          43 => 'gel',
          44 => 'gip',
          45 => 'gmd',
          46 => 'gnf',
          47 => 'gtq',
          48 => 'gyd',
          49 => 'hkd',
          50 => 'hnl',
          51 => 'hrk',
          52 => 'htg',
          53 => 'huf',
          54 => 'idr',
          55 => 'ils',
          56 => 'inr',
          57 => 'isk',
          58 => 'jmd',
          59 => 'jpy',
          60 => 'kes',
          61 => 'kgs',
          62 => 'khr',
          63 => 'kmf',
          64 => 'krw',
          65 => 'kyd',
          66 => 'kzt',
          67 => 'lak',
          68 => 'lbp',
          69 => 'lkr',
          70 => 'lrd',
          71 => 'lsl',
          72 => 'mad',
          73 => 'mdl',
          74 => 'mga',
          75 => 'mkd',
          76 => 'mmk',
          77 => 'mnt',
          78 => 'mop',
          79 => 'mro',
          80 => 'mur',
          81 => 'mvr',
          82 => 'mwk',
          83 => 'mxn',
          84 => 'myr',
          85 => 'mzn',
          86 => 'nad',
          87 => 'ngn',
          88 => 'nio',
          89 => 'nok',
          90 => 'npr',
          91 => 'nzd',
          92 => 'pab',
          93 => 'pen',
          94 => 'pgk',
          95 => 'php',
          96 => 'pkr',
          97 => 'pln',
          98 => 'pyg',
          99 => 'qar',
          100 => 'ron',
          101 => 'rsd',
          102 => 'rub',
          103 => 'rwf',
          104 => 'sar',
          105 => 'sbd',
          106 => 'scr',
          107 => 'sek',
          108 => 'sgd',
          109 => 'shp',
          110 => 'sle',
          111 => 'sll',
          112 => 'sos',
          113 => 'srd',
          114 => 'std',
          115 => 'szl',
          116 => 'thb',
          117 => 'tjs',
          118 => 'top',
          119 => 'try',
          120 => 'ttd',
          121 => 'twd',
          122 => 'tzs',
          123 => 'uah',
          124 => 'ugx',
          125 => 'uyu',
          126 => 'uzs',
          127 => 'vnd',
          128 => 'vuv',
          129 => 'wst',
          130 => 'xaf',
          131 => 'xcd',
          132 => 'xof',
          133 => 'xpf',
          134 => 'yer',
          135 => 'zar',
          136 => 'zmw',
        ),
      ),
      'country' => '(redacted)',
      'instant_deposits_eligible' => false,
      'card_present_eligible' => false,
      'has_card_readers_available' => false,
      'platform_checkout_eligible' => false,
      'business_profile' => 
      array (
        'name' => '(redacted)',
        'url' => 'https://www.fifthelementdayspa.com.au',
        'support_address' => 
        array (
        ),
        'support_email' => NULL,
        'support_phone' => NULL,
      ),
      'branding' => 
      array (
        'icon' => NULL,
        'logo' => NULL,
        'primary_color' => NULL,
        'secondary_color' => NULL,
      ),
      'locale' => 'en_US',
      'has_more_failed_events' => false,
      'has_submitted_vat_data' => false,
      'is_documents_enabled' => false,
      'card_testing_protection_eligible' => true,
      'progressive_onboarding' => 
      array (
        'is_enabled' => false,
        'is_complete' => false,
      ),
    )
    2022-11-30T22:10:59+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'fe-administrator',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/cart',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/checkout',
      'DOING_AJAX' => false,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T22:10:59+00:00 INFO REQUEST GET https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/payment_methods?test_mode=0&customer=cus_MoAwHgL5Ao8l2O&type=card&limit=100
    2022-11-30T22:10:59+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
    )
    2022-11-30T22:11:00+00:00 INFO RESPONSE: array (
      'object' => 'list',
      'data' => 
      array (
        0 => 
        array (
          'id' => 'pm_1M9JAw2HR3rQjavPKWRZCzLL',
          'object' => 'payment_method',
          'billing_details' => 
          array (
            'address' => 
            array (
              'city' => '(redacted)',
              'country' => '(redacted)',
              'line1' => '(redacted)',
              'line2' => '(redacted)',
              'postal_code' => '(redacted)',
              'state' => '(redacted)',
            ),
            'email' => '(redacted)',
            'name' => '(redacted)',
            'phone' => '(redacted)',
          ),
          'card' => 
          array (
            'brand' => 'mastercard',
            'checks' => 
            array (
              'address_line1_check' => 'unavailable',
              'address_postal_code_check' => 'unavailable',
              'cvc_check' => 'pass',
            ),
            'country' => '(redacted)',
            'exp_month' => 2,
            'exp_year' => 2026,
            'fingerprint' => 'RreyNbhXROuOmLPZ',
            'funding' => 'debit',
            'generated_from' => NULL,
            'last4' => '7796',
            'networks' => 
            array (
              'available' => 
              array (
                0 => 'mastercard',
              ),
              'preferred' => NULL,
            ),
            'three_d_secure_usage' => 
            array (
              'supported' => true,
            ),
            'wallet' => NULL,
          ),
          'created' => 1669687438,
          'customer' => 'cus_MoAwHgL5Ao8l2O',
          'livemode' => true,
          'metadata' => 
          array (
          ),
          'type' => 'card',
        ),
      ),
      'has_more' => false,
      'url' => '/v1/payment_methods',
    )
    2022-11-30T22:11:02+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'fe-administrator',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/?wc-ajax=wcpay_create_payment_intent',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T22:11:02+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions
    2022-11-30T22:11:02+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.0.3',
      'Idempotency-Key' => '23eca62f-e881-4546-9abc-d8c705e86de1',
    )
    2022-11-30T22:11:02+00:00 INFO BODY: array (
      'test_mode' => false,
      'amount' => 100000,
      'currency' => 'aud',
      'description' => 'Online Payment for www.fifthelementdayspa.com.au blog_id 208137982',
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'capture_method' => 'automatic',
      'metadata' => 
      array (
        'fraud_prevention_data_shopper_ip_hash' => '8e641a14c0fc9bed8cb2bfcc16e2a7dd735940b456a5f0feae5f95f4cfeb3fe3a58dd8d765516e9adb74e5259acfb0f59467442c5b0fe79a397f573b6ff2479c',
        'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
        'fraud_prevention_data_available' => true,
      ),
    )
    2022-11-30T22:11:02+00:00 INFO RESPONSE: array (
      'id' => 'pi_3M9yUc2HR3rQjavP1Mvi4qvS',
      'object' => 'payment_intent',
      'amount' => 100000,
      'amount_capturable' => 0,
      'amount_details' => 
      array (
        'tip' => 
        array (
        ),
      ),
      'amount_received' => 0,
      'amount_subtotal' => 100000,
      'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
      'application_fee_amount' => 1780,
      'automatic_payment_methods' => NULL,
      'canceled_at' => NULL,
      'cancellation_reason' => NULL,
      'capture_method' => 'automatic',
      'charges' => 
      array (
        'object' => 'list',
        'data' => 
        array (
        ),
        'has_more' => false,
        'total_count' => 0,
        'url' => '/v1/charges?payment_intent=pi_3M9yUc2HR3rQjavP1Mvi4qvS',
      ),
      'client_secret' => '(redacted)',
      'confirmation_method' => 'automatic',
      'created' => 1669846262,
      'currency' => 'aud',
      'customer' => NULL,
      'description' => 'Online Payment for www.fifthelementdayspa.com.au blog_id 208137982',
      'invoice' => NULL,
      'last_payment_error' => NULL,
      'level3' => NULL,
      'livemode' => true,
      'metadata' => 
      array (
        'fraud_prevention_data_available' => '1',
        'fraud_prevention_data_shopper_ip_hash' => '8e641a14c0fc9bed8cb2bfcc16e2a7dd735940b456a5f0feae5f95f4cfeb3fe3a58dd8d765516e9adb74e5259acfb0f59467442c5b0fe79a397f573b6ff2479c',
        'fraud_prevention_data_shopper_ua_hash' => 'd38005b5725e057c2ed8e80e092d70a3dbebec6d6c5718efdafe2207adb337afbe69ccaabf6e7e21e5c26e6558c996b98c34695ca95df2490d97709c4b5d3bf5',
      ),
      'next_action' => NULL,
      'on_behalf_of' => NULL,
      'payment_method' => NULL,
      'payment_method_options' => 
      array (
        'card' => 
        array (
          'installments' => NULL,
          'mandate_options' => NULL,
          'network' => NULL,
          'request_three_d_secure' => 'automatic',
        ),
      ),
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'processing' => NULL,
      'receipt_email' => NULL,
      'review' => NULL,
      'setup_future_usage' => NULL,
      'shipping' => NULL,
      'source' => NULL,
      'statement_descriptor' => NULL,
      'statement_descriptor_suffix' => NULL,
      'status' => 'requires_payment_method',
      'total_details' => 
      array (
        'amount_discount' => 0,
        'amount_tax' => 0,
      ),
      'transfer_data' => NULL,
      'transfer_group' => NULL,
      'fee_history' => 
      array (
        0 => 
        array (
          'type' => 'base',
          'fee_id' => 'base-au-fee',
          'percentage_rate' => 0.0175,
          'fixed_rate' => 30,
          'currency' => 'aud',
        ),
      ),
    )
    2022-11-30T22:28:34+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Safari/605.1.15',
      'REQUEST_URI' => '/?wc-ajax=wcpay_create_payment_intent',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T22:28:34+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions
    2022-11-30T22:28:34+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.1.0',
      'Idempotency-Key' => 'ee77b7e0-f502-4690-95af-0c103de56036',
    )
    2022-11-30T22:28:34+00:00 INFO BODY: array (
      'test_mode' => false,
      'amount' => 28000,
      'currency' => 'aud',
      'description' => 'Online Payment for www.fifthelementdayspa.com.au blog_id 208137982',
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'capture_method' => 'automatic',
      'metadata' => 
      array (
        'fraud_prevention_data_shopper_ip_hash' => '2f8748abdbb42c16f5d62251f8adea1f65443b6ed0ec063b49be332a6c8cc200892828deee3bbc44bffff040677446dfe0fe5d9dc5a2150d342dd93456b54e22',
        'fraud_prevention_data_shopper_ua_hash' => '7caac9e2179d6d3c6a50f6448c1cf292',
        'fraud_prevention_data_available' => true,
      ),
    )
    2022-11-30T22:28:35+00:00 ERROR We're not able to process this purchase. Please try again later. (wcpay_card_testing_prevention)
    2022-11-30T22:29:10+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Safari/605.1.15',
      'REQUEST_URI' => '/?wc-ajax=wcpay_create_payment_intent',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T22:29:10+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions
    2022-11-30T22:29:10+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.1.0',
      'Idempotency-Key' => 'f4c25d4d-99ad-4866-b216-9364296b4568',
    )
    2022-11-30T22:29:10+00:00 INFO BODY: array (
      'test_mode' => false,
      'amount' => 28000,
      'currency' => 'aud',
      'description' => 'Online Payment for www.fifthelementdayspa.com.au blog_id 208137982',
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'capture_method' => 'automatic',
      'metadata' => 
      array (
        'fraud_prevention_data_shopper_ip_hash' => '2f8748abdbb42c16f5d62251f8adea1f65443b6ed0ec063b49be332a6c8cc200892828deee3bbc44bffff040677446dfe0fe5d9dc5a2150d342dd93456b54e22',
        'fraud_prevention_data_shopper_ua_hash' => '7caac9e2179d6d3c6a50f6448c1cf292',
        'fraud_prevention_data_available' => true,
      ),
    )
    2022-11-30T22:29:11+00:00 ERROR We're not able to process this purchase. Please try again later. (wcpay_card_testing_prevention)
    2022-11-30T22:29:43+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Safari/605.1.15',
      'REQUEST_URI' => '/?wc-ajax=wcpay_create_payment_intent',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T22:29:43+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions
    2022-11-30T22:29:43+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.1.0',
      'Idempotency-Key' => '28c434ad-eb94-44f7-ae15-886aee498405',
    )
    2022-11-30T22:29:43+00:00 INFO BODY: array (
      'test_mode' => false,
      'amount' => 28950,
      'currency' => 'aud',
      'description' => 'Online Payment for www.fifthelementdayspa.com.au blog_id 208137982',
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'capture_method' => 'automatic',
      'metadata' => 
      array (
        'fraud_prevention_data_shopper_ip_hash' => '2f8748abdbb42c16f5d62251f8adea1f65443b6ed0ec063b49be332a6c8cc200892828deee3bbc44bffff040677446dfe0fe5d9dc5a2150d342dd93456b54e22',
        'fraud_prevention_data_shopper_ua_hash' => '7caac9e2179d6d3c6a50f6448c1cf292',
        'fraud_prevention_data_available' => true,
      ),
    )
    2022-11-30T22:29:44+00:00 ERROR We're not able to process this purchase. Please try again later. (wcpay_card_testing_prevention)
    2022-11-30T22:31:36+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Safari/605.1.15',
      'REQUEST_URI' => '/?wc-ajax=wcpay_create_payment_intent',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T22:31:36+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions
    2022-11-30T22:31:36+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.1.0',
      'Idempotency-Key' => '8cb4b4ba-2b5f-42b6-8ed5-8d80f7852982',
    )
    2022-11-30T22:31:36+00:00 INFO BODY: array (
      'test_mode' => false,
      'amount' => 28000,
      'currency' => 'aud',
      'description' => 'Online Payment for www.fifthelementdayspa.com.au blog_id 208137982',
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'capture_method' => 'automatic',
      'metadata' => 
      array (
        'fraud_prevention_data_shopper_ip_hash' => '2f8748abdbb42c16f5d62251f8adea1f65443b6ed0ec063b49be332a6c8cc200892828deee3bbc44bffff040677446dfe0fe5d9dc5a2150d342dd93456b54e22',
        'fraud_prevention_data_shopper_ua_hash' => '7caac9e2179d6d3c6a50f6448c1cf292',
        'fraud_prevention_data_available' => true,
      ),
    )
    2022-11-30T22:31:36+00:00 ERROR We're not able to process this purchase. Please try again later. (wcpay_card_testing_prevention)
    2022-11-30T22:32:14+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Safari/605.1.15',
      'REQUEST_URI' => '/?wc-ajax=wcpay_create_payment_intent',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T22:32:14+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions
    2022-11-30T22:32:14+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.1.0',
      'Idempotency-Key' => '51c5d80e-45db-4c86-a1de-ef523dd47e3b',
    )
    2022-11-30T22:32:14+00:00 INFO BODY: array (
      'test_mode' => false,
      'amount' => 28000,
      'currency' => 'aud',
      'description' => 'Online Payment for www.fifthelementdayspa.com.au blog_id 208137982',
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'capture_method' => 'automatic',
      'metadata' => 
      array (
        'fraud_prevention_data_shopper_ip_hash' => '2f8748abdbb42c16f5d62251f8adea1f65443b6ed0ec063b49be332a6c8cc200892828deee3bbc44bffff040677446dfe0fe5d9dc5a2150d342dd93456b54e22',
        'fraud_prevention_data_shopper_ua_hash' => '7caac9e2179d6d3c6a50f6448c1cf292',
        'fraud_prevention_data_available' => true,
      ),
    )
    2022-11-30T22:32:14+00:00 ERROR We're not able to process this purchase. Please try again later. (wcpay_card_testing_prevention)
    2022-11-30T22:33:24+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Safari/605.1.15',
      'REQUEST_URI' => '/?wc-ajax=wcpay_create_payment_intent',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T22:33:24+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions
    2022-11-30T22:33:24+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.1.0',
      'Idempotency-Key' => 'c7900576-82c7-484b-b506-dc2955d97b2e',
    )
    2022-11-30T22:33:24+00:00 INFO BODY: array (
      'test_mode' => false,
      'amount' => 28950,
      'currency' => 'aud',
      'description' => 'Online Payment for www.fifthelementdayspa.com.au blog_id 208137982',
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'capture_method' => 'automatic',
      'metadata' => 
      array (
        'fraud_prevention_data_shopper_ip_hash' => '2f8748abdbb42c16f5d62251f8adea1f65443b6ed0ec063b49be332a6c8cc200892828deee3bbc44bffff040677446dfe0fe5d9dc5a2150d342dd93456b54e22',
        'fraud_prevention_data_shopper_ua_hash' => '7caac9e2179d6d3c6a50f6448c1cf292',
        'fraud_prevention_data_available' => true,
      ),
    )
    2022-11-30T22:33:25+00:00 ERROR We're not able to process this purchase. Please try again later. (wcpay_card_testing_prevention)
    2022-11-30T22:59:56+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'fe-administrator',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/?wc-ajax=wcpay_create_payment_intent',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T22:59:56+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions
    2022-11-30T22:59:56+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.1.0',
      'Idempotency-Key' => '784f9b46-8b44-4d7f-97be-cbd14b4e970d',
    )
    2022-11-30T22:59:56+00:00 INFO BODY: array (
      'test_mode' => false,
      'amount' => 100,
      'currency' => 'aud',
      'description' => 'Online Payment for www.fifthelementdayspa.com.au blog_id 208137982',
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'capture_method' => 'automatic',
      'metadata' => 
      array (
        'fraud_prevention_data_shopper_ip_hash' => '136fb79d57ffcefc8710b8483e9c5d773f7a051926db712d85f5f7c700c9e0b9ae55488208fa9c89e65694c6a44bc7d965aa3c5f01e139d5e92abc403c2aab3b',
        'fraud_prevention_data_shopper_ua_hash' => '35456d96fb361e6f81deb26178475e76',
        'fraud_prevention_data_available' => true,
      ),
    )
    2022-11-30T22:59:57+00:00 INFO RESPONSE: array (
      'id' => 'pi_3M9zFw2HR3rQjavP1epa7cd3',
      'object' => 'payment_intent',
      'amount' => 100,
      'amount_capturable' => 0,
      'amount_details' => 
      array (
        'tip' => 
        array (
        ),
      ),
      'amount_received' => 0,
      'amount_subtotal' => 100,
      'application' => 'ca_Ex84uObQQwAXXkj317DO349S6kJ9FXyY',
      'application_fee_amount' => 32,
      'automatic_payment_methods' => NULL,
      'canceled_at' => NULL,
      'cancellation_reason' => NULL,
      'capture_method' => 'automatic',
      'charges' => 
      array (
        'object' => 'list',
        'data' => 
        array (
        ),
        'has_more' => false,
        'total_count' => 0,
        'url' => '/v1/charges?payment_intent=pi_3M9zFw2HR3rQjavP1epa7cd3',
      ),
      'client_secret' => '(redacted)',
      'confirmation_method' => 'automatic',
      'created' => 1669849196,
      'currency' => 'aud',
      'customer' => NULL,
      'description' => 'Online Payment for www.fifthelementdayspa.com.au blog_id 208137982',
      'invoice' => NULL,
      'last_payment_error' => NULL,
      'level3' => NULL,
      'livemode' => true,
      'metadata' => 
      array (
        'fraud_prevention_data_available' => '1',
        'fraud_prevention_data_shopper_ip_hash' => '136fb79d57ffcefc8710b8483e9c5d773f7a051926db712d85f5f7c700c9e0b9ae55488208fa9c89e65694c6a44bc7d965aa3c5f01e139d5e92abc403c2aab3b',
        'fraud_prevention_data_shopper_ua_hash' => '35456d96fb361e6f81deb26178475e76',
      ),
      'next_action' => NULL,
      'on_behalf_of' => NULL,
      'payment_method' => NULL,
      'payment_method_options' => 
      array (
        'card' => 
        array (
          'installments' => NULL,
          'mandate_options' => NULL,
          'network' => NULL,
          'request_three_d_secure' => 'automatic',
        ),
      ),
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'processing' => NULL,
      'receipt_email' => NULL,
      'review' => NULL,
      'setup_future_usage' => NULL,
      'shipping' => NULL,
      'source' => NULL,
      'statement_descriptor' => NULL,
      'statement_descriptor_suffix' => NULL,
      'status' => 'requires_payment_method',
      'total_details' => 
      array (
        'amount_discount' => 0,
        'amount_tax' => 0,
      ),
      'transfer_data' => NULL,
      'transfer_group' => NULL,
      'fee_history' => 
      array (
        0 => 
        array (
          'type' => 'base',
          'fee_id' => 'base-au-fee',
          'percentage_rate' => 0.0175,
          'fixed_rate' => 30,
          'currency' => 'aud',
        ),
      ),
    )
    2022-11-30T23:03:09+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Safari/605.1.15',
      'REQUEST_URI' => '/?wc-ajax=wcpay_create_payment_intent',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T23:03:09+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions
    2022-11-30T23:03:09+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.1.0',
      'Idempotency-Key' => 'e6fff22f-6903-42cb-98e9-e313939ce72c',
    )
    2022-11-30T23:03:09+00:00 INFO BODY: array (
      'test_mode' => false,
      'amount' => 28950,
      'currency' => 'aud',
      'description' => 'Online Payment for www.fifthelementdayspa.com.au blog_id 208137982',
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'capture_method' => 'automatic',
      'metadata' => 
      array (
        'fraud_prevention_data_shopper_ip_hash' => '2f8748abdbb42c16f5d62251f8adea1f65443b6ed0ec063b49be332a6c8cc200892828deee3bbc44bffff040677446dfe0fe5d9dc5a2150d342dd93456b54e22',
        'fraud_prevention_data_shopper_ua_hash' => '7caac9e2179d6d3c6a50f6448c1cf292',
        'fraud_prevention_data_available' => true,
      ),
    )
    2022-11-30T23:03:09+00:00 ERROR We're not able to process this purchase. Please try again later. (wcpay_card_testing_prevention)
    2022-11-30T23:08:51+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'https://www.fifthelementdayspa.com.au/checkout',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Safari/605.1.15',
      'REQUEST_URI' => '/?wc-ajax=wcpay_create_payment_intent',
      'DOING_AJAX' => true,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-11-30T23:08:51+00:00 INFO REQUEST POST https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/intentions
    2022-11-30T23:08:51+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.1.0',
      'Idempotency-Key' => '309c4038-1f7c-4e11-9eff-12453c1d7509',
    )
    2022-11-30T23:08:51+00:00 INFO BODY: array (
      'test_mode' => false,
      'amount' => 36950,
      'currency' => 'aud',
      'description' => 'Online Payment for www.fifthelementdayspa.com.au blog_id 208137982',
      'payment_method_types' => 
      array (
        0 => 'card',
      ),
      'capture_method' => 'automatic',
      'metadata' => 
      array (
        'fraud_prevention_data_shopper_ip_hash' => '2f8748abdbb42c16f5d62251f8adea1f65443b6ed0ec063b49be332a6c8cc200892828deee3bbc44bffff040677446dfe0fe5d9dc5a2150d342dd93456b54e22',
        'fraud_prevention_data_shopper_ua_hash' => '7caac9e2179d6d3c6a50f6448c1cf292',
        'fraud_prevention_data_available' => true,
      ),
    )
    2022-11-30T23:08:51+00:00 ERROR We're not able to process this purchase. Please try again later. (wcpay_card_testing_prevention)
    Thread Starter goopdevelopers

    (@goopdevelopers)

    Hi there,

    Sure thing ??

    
    ### WordPress Environment ###
    
    WordPress address (URL): https://www.fifthelementdayspa.com.au
    Site address (URL): https://www.fifthelementdayspa.com.au
    WC Version: 7.1.0
    REST API Version: ? 7.1.0
    WC Blocks Version: ? 8.7.5
    Action Scheduler Version: ? 3.4.0
    Log Directory Writable: ?
    WP Version: 6.1.1
    WP Multisite: –
    WP Memory Limit: 512 MB
    WP Debug Mode: –
    WP Cron: ?
    Language: en_US
    External object cache: ?
    
    ### Server Environment ###
    
    Server Info: nginx
    PHP Version: 8.0.25
    PHP Post Max Size: 100 MB
    PHP Time Limit: 43300
    PHP Max Input Vars: 10000
    cURL Version: 7.58.0
    OpenSSL/1.1.1
    
    SUHOSIN Installed: –
    MySQL Version: 5.7.39-42-log
    Max Upload Size: 50 MB
    Default Timezone is UTC: ?
    fsockopen/cURL: ?
    SoapClient: ?
    DOMDocument: ?
    GZip: ?
    Multibyte String: ?
    Remote Post: ?
    Remote Get: ?
    
    ### Database ###
    
    WC Database Version: 7.1.0
    WC Database Prefix: wp_
    Total Database Size: 34.64MB
    Database Data Size: 19.13MB
    Database Index Size: 15.51MB
    wp_woocommerce_sessions: Data: 1.02MB + Index: 0.02MB + Engine InnoDB
    wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wp_woocommerce_order_items: Data: 0.06MB + Index: 0.02MB + Engine InnoDB
    wp_woocommerce_order_itemmeta: Data: 0.31MB + Index: 0.28MB + Engine InnoDB
    wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_actionscheduler_actions: Data: 5.02MB + Index: 5.47MB + Engine InnoDB
    wp_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_actionscheduler_logs: Data: 4.02MB + Index: 4.03MB + Engine InnoDB
    wp_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_comments: Data: 0.19MB + Index: 0.09MB + Engine InnoDB
    wp_gf_draft_submissions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_gf_entry: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_gf_entry_meta: Data: 0.06MB + Index: 0.05MB + Engine InnoDB
    wp_gf_entry_notes: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_gf_form: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_gf_form_meta: Data: 0.03MB + Index: 0.00MB + Engine InnoDB
    wp_gf_form_revisions: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_gf_form_view: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
    wp_gf_rest_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_options: Data: 0.23MB + Index: 0.08MB + Engine InnoDB
    wp_postmeta: Data: 5.52MB + Index: 3.95MB + Engine InnoDB
    wp_posts: Data: 1.52MB + Index: 0.30MB + Engine InnoDB
    wp_termmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_term_relationships: Data: 0.06MB + Index: 0.05MB + Engine InnoDB
    wp_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_usermeta: Data: 0.08MB + Index: 0.03MB + Engine InnoDB
    wp_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_wc_admin_notes: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
    wp_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_wc_order_product_lookup: Data: 0.06MB + Index: 0.06MB + Engine InnoDB
    wp_wc_order_stats: Data: 0.05MB + Index: 0.05MB + Engine InnoDB
    wp_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_wc_product_attributes_lookup: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wc_product_download_directories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wc_product_meta_lookup: Data: 0.05MB + Index: 0.09MB + Engine InnoDB
    wp_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    
    ### Post Type Counts ###
    
    acf-field: 10
    acf-field-group: 3
    attachment: 222
    business_location: 1
    customize_changeset: 1
    global_product_addon: 1
    nav_menu_item: 18
    oembed_cache: 1
    page: 34
    post: 8
    product: 190
    product_variation: 62
    redirect_rule: 116
    revision: 46
    shop_coupon: 213
    shop_order: 341
    shop_order_refund: 6
    wcpa_pt_forms: 1
    wpdesk-coupons: 2
    
    ### Security ###
    
    Secure connection (HTTPS): ?
    Hide errors from visitors: ?
    
    ### Active Plugins (10) ###
    
    ManageWP - Worker: by GoDaddy – 4.9.15
    Gravity Forms: by Gravity Forms – 2.6.8
    Advanced Custom Fields PRO: by WP Engine – 6.0.5
    Flexible PDF Coupons Pro for WooCommerce: by WP Desk – 1.7.2
    Product Filter for WooCommerce: by XforWooCommerce – 8.3.0
    Safe Redirect Manager: by 10up – 1.11.1
    WooCommerce Payments: by Automattic – 5.1.2
    WooCommerce PayPal Payments: by WooCommerce – 2.0.0
    WooCommerce Product Add-ons: by WooCommerce – 4.7.0
    WooCommerce: by Automattic – 7.1.0
    
    ### Inactive Plugins (1) ###
    
    Hide Shipping Method For WooCommerce: by theDotstore – 1.3.2
    
    ### Dropin Plugins (2) ###
    
    advanced-cache.php: advanced-cache.php
    object-cache.php: Memcached Redux
    
    ### Must Use Plugins (6) ###
    
    Force Strong Passwords - WPE Edition: by Jason Cosper – 1.8.0
    ManageWP - Worker Loader: by GoDaddy – 1.0.0
    WP Engine Cache Plugin: by WP Engine – 1.1.0
    WP Engine Seamless Login Plugin: by WP Engine – 1.6.0
    WP Engine Security Auditor: by wpengine – 1.0.10
    WP Engine System: by WP Engine – 5.0.1
    
    ### Settings ###
    
    API Enabled: –
    Force SSL: –
    Currency: AUD ($)
    Currency Position: left
    Thousand Separator: ,
    Decimal Separator: .
    Number of Decimals: 2
    Taxonomies: Product Types: external (external)
    grouped (grouped)
    simple (simple)
    variable (variable)
    
    Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
    exclude-from-search (exclude-from-search)
    featured (featured)
    outofstock (outofstock)
    rated-1 (rated-1)
    rated-2 (rated-2)
    rated-3 (rated-3)
    rated-4 (rated-4)
    rated-5 (rated-5)
    
    Connected to WooCommerce.com: –
    Enforce Approved Product Download Directories: –
    
    ### WC Pages ###
    
    Shop base: #43 - /shop
    Cart: #44 - /cart
    Checkout: #45 - /checkout
    My account: #46 - /my-account
    Terms and conditions: ? Page not set
    
    ### Theme ###
    
    Name: Fifthelement theme
    Version: 1.1
    Author URL: https://www.goop.com.au/
    Child Theme: ? – If you are modifying WooCommerce on a parent theme that you did not build personally we recommend using a child theme. See: How to create a child theme
    WooCommerce Support: ?
    
    ### Templates ###
    
    Overrides: fifthelementtheme/archive-product.php
    fifthelementtheme/single-product.php
    fifthelementtheme/taxonomy-product-cat.php
    
    ### WooCommerce PayPal Payments ###
    
    Onboarded: ?
    Shop country code: AU
    WooCommerce currency supported: ?
    Advanced Card Processing available in country: ?
    Pay Later messaging available in country: ?
    Webhook status: ?
    Vault enabled: ?
    Logging enabled: –
    Reference Transactions: –
    Used PayPal Checkout plugin: –
    Tracking enabled: ?
    
    ### Admin ###
    
    Enabled Features: activity-panels
    analytics
    coupons
    customer-effort-score-tracks
    experimental-products-task
    experimental-import-products-task
    experimental-fashion-sample-products
    shipping-smart-defaults
    shipping-setting-tour
    homescreen
    marketing
    multichannel-marketing
    mobile-app-banner
    navigation
    onboarding
    onboarding-tasks
    remote-inbox-notifications
    remote-free-extensions
    payment-gateway-suggestions
    shipping-label-banner
    subscriptions
    store-alerts
    transient-notices
    woo-mobile-welcome
    wc-pay-promotion
    wc-pay-welcome-page
    
    Disabled Features: minified-js
    new-product-management-experience
    settings
    
    Daily Cron: ? Not scheduled
    Options: ?
    Notes: 50
    Onboarding: skipped
    
    ### WooCommerce Payments ###
    
    Version: 5.1.2
    Connected to WPCOM: Yes
    Blog ID: 208137982
    Account ID: acct_1LDJjP2HR3rQjavP
    
    ### Action Scheduler ###
    
    Canceled: 9
    Oldest: 2022-11-12 03:55:33 +0000
    Newest: 2022-11-26 09:17:21 +0000
    
    Complete: 13,594
    Oldest: 2022-11-05 01:05:21 +0000
    Newest: 2022-12-05 10:53:32 +0000
    
    Failed: 2
    Oldest: 2022-09-04 09:53:34 +0000
    Newest: 2022-09-10 11:38:57 +0000
    
    Pending: 1
    Oldest: 2022-12-06 10:53:32 +0000
    Newest: 2022-12-06 10:53:32 +0000
    
    ### Status report information ###
    
    Generated at: 2022-12-05 21:53:53 +00:00
    

    Fatal Errors from 5/12/2022

    2022-12-05T05:28:02+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'Guest (non logged-in user)',
      'HTTP_REFERER' => 'www.google.com',
      'HTTP_USER_AGENT' => 'Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',
      'REQUEST_URI' => '/wp-admin/admin.php?page=html2wp-settings',
      'DOING_AJAX' => false,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-12-05T05:28:02+00:00 INFO REQUEST GET https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/accounts?test_mode=0
    2022-12-05T05:28:02+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.1.0',
    )
    2022-12-05T05:28:05+00:00 INFO RESPONSE: array (
      'account_id' => 'acct_1LDJjP2HR3rQjavP',
      'email' => '(redacted)',
      'live_publishable_key' => 'pk_live_iBIpeqzKOOx2Y8PFCRBfyMU000Q7xVG4Sn',
      'test_publishable_key' => 'pk_test_51ETDmyFuiXB5oUVxwSobQMW5Tno1GclIq7ePZWzLeW4q8oa7Zb8hI5VfwI5sNT5nXuKYinLukNvGCXmsQXAoDGHG00MqHqlYHR',
      'is_live' => true,
      'has_pending_requirements' => false,
      'has_overdue_requirements' => false,
      'current_deadline' => NULL,
      'status' => 'complete',
      'capabilities' => 
      array (
        'bancontact_payments' => 'active',
        'card_payments' => 'active',
        'eps_payments' => 'active',
        'giropay_payments' => 'active',
        'ideal_payments' => 'active',
        'p24_payments' => 'active',
        'sofort_payments' => 'active',
        'transfers' => 'active',
        'afterpay_clearpay_payments' => 'unrequested',
        'au_becs_debit_payments' => 'unrequested',
        'sepa_debit_payments' => 'unrequested',
      ),
      'capability_requirements' => 
      array (
        'afterpay_clearpay_payments' => 
        array (
          0 => 'business_profile.support_phone',
        ),
        'au_becs_debit_payments' => 
        array (
        ),
        'bancontact_payments' => 
        array (
        ),
        'card_payments' => 
        array (
        ),
        'eps_payments' => 
        array (
        ),
        'giropay_payments' => 
        array (
        ),
        'ideal_payments' => 
        array (
        ),
        'p24_payments' => 
        array (
        ),
        'sepa_debit_payments' => 
        array (
        ),
        'sofort_payments' => 
        array (
        ),
        'transfers' => 
        array (
        ),
      ),
      'payments_enabled' => true,
      'deposits' => 
      array (
        'status' => 'enabled',
        'interval' => 'daily',
        'weekly_anchor' => '',
        'monthly_anchor' => NULL,
        'delay_days' => 2,
        'completed_waiting_period' => true,
        'minimum_deposit_amounts' => 
        array (
          'aud' => 500,
          'cad' => 500,
          'chf' => 500,
          'dkk' => 5000,
          'eur' => 500,
          'gbp' => 500,
          'hkd' => 5000,
          'nok' => 5000,
          'nzd' => 500,
          'sek' => 5000,
          'sgd' => 500,
          'usd' => 500,
        ),
      ),
      'statement_descriptor' => 'FIFTHELEMENTDAYSPA',
      'latest_tos_agreement' => 
      array (
        'date' => '2022-06-22 02:55:53',
        'source' => 'signup',
        'is_current_version' => true,
      ),
      'fees' => 
      array (
        'base' => 
        array (
          'percentage_rate' => 0.0175,
          'fixed_rate' => 30,
          'currency' => 'aud',
        ),
        'discount' => 
        array (
        ),
        'card' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.0175,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'bancontact' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'eps' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.018,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'ideal' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0,
            'fixed_rate' => 80,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'giropay' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'p24' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.022,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'sofort' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
      ),
      'capital' => 
      array (
        'has_active_loan' => false,
        'has_previous_loans' => false,
        'loans' => 
        array (
        ),
      ),
      'fraud_services' => 
      array (
        'stripe' => 
        array (
        ),
        'sift' => 
        array (
          'beacon_key' => 'affbdadb36',
          'sandbox_beacon_key' => '6ad0ad748b',
        ),
      ),
      'store_currencies' => 
      array (
        'default' => 'aud',
        'supported' => 
        array (
          0 => 'aud',
        ),
      ),
      'customer_currencies' => 
      array (
        'supported' => 
        array (
          0 => 'usd',
          1 => 'aed',
          2 => 'afn',
          3 => 'all',
          4 => 'amd',
          5 => 'ang',
          6 => 'aoa',
          7 => 'ars',
          8 => 'aud',
          9 => 'awg',
          10 => 'azn',
          11 => 'bam',
          12 => 'bbd',
          13 => 'bdt',
          14 => 'bgn',
          15 => 'bif',
          16 => 'bmd',
          17 => 'bnd',
          18 => 'bob',
          19 => 'brl',
          20 => 'bsd',
          21 => 'bwp',
          22 => 'byn',
          23 => 'bzd',
          24 => 'cad',
          25 => 'cdf',
          26 => 'chf',
          27 => 'clp',
          28 => 'cny',
          29 => 'cop',
          30 => 'crc',
          31 => 'cve',
          32 => 'czk',
          33 => 'djf',
          34 => 'dkk',
          35 => 'dop',
          36 => 'dzd',
          37 => 'egp',
          38 => 'etb',
          39 => 'eur',
          40 => 'fjd',
          41 => 'fkp',
          42 => 'gbp',
          43 => 'gel',
          44 => 'gip',
          45 => 'gmd',
          46 => 'gnf',
          47 => 'gtq',
          48 => 'gyd',
          49 => 'hkd',
          50 => 'hnl',
          51 => 'hrk',
          52 => 'htg',
          53 => 'huf',
          54 => 'idr',
          55 => 'ils',
          56 => 'inr',
          57 => 'isk',
          58 => 'jmd',
          59 => 'jpy',
          60 => 'kes',
          61 => 'kgs',
          62 => 'khr',
          63 => 'kmf',
          64 => 'krw',
          65 => 'kyd',
          66 => 'kzt',
          67 => 'lak',
          68 => 'lbp',
          69 => 'lkr',
          70 => 'lrd',
          71 => 'lsl',
          72 => 'mad',
          73 => 'mdl',
          74 => 'mga',
          75 => 'mkd',
          76 => 'mmk',
          77 => 'mnt',
          78 => 'mop',
          79 => 'mro',
          80 => 'mur',
          81 => 'mvr',
          82 => 'mwk',
          83 => 'mxn',
          84 => 'myr',
          85 => 'mzn',
          86 => 'nad',
          87 => 'ngn',
          88 => 'nio',
          89 => 'nok',
          90 => 'npr',
          91 => 'nzd',
          92 => 'pab',
          93 => 'pen',
          94 => 'pgk',
          95 => 'php',
          96 => 'pkr',
          97 => 'pln',
          98 => 'pyg',
          99 => 'qar',
          100 => 'ron',
          101 => 'rsd',
          102 => 'rub',
          103 => 'rwf',
          104 => 'sar',
          105 => 'sbd',
          106 => 'scr',
          107 => 'sek',
          108 => 'sgd',
          109 => 'shp',
          110 => 'sle',
          111 => 'sll',
          112 => 'sos',
          113 => 'srd',
          114 => 'std',
          115 => 'szl',
          116 => 'thb',
          117 => 'tjs',
          118 => 'top',
          119 => 'try',
          120 => 'ttd',
          121 => 'twd',
          122 => 'tzs',
          123 => 'uah',
          124 => 'ugx',
          125 => 'uyu',
          126 => 'uzs',
          127 => 'vnd',
          128 => 'vuv',
          129 => 'wst',
          130 => 'xaf',
          131 => 'xcd',
          132 => 'xof',
          133 => 'xpf',
          134 => 'yer',
          135 => 'zar',
          136 => 'zmw',
        ),
      ),
      'country' => '(redacted)',
      'instant_deposits_eligible' => false,
      'card_present_eligible' => false,
      'has_card_readers_available' => false,
      'platform_checkout_eligible' => false,
      'business_profile' => 
      array (
        'name' => '(redacted)',
        'url' => 'https://www.fifthelementdayspa.com.au',
        'support_address' => 
        array (
        ),
        'support_email' => NULL,
        'support_phone' => NULL,
      ),
      'branding' => 
      array (
        'icon' => NULL,
        'logo' => NULL,
        'primary_color' => NULL,
        'secondary_color' => NULL,
      ),
      'locale' => 'en_US',
      'has_more_failed_events' => false,
      'has_submitted_vat_data' => false,
      'is_documents_enabled' => false,
      'card_testing_protection_eligible' => true,
      'progressive_onboarding' => 
      array (
        'is_enabled' => false,
        'is_complete' => false,
      ),
    )
    2022-12-05T21:51:56+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'fe-administrator',
      'HTTP_REFERER' => 'https://orion.managewp.com/',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/wp-admin/index.php',
      'DOING_AJAX' => false,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-12-05T21:51:56+00:00 INFO REQUEST GET https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/accounts?test_mode=0
    2022-12-05T21:51:56+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.1.2',
    )
    2022-12-05T21:51:58+00:00 INFO RESPONSE: array (
      'account_id' => 'acct_1LDJjP2HR3rQjavP',
      'email' => '(redacted)',
      'live_publishable_key' => 'pk_live_iBIpeqzKOOx2Y8PFCRBfyMU000Q7xVG4Sn',
      'test_publishable_key' => 'pk_test_51ETDmyFuiXB5oUVxwSobQMW5Tno1GclIq7ePZWzLeW4q8oa7Zb8hI5VfwI5sNT5nXuKYinLukNvGCXmsQXAoDGHG00MqHqlYHR',
      'is_live' => true,
      'has_pending_requirements' => false,
      'has_overdue_requirements' => false,
      'current_deadline' => NULL,
      'status' => 'complete',
      'capabilities' => 
      array (
        'bancontact_payments' => 'active',
        'card_payments' => 'active',
        'eps_payments' => 'active',
        'giropay_payments' => 'active',
        'ideal_payments' => 'active',
        'p24_payments' => 'active',
        'sofort_payments' => 'active',
        'transfers' => 'active',
        'afterpay_clearpay_payments' => 'unrequested',
        'au_becs_debit_payments' => 'unrequested',
        'sepa_debit_payments' => 'unrequested',
      ),
      'capability_requirements' => 
      array (
        'afterpay_clearpay_payments' => 
        array (
          0 => 'business_profile.support_phone',
        ),
        'au_becs_debit_payments' => 
        array (
        ),
        'bancontact_payments' => 
        array (
        ),
        'card_payments' => 
        array (
        ),
        'eps_payments' => 
        array (
        ),
        'giropay_payments' => 
        array (
        ),
        'ideal_payments' => 
        array (
        ),
        'p24_payments' => 
        array (
        ),
        'sepa_debit_payments' => 
        array (
        ),
        'sofort_payments' => 
        array (
        ),
        'transfers' => 
        array (
        ),
      ),
      'payments_enabled' => true,
      'deposits' => 
      array (
        'status' => 'enabled',
        'interval' => 'daily',
        'weekly_anchor' => '',
        'monthly_anchor' => NULL,
        'delay_days' => 2,
        'completed_waiting_period' => true,
        'minimum_deposit_amounts' => 
        array (
          'aud' => 500,
          'cad' => 500,
          'chf' => 500,
          'dkk' => 5000,
          'eur' => 500,
          'gbp' => 500,
          'hkd' => 5000,
          'nok' => 5000,
          'nzd' => 500,
          'sek' => 5000,
          'sgd' => 500,
          'usd' => 500,
        ),
      ),
      'statement_descriptor' => 'FIFTHELEMENTDAYSPA',
      'latest_tos_agreement' => 
      array (
        'date' => '2022-06-22 02:55:53',
        'source' => 'signup',
        'is_current_version' => true,
      ),
      'fees' => 
      array (
        'base' => 
        array (
          'percentage_rate' => 0.0175,
          'fixed_rate' => 30,
          'currency' => 'aud',
        ),
        'discount' => 
        array (
        ),
        'card' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.0175,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'bancontact' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'eps' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.018,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'ideal' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0,
            'fixed_rate' => 80,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'giropay' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'p24' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.022,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
        'sofort' => 
        array (
          'base' => 
          array (
            'percentage_rate' => 0.014,
            'fixed_rate' => 30,
            'currency' => 'aud',
          ),
          'additional' => 
          array (
            'percentage_rate' => 0.015,
            'fixed_rate' => 0,
            'currency' => 'aud',
          ),
          'fx' => 
          array (
            'percentage_rate' => 0.02,
            'fixed_rate' => 0,
            'currency' => 'usd',
          ),
          'discount' => 
          array (
          ),
        ),
      ),
      'capital' => 
      array (
        'has_active_loan' => false,
        'has_previous_loans' => false,
        'loans' => 
        array (
        ),
      ),
      'fraud_services' => 
      array (
        'stripe' => 
        array (
        ),
        'sift' => 
        array (
          'beacon_key' => 'affbdadb36',
          'sandbox_beacon_key' => '6ad0ad748b',
        ),
      ),
      'store_currencies' => 
      array (
        'default' => 'aud',
        'supported' => 
        array (
          0 => 'aud',
        ),
      ),
      'customer_currencies' => 
      array (
        'supported' => 
        array (
          0 => 'usd',
          1 => 'aed',
          2 => 'afn',
          3 => 'all',
          4 => 'amd',
          5 => 'ang',
          6 => 'aoa',
          7 => 'ars',
          8 => 'aud',
          9 => 'awg',
          10 => 'azn',
          11 => 'bam',
          12 => 'bbd',
          13 => 'bdt',
          14 => 'bgn',
          15 => 'bif',
          16 => 'bmd',
          17 => 'bnd',
          18 => 'bob',
          19 => 'brl',
          20 => 'bsd',
          21 => 'bwp',
          22 => 'byn',
          23 => 'bzd',
          24 => 'cad',
          25 => 'cdf',
          26 => 'chf',
          27 => 'clp',
          28 => 'cny',
          29 => 'cop',
          30 => 'crc',
          31 => 'cve',
          32 => 'czk',
          33 => 'djf',
          34 => 'dkk',
          35 => 'dop',
          36 => 'dzd',
          37 => 'egp',
          38 => 'etb',
          39 => 'eur',
          40 => 'fjd',
          41 => 'fkp',
          42 => 'gbp',
          43 => 'gel',
          44 => 'gip',
          45 => 'gmd',
          46 => 'gnf',
          47 => 'gtq',
          48 => 'gyd',
          49 => 'hkd',
          50 => 'hnl',
          51 => 'hrk',
          52 => 'htg',
          53 => 'huf',
          54 => 'idr',
          55 => 'ils',
          56 => 'inr',
          57 => 'isk',
          58 => 'jmd',
          59 => 'jpy',
          60 => 'kes',
          61 => 'kgs',
          62 => 'khr',
          63 => 'kmf',
          64 => 'krw',
          65 => 'kyd',
          66 => 'kzt',
          67 => 'lak',
          68 => 'lbp',
          69 => 'lkr',
          70 => 'lrd',
          71 => 'lsl',
          72 => 'mad',
          73 => 'mdl',
          74 => 'mga',
          75 => 'mkd',
          76 => 'mmk',
          77 => 'mnt',
          78 => 'mop',
          79 => 'mro',
          80 => 'mur',
          81 => 'mvr',
          82 => 'mwk',
          83 => 'mxn',
          84 => 'myr',
          85 => 'mzn',
          86 => 'nad',
          87 => 'ngn',
          88 => 'nio',
          89 => 'nok',
          90 => 'npr',
          91 => 'nzd',
          92 => 'pab',
          93 => 'pen',
          94 => 'pgk',
          95 => 'php',
          96 => 'pkr',
          97 => 'pln',
          98 => 'pyg',
          99 => 'qar',
          100 => 'ron',
          101 => 'rsd',
          102 => 'rub',
          103 => 'rwf',
          104 => 'sar',
          105 => 'sbd',
          106 => 'scr',
          107 => 'sek',
          108 => 'sgd',
          109 => 'shp',
          110 => 'sle',
          111 => 'sll',
          112 => 'sos',
          113 => 'srd',
          114 => 'std',
          115 => 'szl',
          116 => 'thb',
          117 => 'tjs',
          118 => 'top',
          119 => 'try',
          120 => 'ttd',
          121 => 'twd',
          122 => 'tzs',
          123 => 'uah',
          124 => 'ugx',
          125 => 'uyu',
          126 => 'uzs',
          127 => 'vnd',
          128 => 'vuv',
          129 => 'wst',
          130 => 'xaf',
          131 => 'xcd',
          132 => 'xof',
          133 => 'xpf',
          134 => 'yer',
          135 => 'zar',
          136 => 'zmw',
        ),
      ),
      'country' => '(redacted)',
      'instant_deposits_eligible' => false,
      'card_present_eligible' => false,
      'has_card_readers_available' => false,
      'platform_checkout_eligible' => false,
      'business_profile' => 
      array (
        'name' => '(redacted)',
        'url' => 'https://www.fifthelementdayspa.com.au',
        'support_address' => 
        array (
        ),
        'support_email' => NULL,
        'support_phone' => NULL,
      ),
      'branding' => 
      array (
        'icon' => NULL,
        'logo' => NULL,
        'primary_color' => NULL,
        'secondary_color' => NULL,
      ),
      'locale' => 'en_US',
      'has_more_failed_events' => false,
      'has_submitted_vat_data' => false,
      'is_documents_enabled' => false,
      'card_testing_protection_eligible' => true,
      'progressive_onboarding' => 
      array (
        'is_enabled' => false,
        'is_complete' => false,
      ),
    )
    2022-12-05T21:51:58+00:00 INFO ENVIRONMENT: array (
      'WP_User' => 'fe-administrator',
      'HTTP_REFERER' => 'https://orion.managewp.com/',
      'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
      'REQUEST_URI' => '/wp-admin/index.php',
      'DOING_AJAX' => false,
      'DOING_CRON' => false,
      'WP_CLI' => false,
    )
    2022-12-05T21:51:58+00:00 INFO REQUEST GET https://public-api.wordpress.com/wpcom/v2/sites/%s/wcpay/disputes/status_counts?test_mode=0
    2022-12-05T21:51:58+00:00 INFO HEADERS: array (
      'Content-Type' => 'application/json; charset=utf-8',
      'User-Agent' => 'WooCommerce Payments/5.1.2',
    )
    2022-12-05T21:51:58+00:00 INFO RESPONSE: array (
    )

    Thank you!

Viewing 5 replies - 1 through 5 (of 5 total)