Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

124
Vistas
PayPal Capturing Taxes And Fees on an order

I'm trying to figure out how to do payouts to multi-party transactions on PayPal. The multi-party payment system documentation is good, but I can't figure out this one detail.

Lets say you have a 3rd party selling something on your platform. They sell one item for 19.99 USD. When the user goes to checkout there's taxes and fees going into this order

So the seller gets the split of 19.99, and then the taxes and fees go to the first party. Are these taxes and fees considered a purchase_unit under the guidelines of the multi-party payment API?

Im using the paypal docs here: https://developer.paypal.com/api/orders/v2/#orders_create

Right now I have this,

         var item = {
            reference_id: "REFID-"+ (i+1),
            payee: {
                email: email
            },
            amount: {
                currency_code: currency,
                value: (price / 100)
            },
            payment_instruction: {
              disbursement_mode: "INSTANT",
              platform_fees: [{
                amount: {
                    currency_code: currency,
                    value: ((price / 100) * 0.03).toFixed(2),
                }
              }]
            },
        }


        purchase_units.push(item);

        var taxes = {
          reference_id: 'REFID-'+0,
          amount: {
              currency_code: currency,
              value: ((totalPrice * cali_tax) / 100).toFixed(2)
          }
        }

        purchase_units.push(taxes);

I'm trying to figure out if the taxes item along with the actual item is necessary or not. By not having a separate purchase unit I believe I can dodge an extra paypal transaction fee. Any help would be appreciated!

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

If the tax is to be collected by the first party, you can add it as a "breakdown" object within the amount, for display purposes -- and also to the platform_fees, so that it is deducted from what the third party seller receives...

        amount: {
            currency_code: currency,
            value: (price / 100)
            /* add "breakdown" object here with additional tax and pre-tax subtotal */
        },
        payment_instruction: {
          disbursement_mode: "INSTANT",
          platform_fees: [{
            amount: {
                currency_code: currency,
                value: /* This amount should be everything the first party is intended to collect. Fees, and any taxes if applicable. */
            }
          }]
        },
    }
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda