Update an account
POST / v1 / accounts /:id
Updates a connected account by setting the values of the parameters passed. Any parameters not provided are left unchanged.
For accounts where controller.requirement_collection is application, which includes Custom accounts, you can update any information on the account.
For accounts where controller.requirement_collection is stripe, which includes Standard and Express accounts, you can update all information until you create an Account Link or Account Session to start Connect onboarding, after which some properties can no longer be updated.
To update your own account, use the Dashboard. Refer to our Connect documentation to learn more about updating accounts.
Parameters
- business _ type enum The business type. Once you create an Account Link or Account Session, this property can only be updated for accounts where controller.requirement_collection is
application, which includes Custom accounts. Possible enum valuescompanygovernment_entityUS onlyindividualnon_profit - capabilities object Each key of the dictionary represents a capability, and each capability maps to its settings (for example, whether it has been requested or not). Each capability is inactive until you have provided its specific requirements and Stripe has verified them. An account might have some of its requested capabilities be active and some be inactive. Required when account.controller.stripe_dashboard.type is
none, which includes Custom accounts. - company object Information about the company or business. This field is available for any
business_type. Once you create an Account Link or Account Session, this property can only be updated for accounts where controller.requirement_collection isapplication, which includes Custom accounts. - email string The email address of the account holder. This is only to make the account easier to identify to you. If controller.requirement_collection is
application, which includes Custom accounts, Stripe doesn’t email the account without your consent. The maximum length is 800 characters. - individual object Information about the person represented by the account. This field is null unless
business_typeis set toindividual. Once you create an Account Link or Account Session, this property can only be updated for accounts where controller.requirement_collection isapplication, which includes Custom accounts. - metadata map Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to
metadata. - tos _ acceptance object Details on the account’s acceptance of the Stripe Services Agreement. This property can only be updated for accounts where controller.requirement_collection is
application, which includes Custom accounts. This property defaults to afullservice agreement when empty.
More parameters
- account _ token string
- business _ profile object
- default _ currency enum
- documents object
- external _ account string
- groups object
- settings object
Returns
Returns an Account object if the call succeeds. If the account ID does not exist or another issue occurs, this call raises an error. Some validations will not raise an error but will instead populate the requirements.errors array.
Response
Retrieve account
GET / v1 / accounts /:id
Retrieves the details of an account.
Parameters
No parameters.
Returns
Returns an Account object if the call succeeds. If the account ID does not exist, this call raises an error.
Response
List all connected accounts
GET / v1 / accounts
Returns a list of accounts connected to your platform via Connect. If you’re not a platform, the list is empty.
Parameters
No parameters.
More parameters
- created object
- ending _ before string
- limit integer
- starting _ after string
Returns
A dictionary with a data property that contains an array of up to limit accounts, starting after account starting_after. Each entry in the array is a separate Account object. If no more accounts are available, the resulting array is empty.
Response
