#Estela

1 messages · Page 1 of 1 (latest)

pseudo dragonBOT
sonic patrol
#

Hi there!

#

What is "CIF"?

woeful vale
#

Sorry

#

The tax code from a bussines in Spain

zealous musk
#

Hi! I'm taking over my colleague. Please, give me a moment to catch up.

woeful vale
#

Of course, take your time 😉

zealous musk
#

Please help me understand what you're trying to do. Do you need to display additional information on an Invoice? Or do you need to apply tax rates to line items?

woeful vale
#

I send you a screenshot, one minutee

pseudo dragonBOT
woeful vale
zealous musk
woeful vale
#

And would it appear in the place that I point to in the screenshot?

woeful vale
#

The custom field is placed in the first block, with the general information of the invoice, and we would need it to be placed in the one below, as shown in the image that I share with you. It could be possible?

paper canopy
#

please contact https://support.stripe.com/?contact=true to help you set the tax ID for your connected account so it would show on the invoice

woeful vale
#

Is it because there is currently no way to indicate the tax id of a Connect account from the API?

paper canopy
#

is it a Custom Connect Account? or Standard or Express?

woeful vale
#

Express

paper canopy
#

in that case they need to update their tax id information themselves

woeful vale
#

Oh, it's a shame... Could I do it if it was another type of account like Custom or Standard?

zealous musk
#

Could you please share the ID of the Connected Account? acct_xxx

#

Are you with me?

woeful vale
#

sorry

#

one minute

#

For example that: acct_1N0jheFzM0tqSrPw

zealous musk
#

Did you enter Tax information when going through the onboarding?

woeful vale
#

I created the object

zealous musk
woeful vale
#

AccountCreateParams paramsAccountParams = AccountCreateParams
.builder()
.setType(AccountCreateParams.Type.EXPRESS)
.setCountry("ES")
.setDefaultCurrency("EUR")
.setCapabilities(
AccountCreateParams.Capabilities
.builder()
.setCardPayments(
AccountCreateParams.Capabilities.CardPayments
.builder()
.setRequested(true)
.build())
.setTransfers(
AccountCreateParams.Capabilities.Transfers
.builder()
.setRequested(true)
.build())
.build())

#

.setBusinessType(AccountCreateParams.BusinessType.INDIVIDUAL)
.setBusinessProfile(
AccountCreateParams.BusinessProfile.builder()
.setMcc("1520")
.setName(provider.getName())
.setUrl(DOMAIN + "/detailprovider/" + provider.getId())
.setSupportEmail(provider.getEmail())
.setSupportUrl(DOMAIN + "/detailprovider/" + provider.getId())
.setSupportAddress(SupportAddress.builder()
.setLine1(line)
.setPostalCode(pc)
.setCity(city.getName())
.setState(city.getState().getName())
.setCountry(city.getState().getRegion().getCountry().getName())
.build())
.build())
.setIndividual(Individual.builder()
.setFirstName(provider.getName())
.setEmail(provider.getEmail())
.build())

                .setEmail(provider.getEmail())
                .build();
#

Can I add the tax id in this fragment?

woeful vale
#

I'm goging to trying it!

#

Thanks!

zealous musk
#

Happy to help. Please, let me know if you have any other questions.