Title: Zip/Post Code Check
Last modified: September 27, 2024

---

# Zip/Post Code Check

 *  Resolved [gerbull001](https://wordpress.org/support/users/gerbull001/)
 * (@gerbull001)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/zip-post-code-check/)
 * Can this be extended to include sending the billing address to Stripe so that
   Stripe’s Radar can run it’s checks? (Happy to pay you if you have time to add
   this) Thank you

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

 *  Plugin Author [bfl](https://wordpress.org/support/users/bfl/)
 * (@bfl)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/zip-post-code-check/#post-18043902)
 * You can use a snippet like the following:
 *     ```wp-block-code
       /** @param \WC_Order $order */add_filter( 'woo_mp_stripe_charge_request', function ( $request, $order ) {    $request['payment_method_data']['billing_details']['name'] = $order->get_formatted_billing_full_name();    $request['payment_method_data']['billing_details']['email'] = $order->get_billing_email();    $request['payment_method_data']['billing_details']['phone'] = $order->get_billing_phone();    $request['payment_method_data']['billing_details']['address']['line1'] = $order->get_billing_address_1();    $request['payment_method_data']['billing_details']['address']['line2'] = $order->get_billing_address_2();    $request['payment_method_data']['billing_details']['address']['city'] = $order->get_billing_city();    $request['payment_method_data']['billing_details']['address']['state'] = $order->get_billing_state();    $request['payment_method_data']['billing_details']['address']['postal_code'] = $order->get_billing_postcode();    $request['payment_method_data']['billing_details']['address']['country'] = $order->get_billing_country();    return $request;}, 10, 2 );
       ```
   
 *  Thread Starter [gerbull001](https://wordpress.org/support/users/gerbull001/)
 * (@gerbull001)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/zip-post-code-check/#post-18045375)
 * Amazing! It worked perfectly, Radar could analyse the transaction with the snippet
   in place. Thank you so much

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

The topic ‘Zip/Post Code Check’ is closed to new replies.

 * ![](https://ps.w.org/woo-mp/assets/icon-128x128.png?rev=1596816)
 * [Backend Payments for WooCommerce](https://wordpress.org/plugins/woo-mp/)
 * [Support Threads](https://wordpress.org/support/plugin/woo-mp/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-mp/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-mp/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-mp/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [gerbull001](https://wordpress.org/support/users/gerbull001/)
 * Last activity: [1 year, 8 months ago](https://wordpress.org/support/topic/zip-post-code-check/#post-18045375)
 * Status: resolved