#anurags_api
1 messages · Page 1 of 1 (latest)
👋 Welcome to your new thread!
⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1311605289841065994
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi
You can use Update Account API to update tos_acceptance.service_agreement property: https://docs.stripe.com/api/accounts/update#update_account-tos_acceptance-service_agreement
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
can you tell me what values can be passed in tos_acceptance.service_agreement
is it Full for my case or any other value?
Thanks for the help, got it in the document
It is giving error while updating recipient to full -
var options = new AccountUpdateOptions
{
TosAcceptance = new AccountTosAcceptanceOptions
{
Date = DateTime.UtcNow,
ServiceAgreement = "Full"
}
};
var service = new AccountService();
service.Update(stripeConnectedAccountId, options);
This application does not have the required permissions for the parameter 'tos_acceptance' on account '{connected_account_id}'.
Can you share the request ID (req_xxx) with the error? Here’s how you can find it: https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support site 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.
req_fMvtGDJoM02hFP
Once the TOS is accepted, you can't change the service agreement type. For acct_1O7bqrRhwHcISHhu, the service agreement has been accepted
Is there any way to change or if I write support mail to stripe they can change that?
or even if it remains recipient, we can make card payment enable for it?
my main purpose is to make card payment enable for this account
If the TOS type is in recipient, the connected account can't accept the card payment.
You can only create a new account with full TOS agreement type.
make sense, Thanks for the help.