#Estela
1 messages · Page 1 of 1 (latest)
Hi! I'm taking over my colleague. Please, give me a moment to catch up.
Of course, take your time 😉
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?
I send you a screenshot, one minutee
You can use custom_fields for this: https://stripe.com/docs/api/invoices/create#create_invoice-custom_fields
And would it appear in the place that I point to in the screenshot?
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?
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
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
Is it because there is currently no way to indicate the tax id of a Connect account from the API?
is it a Custom Connect Account? or Standard or Express?
Express
in that case they need to update their tax id information themselves
Oh, it's a shame... Could I do it if it was another type of account like Custom or Standard?
Did you enter Tax information when going through the onboarding?
I created the object
You should be able to set all of those yourself if you use Custom accounts
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?
Happy to help. Please, let me know if you have any other questions.