#Iamshankhadeep
1 messages · Page 1 of 1 (latest)
I wish I could help, but this chat is focused on developers and API integration questions. Our support team will be able to assist you better than I can: https://support.stripe.com/contact
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.
like I wanted to know is there a webhook event that get's fire if some one from the admin rejects a connect account?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
okay,
but it does not have any account rejected field,
it makes payouts_enabled and charges_enabled to false,
so is there a way to figure out the account is rejected from account.updated event?
Those are the 2 attributes that tell you if an account is active. There's no rejected attribute
so no way to find out the account is rejected?
Nope
awesome thanks, you help me a lot,
This is the method for rejecting an account via the API: https://stripe.com/docs/api/account/reject
Notice that it returns:
an account with
payouts_enabledandcharges_enabledset to false on success. If the account ID does not exist, this call raises an error.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
rejected means the same thing as payouts_enabled and charges_enabled