> ## Documentation Index
> Fetch the complete documentation index at: https://whatsapp-docs.kap.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Bypass phone addition

# Bypassing the phone number addition screen

Updated: Nov 14, 2025

This document describes how to customize Embedded Signup to bypass the [phone number addition screen](https://developers.facebook.com/documentation/business-messaging/whatsapp/embedded-signup/default-flow#phone-number-addition-screen) (shown below) and [phone number verification screen](https://developers.facebook.com/documentation/business-messaging/whatsapp/embedded-signup/default-flow#phone-number-verification-screen).

![](https://scontent-lax3-2.xx.fbcdn.net/v/t39.2365-6/464076811_858112679765152_5952854678961541773_n.png?_nc_cat=107\&ccb=1-7&_nc_sid=e280be&_nc_ohc=gkyfa7x1e4oQ7kNvwFR0Duc&_nc_oc=AdkD7KDdJ_Cf2UYvTvrj8sBJOJAhIgI87HoLRo1Rpc18KQVw7lIK7CLwy0equeKUTa4&_nc_zt=14&_nc_ht=scontent-lax3-2.xx&_nc_gid=HijRaLw0OGhWOChwGTfDfQ\&oh=00_AflUS5ZVDsNeUqDrbcIj3OYC7RFwIxyrb-kpwt-VOtinPw\&oe=69550D4E)

If you don’t want your business customers to have to enter or choose a business phone number in the phone number addition screen, you can customize Embedded Signup to skip the screen entirely. However, after a customer successfully completes the customized flow, you must [programmatically create and register their business phone number](https://developers.facebook.com/documentation/business-messaging/whatsapp/solution-providers/registering-phone-numbers), or build a UI in your app that allows them to do this.

## Enabling the feature

To enable this feature, set `featureType` to `only_waba_sharing` in the [launch method and callback registration](https://developers.facebook.com/documentation/business-messaging/whatsapp/embedded-signup/implementation#launch-method-and-callback-registration) portion of the Embedded Signup code:

```
// Launch method and callback registration
const launchWhatsAppSignup = () => {
  FB.login(fbLoginCallback, {
    config_id: '&lt;CONFIGURATION_ID&gt;', // your configuration ID goes here
    response_type: 'code',
    override_default_response_type: true,
    extras: {
      setup: {},
      featureType: 'only_waba_sharing', // set to only_waba_sharing
      sessionInfoVersion: '3',
    }
  });
}
```

When a business customer successfully completes the flow, the [session logging message event](https://developers.facebook.com/documentation/business-messaging/whatsapp/embedded-signup/implementation#session-logging-message-event-listener) will have `event` set to `FINISH_ONLY_WABA`:

```
\{
  data: {
    phone_number_id: "&lt;CUSTOMER_BUSINESS_PHONE_NUMBER_ID&gt;",
    waba_id: "&lt;CUSTOMER_WABA_ID&gt;"
  },
  type: "WA_EMBEDDED_SIGNUP",
  event: "FINISH_ONLY_WABA",
  version: 3
}
```

Did you find this page helpful?

![Thumbs up icon](https://static.xx.fbcdn.net/rsrc.php/yR/r/OEXJ0_DJeZv.svg)

![Thumbs down icon](https://static.xx.fbcdn.net/rsrc.php/yb/r/qKPgNVNeatU.svg)

ON THIS PAGE

Enabling the feature

***
