Remover opção de endereço de entrega no PayPal Express Checkout

Eu estou usando o JSroteiro recomendado pelo PayPal. Está funcionando bem, mas está mostrando um"Enviar para" endereço dos compradores.

Estou tentando pesquisar na internet e descobri quehttps://api.sandbox.paypal.com/v1/payment-experience/web-profiles/ solicitado com"no_shipping": 1, pode fazer o truque. Mas, para isso, precisamos fazer uma solicitação de ondulação antes dopayment.create, para que possamos passar o ID retornado na função

Isso é possível no JS?

Ou existe uma maneira muito melhor e mais simples de removê-lo usando o seguinte JS?

<script src="https://www.paypalobjects.com/api/checkout.js" data-version-4></script>
<script>

    paypal.Button.render({
        env: 'sandbox', // Optional: specify 'sandbox' or 'production'
        client: {
            sandbox:    '{{$data['SandboxId']}}',
            production: '{{$data['ProductionId']}}'
        },

        payment: function() {
            var amount = document.getElementById("amount").value;
            var env    = this.props.env;
            var client = this.props.client;

            return paypal.rest.payment.create(env, client, {
                transactions: [
                    {
                        amount: {
                            total: amount,
                            currency: "USD",
                            details: {
                                subtotal: amount,
                                tax: "0.00",
                                shipping: "0.00"
                            }
                        },
                        description: "This is payment description.",
                        item_list: { 
                            items:[
                                {
                                    quantity:"1", 
                                    name:"Orders", 
                                    price:amount,  
                                    sku:"product12345", 
                                    currency:"USD"
                                }
                            ],
                        },

                    }],

            });
        },

        commit: false, // Optional: show a 'Pay Now' button in the checkout flow

        onAuthorize: function(data, actions) {
                console.log(data);
                 alert('confirmation here');
                // Optional: display a confirmation page here

            return actions.payment.execute().then(function() {
                alert('Success here');
                // Show a success page to the buyer
            });
        },
    }, '#paypal-button');
</script><div id="paypal-button" ></div>